diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-02-15 21:06:58 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-02-15 21:06:58 +0000 |
commit | ddfa11e870be7bbe45147c2e7807da7ee13d6ee8 (patch) | |
tree | 1ed7404ba1544d1204efc77468af4f151c6fc67d /packet-sna.h | |
parent | a9e588ea5797b3f1bb8fb330283d90c51600a56a (diff) | |
download | wireshark-ddfa11e870be7bbe45147c2e7807da7ee13d6ee8.tar.gz wireshark-ddfa11e870be7bbe45147c2e7807da7ee13d6ee8.tar.bz2 wireshark-ddfa11e870be7bbe45147c2e7807da7ee13d6ee8.zip |
Create a header file for every packet-*.c file. Prune the packet.h file.
This change allows you to add a new packet-*.c file and not cause a
recompilation of everything that #include's packet.h
Add the plugin_api.[ch] files ot the plugins/Makefile.am packaging list.
Add #define YY_NO_UNPUT 1 to the lex source so that the yyunput symbol
is not defined, squelching a compiler complaint when compiling the generated
C file.
svn path=/trunk/; revision=1637
Diffstat (limited to 'packet-sna.h')
-rw-r--r-- | packet-sna.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-sna.h b/packet-sna.h index 0159fbfeb3..71d3921c2f 100644 --- a/packet-sna.h +++ b/packet-sna.h @@ -1,7 +1,7 @@ /* packet-sna.h * Definitions for SNA dissection. * - * $Id: packet-sna.h,v 1.1 1999/10/22 08:53:41 guy Exp $ + * $Id: packet-sna.h,v 1.2 2000/02/15 21:03:10 gram Exp $ * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -33,3 +33,5 @@ struct sna_fid_type_4_addr { * Routine to take an SNA FID Type 4 address and generate a string. */ extern gchar *sna_fid_type_4_addr_to_str(const struct sna_fid_type_4_addr *addrp); + +void dissect_sna(const u_char *, int, frame_data *, proto_tree *); |