diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-09-12 04:52:55 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-09-12 04:52:55 +0000 |
commit | 1ce1722006b2d0d95b66869b04a9fbcd8c2f9c1c (patch) | |
tree | 542af5954d6bfdf8dfc035d87c7edcda1534c269 /packet-frame.c | |
parent | 007d8736715a85a30f741e10d614c959f8453f5a (diff) | |
download | wireshark-1ce1722006b2d0d95b66869b04a9fbcd8c2f9c1c.tar.gz wireshark-1ce1722006b2d0d95b66869b04a9fbcd8c2f9c1c.tar.bz2 wireshark-1ce1722006b2d0d95b66869b04a9fbcd8c2f9c1c.zip |
Attempt to prettify frame.time_relative
and some other fields
svn path=/trunk/; revision=8460
Diffstat (limited to 'packet-frame.c')
-rw-r--r-- | packet-frame.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-frame.c b/packet-frame.c index e947f452d8..2e08d60889 100644 --- a/packet-frame.c +++ b/packet-frame.c @@ -2,7 +2,7 @@ * * Top-most dissector. Decides dissector based on Wiretap Encapsulation Type. * - * $Id: packet-frame.c,v 1.37 2003/09/12 02:48:20 sahlberg Exp $ + * $Id: packet-frame.c,v 1.38 2003/09/12 04:52:55 sahlberg Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -235,17 +235,17 @@ proto_register_frame(void) static hf_register_info hf[] = { { &hf_frame_arrival_time, { "Arrival Time", "frame.time", FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0x0, - "", HFILL }}, + "Absolute time when this frame was captured", HFILL }}, { &hf_frame_time_delta, { "Time delta from previous packet", "frame.time_delta", FT_RELATIVE_TIME, BASE_NONE, NULL, 0x0, - "", HFILL }}, + "Time delta since previous diplayed frame", HFILL }}, { &hf_frame_time_relative, - { "Time relative to first packet", "frame.time_relative", FT_RELATIVE_TIME, BASE_NONE, NULL, + { "Time since reference or first frame", "frame.time_relative", FT_RELATIVE_TIME, BASE_NONE, NULL, 0x0, - "Time relative to the previous *REF* frame, if any, or the first packet of the capture", HFILL }}, + "Time relative reference or first frame", HFILL }}, { &hf_frame_number, { "Frame Number", "frame.number", FT_UINT32, BASE_DEC, NULL, 0x0, |