Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 7843] New: Delta time column shouldn't be *REF*d

Date: Wed, 10 Oct 2012 14:14:14 -0700 (PDT)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7843

           Summary: Delta time column shouldn't be *REF*d
           Product: Wireshark
           Version: SVN
          Platform: x86
        OS/Version: FreeBSD
            Status: NEW
          Severity: Normal
          Priority: Low
         Component: Wireshark
        AssignedTo: bugzilla-admin@xxxxxxxxxxxxx
        ReportedBy: wireshark@xxxxxxxxxxx


Created attachment 9337
  --> https://bugs.wireshark.org/bugzilla/attachment.cgi?id=9337
patch #1

Build Information:
TShark 1.9.0 (SVN Rev 45441 from /trunk)

Copyright 1998-2012 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 (32-bit) with GLib 2.28.8, with libpcap, with libz 1.2.5, without
POSIX
capabilities, without libnl, with SMI 0.4.8, without c-ares, with ADNS, without
Lua, without Python, with GnuTLS 2.12.12, with Gcrypt 1.5.0, with Heimdal
Kerberos, with GeoIP.

Running on FreeBSD 9.0-RELEASE, without locale, with libpcap version 1.1.1,
with
libz 1.2.5.

Built using gcc 4.2.1 20070831 patched [FreeBSD].

--
The columns in the packet list can contain various date/time related fields
like date/time captured, delta time to previous packet etc.

| num | date time                  | delta       | info
|   1 | 2012-10-02 19:00:01.123000 |    0.000000 | SYN packet
|   2 | 2012-10-02 19:00:01.223000 |    0.100000 | SYN ACK packet
|   3 | 2012-10-02 19:00:01.225000 |    0.002000 | ACK packet

When setting a time reference, it will change the time fields to *REF*:

| num | date time                  | delta       | info
|   1 | 2012-10-02 19:00:01.123000 |    0.000000 | SYN packet
|   2 | *REF*                      |       *REF* | SYN ACK packet
|   3 | 2012-10-02 19:00:01.225000 |    0.002000 | ACK packet

This will filter away important information like the delta time but it doesn't
add any value to it.

The attached patch will give the Frame Protocol Preferences to not *REF* out
the delta times, keeping the important delta time in the overview but still
able to see that the packet was time referenced:

| num | date time                  | delta       | info
|   1 | 2012-10-02 19:00:01.123000 |    0.000000 | SYN packet
|   2 | *REF*                      |    0.100000 | SYN ACK packet
|   3 | 2012-10-02 19:00:01.225000 |    0.002000 | ACK packet

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.