diff options
author | Joseph Myers <joseph@codesourcery.com> | 2019-01-01 02:03:24 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2019-01-01 02:03:24 +0000 |
commit | 6ef3d2255864c7dbfa74e1ed7fc09e3acea42ca3 (patch) | |
tree | b56357081273e1cf99ce67b9a040d9b47ca0f91e | |
parent | e3d4e292f5c1be71a8a62b9eda95829c038338a2 (diff) | |
download | glibc-6ef3d2255864c7dbfa74e1ed7fc09e3acea42ca3.tar glibc-6ef3d2255864c7dbfa74e1ed7fc09e3acea42ca3.tar.gz glibc-6ef3d2255864c7dbfa74e1ed7fc09e3acea42ca3.tar.bz2 glibc-6ef3d2255864c7dbfa74e1ed7fc09e3acea42ca3.zip |
Add IPV6_MULTICAST_ALL from Linux 4.20 to bits/in.h.
This patch adds the IPV6_MULTICAST_ALL constant from Linux 4.20 to
bits/in.h.
Tested for x86_64.
* sysdeps/unix/sysv/linux/bits/in.h (IPV6_MULTICAST_ALL): New
macro.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/in.h | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2019-01-01 Joseph Myers <joseph@codesourcery.com> + * sysdeps/unix/sysv/linux/bits/in.h (IPV6_MULTICAST_ALL): New + macro. + * sysdeps/unix/sysv/linux/netpacket/packet.h (PACKET_IGNORE_OUTGOING): New macro. diff --git a/sysdeps/unix/sysv/linux/bits/in.h b/sysdeps/unix/sysv/linux/bits/in.h index 8d93f155d1..662779968e 100644 --- a/sysdeps/unix/sysv/linux/bits/in.h +++ b/sysdeps/unix/sysv/linux/bits/in.h @@ -191,6 +191,7 @@ struct in_pktinfo #define IPV6_V6ONLY 26 #define IPV6_JOIN_ANYCAST 27 #define IPV6_LEAVE_ANYCAST 28 +#define IPV6_MULTICAST_ALL 29 #define IPV6_IPSEC_POLICY 34 #define IPV6_XFRM_POLICY 35 #define IPV6_HDRINCL 36 |