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-vines.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-vines.h')
-rw-r--r-- | packet-vines.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/packet-vines.h b/packet-vines.h index 83b44b729f..baf1579765 100644 --- a/packet-vines.h +++ b/packet-vines.h @@ -1,7 +1,7 @@ /* packet-vines.h * Definitions for packet disassembly structures and routines * - * $Id: packet-vines.h,v 1.3 1999/10/22 08:30:04 guy Exp $ + * $Id: packet-vines.h,v 1.4 2000/02/15 21:03:25 gram Exp $ * * Don Lafontaine <lafont02@cn.ca> * @@ -38,6 +38,16 @@ #ifndef __PACKETVINES_H__ #define __PACKETVINES_H__ +void capture_vines(const u_char *, int, packet_counts *); +void dissect_vines(const u_char *, int, frame_data *, proto_tree *); +void dissect_vines_arp(const u_char *, int, frame_data *, proto_tree *); +void dissect_vines_frp(const u_char *, int, frame_data *, proto_tree *); +void dissect_vines_icp(const u_char *, int, frame_data *, proto_tree *); +void dissect_vines_ipc(const u_char *, int, frame_data *, proto_tree *); +void dissect_vines_rtp(const u_char *, int, frame_data *, proto_tree *); +void dissect_vines_spp(const u_char *, int, frame_data *, proto_tree *); + + /* VINES IP structs and definitions */ enum { |