From 5b55e05b6095e1dd532f2dbfc191ecbffd6a56ec Mon Sep 17 00:00:00 2001 From: Kelvin Ly Date: Mon, 31 Jul 2017 16:17:39 -0400 Subject: [PATCH] Add IPV6_JOIN_GROUP and IPV6_LEAVE_GROUP to uclibc --- src/unix/uclibc/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/unix/uclibc/mod.rs b/src/unix/uclibc/mod.rs index 076ee41d0403e..fa5cc94e0787b 100644 --- a/src/unix/uclibc/mod.rs +++ b/src/unix/uclibc/mod.rs @@ -732,6 +732,9 @@ pub const IP_HDRINCL: ::c_int = 3; pub const IP_ADD_MEMBERSHIP: ::c_int = 35; pub const IP_DROP_MEMBERSHIP: ::c_int = 36; +pub const IPV6_JOIN_GROUP: ::c_int = 20; +pub const IPV6_LEAVE_GROUP: ::c_int = 21; + pub const TCP_NODELAY: ::c_int = 1; pub const TCP_MAXSEG: ::c_int = 2; pub const TCP_CORK: ::c_int = 3;