https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4272
Summary: Patch to add new filterable field - frame.time_epoch
Product: Wireshark
Version: SVN
Platform: All
OS/Version: All
Status: NEW
Severity: Enhancement
Priority: Low
Component: Wireshark
AssignedTo: wireshark-bugs@xxxxxxxxxxxxx
ReportedBy: jyoung@xxxxxxx
Created an attachment (id=4004)
--> (https://bugs.wireshark.org/bugzilla/attachment.cgi?id=4004)
Patch to epan/dissectors/packet-frame.c to (optionally) generate time_epoch
field
Build Information:
$ tshark -v
TShark 1.3.3 (SVN Rev 31109 from /trunk)
Copyright 1998-2009 Gerald Combs <gerald@xxxxxxxxxxxxx> and contributors.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Compiled with GLib 2.22.2, with WinPcap (version unknown), with libz 1.2.3,
without POSIX capabilities, with libpcre 7.0, with SMI 0.4.8, with c-ares
1.6.0,
with Lua 5.1, without Python, with GnuTLS 2.8.5, with Gcrypt 1.4.4, with MIT
Kerberos, with GeoIP.
Running on Windows XP Service Pack 2, build 2600, with WinPcap version 4.1
beta5
(packet.dll version 4.1.0.1452), based on libpcap version 1.0.0, GnuTLS 2.8.5,
Gcrypt 1.4.4.
Built using Microsoft Visual C++ 9.0 build 30729
--
Currently the ability for tshark to report packet arrival time in epoch format
is restricted to the packet summary line by using the -t e option: e.g.
tshark -r MYTRACE.PCAP -t e
The attached patch enhances epan/dissectors/packet-frame.c to add a new
filterable field named "frame.time_epoch".
This patch will allow the packet arrival time to be reported in epoch time
using the -T fields and -e FIELDNAME options: e.g.
tshark -r MYTRACE.PCAP -T fields -e frame.number -e frame.time_epoch [...]
A new boolean "Frame" preference "Generate an epoch time entry for each frame"
was added to optionally disable this new field. The generation of the
frame.time_epoch field is enabled by default. The current configured
preference may be overridden on wireshark/tshark program startup with the -o
option: e.g.
wireshark -o 'frame.generate_epoch_time:FALSE'
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.