summaryrefslogtreecommitdiff
path: root/doc/rawshark.pod
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-11-06 20:39:09 +0000
committerGuy Harris <guy@alum.mit.edu>2013-11-06 20:39:09 +0000
commit2a088c1d53ee1e1e3012f68aea745324a44e8120 (patch)
tree720d67bd7491d44e85fe80ba2e10d99d53ec3f49 /doc/rawshark.pod
parent67f69e99e876f9303357b912f877b18f72380dba (diff)
downloadwireshark-2a088c1d53ee1e1e3012f68aea745324a44e8120.tar.gz
Add support for displaying dates as year and day-of-year (1-origin).
In the process, fix various man page descriptions of the -t flag, and add support for UTC absolute times in the iousers and iostat TShark taps. svn path=/trunk/; revision=53114
Diffstat (limited to 'doc/rawshark.pod')
-rw-r--r--doc/rawshark.pod40
1 files changed, 30 insertions, 10 deletions
diff --git a/doc/rawshark.pod b/doc/rawshark.pod
index 8d985bbc41..2eae524821 100644
--- a/doc/rawshark.pod
+++ b/doc/rawshark.pod
@@ -18,7 +18,7 @@ S<[ B<-r> E<lt>pipeE<gt>|- ]>
S<[ B<-R> E<lt>read (display) filterE<gt> ]>
S<[ B<-s> ]>
S<[ B<-S> E<lt>field formatE<gt> ]>
-S<[ B<-t> ad|a|r|d|e ]>
+S<[ B<-t> a|ad|adoy|d|dd|e|r|u|ud|udoy ]>
S<[ B<-v> ]>
=head1 DESCRIPTION
@@ -217,25 +217,45 @@ B<%S> String value of the field.
For something similar to Wireshark's standard display ("Type: A (1)") you
could use B<%D: %S (%N)>.
-=item -t ad|a|r|d|e
+=item -t a|ad|adoy|d|dd|e|r|u|ud|udoy
-Set the format of the packet timestamp printed in summary lines, the default
-is relative. The format can be one of:
+Set the format of the packet timestamp printed in summary lines.
+The format can be one of:
-B<ad> absolute with date: The absolute date and time is the actual time and
-date the packet was captured
+B<a> absolute: The absolute time, as local time in your time zone,
+is the actual time the packet was captured, with no date displayed
-B<a> absolute: The absolute time is the actual time the packet was captured,
-with no date displayed
+B<ad> absolute with date: The absolute date, displayed as YYYY-MM-DD,
+and time, as local time in your time zone, is the actual time and date
+the packet was captured
-B<r> relative: The relative time is the time elapsed between the first packet
-and the current packet
+B<adoy> absolute with date using day of year: The absolute date,
+displayed as YYYY/DOY, and time, as local time in your time zone,
+is the actual time and date the packet was captured
B<d> delta: The delta time is the time since the previous packet was
captured
+B<dd> delta_displayed: The delta_displayed time is the time since the
+previous displayed packet was captured
+
B<e> epoch: The time in seconds since epoch (Jan 1, 1970 00:00:00)
+B<r> relative: The relative time is the time elapsed between the first packet
+and the current packet
+
+B<u> UTC: The absolute time, as UTC, is the actual time the packet was
+captured, with no date displayed
+
+B<ud> UTC with date: The absolute date, displayed as YYYY-MM-DD,
+and time, as UTC, is the actual time and date the packet was captured
+
+B<udoy> UTC with date using day of year: The absolute date, displayed
+as YYYY/DOY, and time, as UTC, is the actual time and date the packet
+was captured
+
+The default format is relative.
+
=item -v
Print the version and exit.