File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -695,7 +695,18 @@ fn do_ctest() {
695
695
"AF_MAX" | "PF_MAX" => true ,
696
696
697
697
// These are not in a glibc release yet, only in kernel headers.
698
- "AF_XDP" | "PF_XDP" | "SOL_XDP" if linux => true ,
698
+ "AF_XDP"
699
+ | "PF_XDP"
700
+ | "SOL_XDP"
701
+ | "IPV6_FLOWINFO"
702
+ | "IPV6_FLOWLABEL_MGR"
703
+ | "IPV6_FLOWINFO_SEND"
704
+ | "IPV6_FLOWINFO_FLOWLABEL"
705
+ | "IPV6_FLOWINFO_PRIORITY"
706
+ if linux =>
707
+ {
708
+ true
709
+ }
699
710
700
711
// Present on historical versions of iOS, but now removed in more
701
712
// recent SDKs
Original file line number Diff line number Diff line change @@ -774,18 +774,24 @@ pub const IP_RECVTOS: ::c_int = 13;
774
774
pub const IP_ADD_MEMBERSHIP : :: c_int = 35 ;
775
775
pub const IP_DROP_MEMBERSHIP : :: c_int = 36 ;
776
776
pub const IP_TRANSPARENT : :: c_int = 19 ;
777
+ pub const IPV6_FLOWINFO : :: c_int = 11 ;
777
778
pub const IPV6_UNICAST_HOPS : :: c_int = 16 ;
778
779
pub const IPV6_MULTICAST_IF : :: c_int = 17 ;
779
780
pub const IPV6_MULTICAST_HOPS : :: c_int = 18 ;
780
781
pub const IPV6_MULTICAST_LOOP : :: c_int = 19 ;
781
782
pub const IPV6_ADD_MEMBERSHIP : :: c_int = 20 ;
782
783
pub const IPV6_DROP_MEMBERSHIP : :: c_int = 21 ;
783
784
pub const IPV6_V6ONLY : :: c_int = 26 ;
785
+ pub const IPV6_FLOWLABEL_MGR : :: c_int = 32 ;
786
+ pub const IPV6_FLOWINFO_SEND : :: c_int = 33 ;
784
787
pub const IPV6_RECVPKTINFO : :: c_int = 49 ;
785
788
pub const IPV6_PKTINFO : :: c_int = 50 ;
786
789
pub const IPV6_RECVTCLASS : :: c_int = 66 ;
787
790
pub const IPV6_TCLASS : :: c_int = 67 ;
788
791
792
+ pub const IPV6_FLOWINFO_FLOWLABEL : :: c_int = 0x000fffff ;
793
+ pub const IPV6_FLOWINFO_PRIORITY : :: c_int = 0x0ff00000 ;
794
+
789
795
pub const TCP_NODELAY : :: c_int = 1 ;
790
796
pub const TCP_MAXSEG : :: c_int = 2 ;
791
797
pub const TCP_CORK : :: c_int = 3 ;
You can’t perform that action at this time.
0 commit comments