diff options
author | Guy Harris <guy@alum.mit.edu> | 2012-02-25 23:24:34 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2012-02-25 23:24:34 +0000 |
commit | b6ff142f60309faceb422e3d3689c7406aca9361 (patch) | |
tree | fc06d6f47b4bc726709812f14f7576d1945af5c0 /wiretap/etherpeek.c | |
parent | e994e7841299a7eb15783ef24f0b1de46218a1b1 (diff) | |
download | wireshark-b6ff142f60309faceb422e3d3689c7406aca9361.tar.gz wireshark-b6ff142f60309faceb422e3d3689c7406aca9361.tar.bz2 wireshark-b6ff142f60309faceb422e3d3689c7406aca9361.zip |
Add a presence flag field to the packet information structure filled in
by Wiretap, to indicate whether certain fields in that structure
actually have data in them.
Use the "time stamp present" flag to omit showing time stamp information
for packets (and "packets") that don't have time stamps; don't bother
working very hard to "fake" a time stamp for data files.
Use the "interface ID present" flag to omit the interface ID for packets
that don't have an interface ID.
We don't use the "captured length, separate from packet length, present"
flag to omit the captured length; that flag might be present but equal
to the packet length, and if you want to know if a packet was cut short
by a snapshot length, comparing the values would be the way to do that.
More work is needed to have wiretap/pcapng.c properly report the flags,
e.g. reporting no time stamp being present for a Simple Packet Block.
svn path=/trunk/; revision=41185
Diffstat (limited to 'wiretap/etherpeek.c')
-rw-r--r-- | wiretap/etherpeek.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wiretap/etherpeek.c b/wiretap/etherpeek.c index e28b373f0e..b0cb8c12b3 100644 --- a/wiretap/etherpeek.c +++ b/wiretap/etherpeek.c @@ -402,6 +402,8 @@ static gboolean etherpeek_read_v7(wtap *wth, int *err, gchar **err_info, sliceLength = length; } + wth->phdr.presence_flags = WTAP_HAS_TS|WTAP_HAS_CAP_LEN; + /* fill in packet header length values before slicelength may be adjusted */ wth->phdr.len = length; |