diff options
author | Gerald Combs <gerald@wireshark.org> | 1998-10-16 01:18:35 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 1998-10-16 01:18:35 +0000 |
commit | 349f96bb49fabf8ada49bb3a258518ed8c472076 (patch) | |
tree | 530004cda45554c7702e232392c8e791bc3a3baf /packet.h | |
parent | 5a35314f8034441930fe7caa8de6b8e7dec4ae7a (diff) | |
download | wireshark-349f96bb49fabf8ada49bb3a258518ed8c472076.tar.gz wireshark-349f96bb49fabf8ada49bb3a258518ed8c472076.tar.bz2 wireshark-349f96bb49fabf8ada49bb3a258518ed8c472076.zip |
* Copied in the correct GNU license (I'm such a goober)
* Hacks to the filter interface (Gerald)
* About box (Laurent)
* AppleTalk support (Simon)
* Mods to the match_strval routine (Gerald)
svn path=/trunk/; revision=61
Diffstat (limited to 'packet.h')
-rw-r--r-- | packet.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* packet.h * Definitions for packet disassembly structures and routines * - * $Id: packet.h,v 1.18 1998/10/15 06:40:51 guy Exp $ + * $Id: packet.h,v 1.19 1998/10/16 01:18:33 gerald Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -434,6 +434,7 @@ enum { ETT_NBNS_ANS, ETT_NBNS_RR, ETT_NBIPX, + ETT_AARP, NUM_TREE_TYPES /* last item number plus one */ }; @@ -485,7 +486,7 @@ GtkWidget* add_item_to_tree(GtkWidget *, gint, gint, gchar *, ...) #else GtkWidget* add_item_to_tree(GtkWidget *, gint, gint, gchar *, ...); #endif -gchar* match_strval(guint32, value_string*, gint); +gchar* match_strval(guint32, value_string*); /* Routines in packet.c */ |