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;
822
822
pub const IP_TTL : :: c_int = 2 ;
823
823
pub const IP_HDRINCL : :: c_int = 3 ;
824
824
pub const IP_PKTINFO : :: c_int = 8 ;
825
+ pub const IP_MTU_DISCOVER : :: c_int = 10 ;
825
826
pub const IP_RECVTOS : :: c_int = 13 ;
826
827
pub const IP_RECVERR : :: c_int = 11 ;
827
828
pub const IP_ADD_MEMBERSHIP : :: c_int = 35 ;
@@ -857,6 +858,11 @@ pub const IPV6_PKTINFO: ::c_int = 50;
857
858
pub const IPV6_RECVTCLASS : :: c_int = 66 ;
858
859
pub const IPV6_TCLASS : :: c_int = 67 ;
859
860
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
+
860
866
pub const TCP_NODELAY : :: c_int = 1 ;
861
867
pub const TCP_MAXSEG : :: c_int = 2 ;
862
868
pub const TCP_CORK : :: c_int = 3 ;
You can’t perform that action at this time.
0 commit comments