File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
src/unix/linux_like/android Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -3096,6 +3096,12 @@ TUN_F_USO4
3096
3096
TUN_F_USO6
3097
3097
TUN_PKT_STRIP
3098
3098
TUN_TX_TIMESTAMP
3099
+ UDP_CORK
3100
+ UDP_ENCAP
3101
+ UDP_GRO
3102
+ UDP_NO_CHECK6_RX
3103
+ UDP_NO_CHECK6_TX
3104
+ UDP_SEGMENT
3099
3105
UINPUT_MAX_NAME_SIZE
3100
3106
UINPUT_VERSION
3101
3107
UIO_MAXIOV
Original file line number Diff line number Diff line change @@ -1289,6 +1289,15 @@ pub const SOL_ATALK: c_int = 258;
1289
1289
pub const SOL_NETROM : c_int = 259 ;
1290
1290
pub const SOL_ROSE : c_int = 260 ;
1291
1291
1292
+ /* UDP socket options */
1293
+ // include/uapi/linux/udp.h
1294
+ pub const UDP_CORK : c_int = 1 ;
1295
+ pub const UDP_ENCAP : c_int = 100 ;
1296
+ pub const UDP_NO_CHECK6_TX : c_int = 101 ;
1297
+ pub const UDP_NO_CHECK6_RX : c_int = 102 ;
1298
+ pub const UDP_SEGMENT : c_int = 103 ;
1299
+ pub const UDP_GRO : c_int = 104 ;
1300
+
1292
1301
/* DCCP socket options */
1293
1302
pub const DCCP_SOCKOPT_PACKET_SIZE : c_int = 1 ;
1294
1303
pub const DCCP_SOCKOPT_SERVICE : c_int = 2 ;
You can’t perform that action at this time.
0 commit comments