File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -377,6 +377,9 @@ IPPROTO_TP
377
377
IPPROTO_UDPLITE
378
378
IPV6_ADD_MEMBERSHIP
379
379
IPV6_DROP_MEMBERSHIP
380
+ IPV6_RECVPKTINFO
381
+ IPV6_RECVTCLASS
382
+ IPV6_TCLASS
380
383
IP_FREEBIND
381
384
IP_TOS
382
385
IP_RECVTOS
@@ -1228,6 +1231,7 @@ idtype_t
1228
1231
if_freenameindex
1229
1232
if_nameindex
1230
1233
ifaddrs
1234
+ in6_pktinfo
1231
1235
initgroups
1232
1236
ino64_t
1233
1237
input_absinfo
Original file line number Diff line number Diff line change @@ -877,6 +877,11 @@ s! {
877
877
pub c_ispeed: :: speed_t,
878
878
pub c_ospeed: :: speed_t,
879
879
}
880
+
881
+ pub struct in6_pktinfo {
882
+ pub ipi6_addr: :: in6_addr,
883
+ pub ipi6_ifindex: :: c_uint,
884
+ }
880
885
}
881
886
882
887
s_no_extra_traits ! {
@@ -1788,6 +1793,9 @@ pub const IPV6_MULTICAST_LOOP: ::c_int = 19;
1788
1793
pub const IPV6_ADD_MEMBERSHIP : :: c_int = 20 ;
1789
1794
pub const IPV6_DROP_MEMBERSHIP : :: c_int = 21 ;
1790
1795
pub const IPV6_V6ONLY : :: c_int = 26 ;
1796
+ pub const IPV6_RECVPKTINFO : :: c_int = 49 ;
1797
+ pub const IPV6_RECVTCLASS : :: c_int = 66 ;
1798
+ pub const IPV6_TCLASS : :: c_int = 67 ;
1791
1799
1792
1800
pub const TCP_NODELAY : :: c_int = 1 ;
1793
1801
pub const TCP_MAXSEG : :: c_int = 2 ;
You can’t perform that action at this time.
0 commit comments