diff options
author | YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org> | 2013-01-13 11:02:06 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-01-13 21:04:37 -0500 |
commit | 25d46f43a911b08c5aa8c8fd4fe7fa9b36445068 (patch) | |
tree | 7723898f3aa5c85fc5fd0a1601ecf486ea504469 /include/linux/in6.h | |
parent | a4412a681a995d733e51cc1f6394b5db428613c3 (diff) |
ipv6: Move comment to right place.
IN6ADDR_* and in6addr_* are not exported to userspace, and are defined
in include/linux/in6.h.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/in6.h')
-rw-r--r-- | include/linux/in6.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/in6.h b/include/linux/in6.h index 9e2ae26fb598..a16e19349ec0 100644 --- a/include/linux/in6.h +++ b/include/linux/in6.h | |||
@@ -22,6 +22,10 @@ | |||
22 | 22 | ||
23 | #include <uapi/linux/in6.h> | 23 | #include <uapi/linux/in6.h> |
24 | 24 | ||
25 | /* IPv6 Wildcard Address (::) and Loopback Address (::1) defined in RFC2553 | ||
26 | * NOTE: Be aware the IN6ADDR_* constants and in6addr_* externals are defined | ||
27 | * in network byte order, not in host byte order as are the IPv4 equivalents | ||
28 | */ | ||
25 | extern const struct in6_addr in6addr_any; | 29 | extern const struct in6_addr in6addr_any; |
26 | #define IN6ADDR_ANY_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } } | 30 | #define IN6ADDR_ANY_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } } |
27 | extern const struct in6_addr in6addr_loopback; | 31 | extern const struct in6_addr in6addr_loopback; |