diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-03-27 17:53:20 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-03-27 17:53:20 +0000 |
commit | 1b25952ad459c5627093eca11853d487fbdcae4a (patch) | |
tree | 9371bbe2c77c4c66baa93ef20e334ad6c33e9b1b /packet-ppp.h | |
parent | 1d640c1296eeb182ea2d23efb93cd034b07b76ac (diff) | |
download | wireshark-1b25952ad459c5627093eca11853d487fbdcae4a.tar.gz wireshark-1b25952ad459c5627093eca11853d487fbdcae4a.tar.bz2 wireshark-1b25952ad459c5627093eca11853d487fbdcae4a.zip |
Change dissect_ppp() to accept offset.
Change GRE dissector to call dissect_ppp() instead of dissect_payload_ppp().
svn path=/trunk/; revision=1753
Diffstat (limited to 'packet-ppp.h')
-rw-r--r-- | packet-ppp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ppp.h b/packet-ppp.h index 08df2bd54b..14e01b8d1a 100644 --- a/packet-ppp.h +++ b/packet-ppp.h @@ -1,6 +1,6 @@ /* packet-ppp.h * - * $Id: packet-ppp.h,v 1.1 2000/02/15 21:02:53 gram Exp $ + * $Id: packet-ppp.h,v 1.2 2000/03/27 17:53:20 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -23,5 +23,5 @@ */ void capture_ppp(const u_char *, packet_counts *); -void dissect_ppp(const u_char *, frame_data *, proto_tree *); +void dissect_ppp(const u_char *, int, frame_data *, proto_tree *); void dissect_payload_ppp(const u_char *, int, frame_data *, proto_tree *); |