diff options
author | mdodd <mdodd@FreeBSD.org> | 2003-04-29 22:03:46 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 2003-04-29 22:03:46 +0000 |
commit | 7c250e7fe6babc804765231f92101de8b45258a8 (patch) | |
tree | cdb399eb0959ea5b57908a51a7b6a745a7be5c1d /sys/netinet6 | |
parent | 6afaafd2aaf53c793eefeb6d602c1038625e9bff (diff) | |
download | FreeBSD-src-7c250e7fe6babc804765231f92101de8b45258a8.zip FreeBSD-src-7c250e7fe6babc804765231f92101de8b45258a8.tar.gz |
Add definitions for IN6ADDR_LINKLOCAL_ALLMDNS_INIT and INADDR_ALLMDNS_GROUP.
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/in6.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/netinet6/in6.h b/sys/netinet6/in6.h index 1a504c8..a178371 100644 --- a/sys/netinet6/in6.h +++ b/sys/netinet6/in6.h @@ -224,6 +224,9 @@ extern const struct in6_addr in6mask128; #define IN6ADDR_LINKLOCAL_ALLROUTERS_INIT \ {{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 }}} +#define IN6ADDR_LINKLOCAL_ALLMDNS_INIT \ + {{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb }}} #endif extern const struct in6_addr in6addr_any; |