diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-05-19 23:07:04 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-05-19 23:07:04 +0000 |
commit | d7e6e0e384967a4d3ac1f57d6446f5a04e83b3c6 (patch) | |
tree | 349138fc92b8d0ed8fa5f5f4be28c0be0ed92b41 /packet-atm.c | |
parent | 586e1b6fca8da9b031bb99b7010c3c77fbd85045 (diff) | |
download | wireshark-d7e6e0e384967a4d3ac1f57d6446f5a04e83b3c6.tar.gz wireshark-d7e6e0e384967a4d3ac1f57d6446f5a04e83b3c6.tar.bz2 wireshark-d7e6e0e384967a4d3ac1f57d6446f5a04e83b3c6.zip |
Add wtap-int.h. Move definitions relevant to the internal workins of wiretap
to that file, leave public definitions in wtap.h.
Rename "union pseudo_header" to "union wtap_pseudo_header".
Make the wtap_pseudo_header pointer available in packet_info struct.
svn path=/trunk/; revision=1989
Diffstat (limited to 'packet-atm.c')
-rw-r--r-- | packet-atm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-atm.c b/packet-atm.c index 1de50ed766..5a7bbcfb59 100644 --- a/packet-atm.c +++ b/packet-atm.c @@ -1,7 +1,7 @@ /* packet-atm.c * Routines for ATM packet disassembly * - * $Id: packet-atm.c,v 1.19 2000/05/18 09:05:40 guy Exp $ + * $Id: packet-atm.c,v 1.20 2000/05/19 23:06:08 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -372,7 +372,7 @@ dissect_le_control(const u_char *pd, int offset, frame_data *fd, proto_tree *tre } static void -dissect_lane(const union pseudo_header *pseudo_header, const u_char *pd, +dissect_lane(const union wtap_pseudo_header *pseudo_header, const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { tvbuff_t *next_tvb; @@ -485,7 +485,7 @@ static const value_string ipsilon_type_vals[] = { * We at least know it's AAL5.... */ static void -atm_guess_content(union pseudo_header *pseudo_header, const u_char *pd, +atm_guess_content(union wtap_pseudo_header *pseudo_header, const u_char *pd, frame_data *fd) { if (pseudo_header->ngsniffer_atm.Vpi == 0) { @@ -550,7 +550,7 @@ atm_guess_content(union pseudo_header *pseudo_header, const u_char *pd, } void -dissect_atm(union pseudo_header *pseudo_header, const u_char *pd, +dissect_atm(union wtap_pseudo_header *pseudo_header, const u_char *pd, frame_data *fd, proto_tree *tree) { int offset = 0; |