diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2006-03-25 19:04:52 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2006-03-25 19:04:52 +0000 |
commit | 0990c4f2c0d71053b52aa2b9729b6fc326dc8e9d (patch) | |
tree | e85ce4b2513ae49ac723e043c3fc99dbeb41b978 /capture-pcap-util.h | |
parent | 4dd0ac18bcc1c0fece816290c24f821f0830fccb (diff) | |
download | wireshark-0990c4f2c0d71053b52aa2b9729b6fc326dc8e9d.tar.gz wireshark-0990c4f2c0d71053b52aa2b9729b6fc326dc8e9d.tar.bz2 wireshark-0990c4f2c0d71053b52aa2b9729b6fc326dc8e9d.zip |
fix a wrong comment: AF_INET -> AT_IPv4
svn path=/trunk/; revision=17729
Diffstat (limited to 'capture-pcap-util.h')
-rw-r--r-- | capture-pcap-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/capture-pcap-util.h b/capture-pcap-util.h index 0b07e2b274..c52cddde06 100644 --- a/capture-pcap-util.h +++ b/capture-pcap-util.h @@ -67,7 +67,7 @@ typedef struct { * An address in the "ip_addr" list. */ typedef struct { - address_type type; /* AF_INET or AF_INET6 */ + address_type type; /* AT_IPv4 or AT_IPv6 */ union { guint32 ip4_addr; /* 4 byte IP V4 address, or */ guint8 ip6_addr[16];/* 16 byte IP V6 address */ |