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 /file.h | |
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 'file.h')
-rw-r--r-- | file.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* file.h * Definitions for file structures and routines * - * $Id: file.h,v 1.67 2000/05/18 09:05:36 guy Exp $ + * $Id: file.h,v 1.68 2000/05/19 23:06:07 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -100,7 +100,7 @@ typedef struct _capture_file { #endif gchar *sfilter; /* Search filter string */ gboolean sbackward; /* TRUE if search is backward, FALSE if forward */ - union pseudo_header pseudo_header; /* Packet pseudo_header */ + union wtap_pseudo_header pseudo_header; /* Packet pseudo_header */ guint8 pd[WTAP_MAX_PACKET_SIZE]; /* Packet data */ GMemChunk *plist_chunk; /* Memory chunk for frame_data structures */ frame_data *plist; /* Packet list */ |