File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ F_DUP2FD_CLOEXEC
33F_DUP2FD_CLOFORK
44F_DUP3FD
55F_DUPFD_CLOFORK
6+ IPV6_MINHOPCOUNT
7+ IP_MINTTL
68MSG_CMSG_CLOEXEC
79MSG_CMSG_CLOFORK
810O_CLOFORK
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ AIO_CANCELED
33AIO_NOTCANCELED
44IPV6_BOUND_IF
55IPV6_DONTFRAG
6+ IPV6_HOPLIMIT
67IPV6_PKTINFO
78IPV6_RECVTCLASS
89IPV6_TCLASS
Original file line number Diff line number Diff line change @@ -207,6 +207,10 @@ pub const B4000000: crate::speed_t = 31;
207207// sys/systeminfo.h
208208pub const SI_ADDRESS_WIDTH : c_int = 520 ;
209209
210+ // netinet/in.h
211+ pub const IP_MINTTL : c_int = 0x1c ;
212+ pub const IPV6_MINHOPCOUNT : c_int = 0x2f ;
213+
210214// sys/timerfd.h
211215pub const TFD_CLOEXEC : i32 = 0o2000000 ;
212216pub const TFD_NONBLOCK : i32 = 0o4000 ;
Original file line number Diff line number Diff line change @@ -882,6 +882,7 @@ pub const IPV6_MULTICAST_IF: c_int = 0x6;
882882pub const IPV6_MULTICAST_HOPS : c_int = 0x7 ;
883883pub const IPV6_MULTICAST_LOOP : c_int = 0x8 ;
884884pub const IPV6_PKTINFO : c_int = 0xb ;
885+ pub const IPV6_HOPLIMIT : c_int = 0xc ;
885886pub const IPV6_RECVPKTINFO : c_int = 0x12 ;
886887pub const IPV6_RECVTCLASS : c_int = 0x19 ;
887888pub const IPV6_DONTFRAG : c_int = 0x21 ;
You can’t perform that action at this time.
0 commit comments