diff options
author | Szabolcs Nagy <nsz@port70.net> | 2019-05-09 19:37:09 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-07-01 14:16:41 -0400 |
commit | eea841e6534b014b820fcd3c99e8ac4a0cb2412e (patch) | |
tree | 947f602e63232e08dc8974a0fa5688fec1306291 | |
parent | 5b2b682ddc67552dcd16ed6a095b7f67f47c16c3 (diff) | |
download | musl-eea841e6534b014b820fcd3c99e8ac4a0cb2412e.zip musl-eea841e6534b014b820fcd3c99e8ac4a0cb2412e.tar.gz musl-eea841e6534b014b820fcd3c99e8ac4a0cb2412e.tar.bz2 |
netinet/in.h: add INADDR_ALLSNOOPERS_GROUP from linux v5.1
RFC 4286: "The IPv4 multicast address for All-Snoopers is 224.0.0.106."
from
linux commit 4effd28c1245303dce7fd290c501ac2c11052114
bridge: join all-snoopers multicast address
-rw-r--r-- | include/netinet/in.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/netinet/in.h b/include/netinet/in.h index 1770575..5b8b21e 100644 --- a/include/netinet/in.h +++ b/include/netinet/in.h @@ -52,6 +52,7 @@ struct ipv6_mreq { #define INADDR_UNSPEC_GROUP ((in_addr_t) 0xe0000000) #define INADDR_ALLHOSTS_GROUP ((in_addr_t) 0xe0000001) #define INADDR_ALLRTRS_GROUP ((in_addr_t) 0xe0000002) +#define INADDR_ALLSNOOPERS_GROUP ((in_addr_t) 0xe000006a) #define INADDR_MAX_LOCAL_GROUP ((in_addr_t) 0xe00000ff) #define IN6ADDR_ANY_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } } |