We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 392d28c + 9458a0e commit 5d2c3a4Copy full SHA for 5d2c3a4
libc-test/semver/fuchsia.txt
@@ -372,6 +372,8 @@ IPPROTO_UDPLITE
372
IPV6_ADD_MEMBERSHIP
373
IPV6_DROP_MEMBERSHIP
374
IP_FREEBIND
375
+IP_TOS
376
+IP_RECVTOS
377
IP_HDRINCL
378
IP_TRANSPARENT
379
ITIMER_PROF
src/fuchsia/mod.rs
@@ -1768,8 +1768,10 @@ pub const SCM_TIMESTAMP: ::c_int = SO_TIMESTAMP;
1768
pub const SOCK_RAW: ::c_int = 3;
1769
pub const SOCK_RDM: ::c_int = 4;
1770
1771
+pub const IP_TOS: ::c_int = 1;
1772
pub const IP_TTL: ::c_int = 2;
1773
pub const IP_HDRINCL: ::c_int = 3;
1774
+pub const IP_RECVTOS: ::c_int = 13;
1775
pub const IP_FREEBIND: ::c_int = 15;
1776
pub const IP_TRANSPARENT: ::c_int = 19;
1777
pub const IP_MULTICAST_IF: ::c_int = 32;
0 commit comments