File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
src/unix/bsd/freebsdlike/freebsd Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -725,6 +725,16 @@ fn do_ctest() {
725
725
s if ios && s. starts_with ( "RTV_" ) => true ,
726
726
s if ios && s. starts_with ( "DLT_" ) => true ,
727
727
728
+ | "IP_ORIGDSTADDR"
729
+ | "IP_RECVORIGDSTADDR"
730
+ | "IPV6_ORIGDSTADDR"
731
+ | "IPV6_RECVORIGDSTADDR"
732
+ if freebsd =>
733
+ {
734
+ // FreeBSD 12 required, but CI has FreeBSD 11.
735
+ true
736
+ }
737
+
728
738
_ => false ,
729
739
}
730
740
} ) ;
Original file line number Diff line number Diff line change @@ -828,8 +828,16 @@ pub const TCP_PCAP_OUT: ::c_int = 2048;
828
828
pub const TCP_PCAP_IN : :: c_int = 4096 ;
829
829
830
830
pub const IP_BINDANY : :: c_int = 24 ;
831
+ pub const IP_BINDMULTI : :: c_int = 25 ;
832
+ pub const IP_RSS_LISTEN_BUCKET : :: c_int = 26 ;
833
+ pub const IP_ORIGDSTADDR : :: c_int = 27 ;
834
+ pub const IP_RECVORIGDSTADDR : :: c_int = IP_ORIGDSTADDR ;
835
+
831
836
pub const IP_RECVTOS : :: c_int = 68 ;
832
837
838
+ pub const IPV6_ORIGDSTADDR : :: c_int = 72 ;
839
+ pub const IPV6_RECVORIGDSTADDR : :: c_int = IPV6_ORIGDSTADDR ;
840
+
833
841
pub const PF_SLOW : :: c_int = AF_SLOW ;
834
842
pub const PF_SCLUSTER : :: c_int = AF_SCLUSTER ;
835
843
pub const PF_ARP : :: c_int = AF_ARP ;
You can’t perform that action at this time.
0 commit comments