From b672d88e53e7008cc29844654ebacf33f01c23eb Mon Sep 17 00:00:00 2001 From: kolapapa <kolapapa@163.com> Date: Wed, 1 Jul 2020 12:14:33 +0800 Subject: [PATCH] add uclibc `SOCK_RDM` field --- src/unix/uclibc/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unix/uclibc/mod.rs b/src/unix/uclibc/mod.rs index a68cb7a0..de095879 100644 --- a/src/unix/uclibc/mod.rs +++ b/src/unix/uclibc/mod.rs @@ -870,6 +870,7 @@ pub const MSG_WAITFORONE: ::c_int = 0x10000; pub const MSG_CMSG_CLOEXEC: ::c_int = 0x40000000; pub const SOCK_RAW: ::c_int = 3; +pub const SOCK_RDM: ::c_int = 4; pub const IP_MULTICAST_TTL: ::c_int = 33; pub const IP_MULTICAST_LOOP: ::c_int = 34; pub const IP_TTL: ::c_int = 2; -- GitLab