File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -822,6 +822,7 @@ pub const IP_TOS: ::c_int = 1;
822822pub const IP_TTL : :: c_int = 2 ;
823823pub const IP_HDRINCL : :: c_int = 3 ;
824824pub const IP_PKTINFO : :: c_int = 8 ;
825+ pub const IP_MTU_DISCOVER : :: c_int = 10 ;
825826pub const IP_RECVTOS : :: c_int = 13 ;
826827pub const IP_RECVERR : :: c_int = 11 ;
827828pub const IP_ADD_MEMBERSHIP : :: c_int = 35 ;
@@ -857,6 +858,11 @@ pub const IPV6_PKTINFO: ::c_int = 50;
857858pub const IPV6_RECVTCLASS : :: c_int = 66 ;
858859pub const IPV6_TCLASS : :: c_int = 67 ;
859860
861+ pub const IP_PMTUDISC_DONT : :: c_int = 0 ;
862+ pub const IP_PMTUDISC_WANT : :: c_int = 1 ;
863+ pub const IP_PMTUDISC_DO : :: c_int = 2 ;
864+ pub const IP_PMTUDISC_PROBE : :: c_int = 3 ;
865+
860866pub const TCP_NODELAY : :: c_int = 1 ;
861867pub const TCP_MAXSEG : :: c_int = 2 ;
862868pub const TCP_CORK : :: c_int = 3 ;
You can’t perform that action at this time.
0 commit comments