aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ipv6-utils.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-08-28 19:27:19 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-08-28 19:27:19 +0000
commita96e6b2047cce1c671f476ae26c81ee8afb7ca12 (patch)
tree2056442e125bbf13f50e1d84c913ca2a8cd783c1 /epan/ipv6-utils.h
parentf17c5ac01f9198a033f6c1cb97ee54676121453e (diff)
Doxygen changes.
svn path=/trunk/; revision=33981
Diffstat (limited to 'epan/ipv6-utils.h')
-rw-r--r--epan/ipv6-utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/ipv6-utils.h b/epan/ipv6-utils.h
index 85012102b0..b1d300d9a7 100644
--- a/epan/ipv6-utils.h
+++ b/epan/ipv6-utils.h
@@ -29,10 +29,10 @@
#define __IPV6_UTILS_H__
struct e_in6_addr {
- guint8 bytes[16]; /* 128 bit IP6 address */
+ guint8 bytes[16]; /** 128 bit IP6 address */
};
-/*
+/**
* Unicast Scope
* Note that we must check topmost 10 bits only, not 16 bits (see RFC2373).
*/
@@ -41,7 +41,7 @@ struct e_in6_addr {
#define E_IN6_IS_ADDR_SITELOCAL(a) \
(((a)->bytes[0] == 0xfe) && (((a)->bytes[1] & 0xc0) == 0xc0))
-/*
+/**
* Multicast
*/
#define E_IN6_IS_ADDR_MULTICAST(a) ((a)->bytes[0] == 0xff)