Fix comments, remove a no-longer-needed include.

Change-Id: I58cc8db41b474e937eb806510c277fe1830204fb
Reviewed-on: https://code.wireshark.org/review/24072
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2017-10-26 00:35:35 -07:00
parent b331641f98
commit 0a99d3ef31
2 changed files with 8 additions and 5 deletions

View File

@ -1,7 +1,8 @@
/* ipv4.h
*
* IPv4 address class. They understand how to take netmasks into consideration
* during equivalence testing.
* Definitions of IPv4 address-and-mask structure, which is what an
* FT_IPV4 value is (even if there's no mask in a packet, those
* values can be compared against an address+mask in a filter
* expression).
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@ -28,7 +29,6 @@
#define __IPV4_H__
#include <glib.h>
#include "ws_symbol_export.h"
typedef struct {
guint32 addr; /* stored in host order */

View File

@ -1,5 +1,8 @@
/* ipv6.h
* Definitions for IPv6 packet disassembly
* Definitions of IPv6 address-and-prefix structure, which is what an
* FT_IPV6 value is (even if there's no prefix in a packet, those
* values can be compared against an address+prefix in a filter
* expression).
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>