We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f3d696 commit 2c9abc2Copy full SHA for 2c9abc2
libc-test/semver/android.txt
@@ -3096,6 +3096,8 @@ TUN_F_USO4
3096
TUN_F_USO6
3097
TUN_PKT_STRIP
3098
TUN_TX_TIMESTAMP
3099
+UDP_GRO
3100
+UDP_SEGMENT
3101
UINPUT_MAX_NAME_SIZE
3102
UINPUT_VERSION
3103
UIO_MAXIOV
src/unix/linux_like/android/mod.rs
@@ -1289,6 +1289,11 @@ pub const SOL_ATALK: c_int = 258;
1289
pub const SOL_NETROM: c_int = 259;
1290
pub const SOL_ROSE: c_int = 260;
1291
1292
+/* UDP socket options */
1293
+// include/uapi/linux/udp.h
1294
+pub const UDP_SEGMENT: c_int = 103;
1295
+pub const UDP_GRO: c_int = 104;
1296
+
1297
/* DCCP socket options */
1298
pub const DCCP_SOCKOPT_PACKET_SIZE: c_int = 1;
1299
pub const DCCP_SOCKOPT_SERVICE: c_int = 2;
0 commit comments