I'm writing a wireshark dissector for a log dump. I have a 8 byte time stamp field in the PDU. Is it possible to display this time stamp value in the time column in wireshark. Also, this packet is not encapsulated by any other protocol. Thanks in Advance! asked 24 Jun '11, 12:18 tut087 |
One Answer:
You can create a custom column that contains your timestamp field (and optionally hide the Time column if it's confusing to show both columns):
answered 24 Jun '11, 17:15 helloworld edited 24 Jun '11, 17:16 |
Thanks. What function could I use to populate this new coloumn?
If using the steps above, you don't need to use a function. Wireshark fills in the column for you automatically: each packet is evaluated for your timestamp field and its value is put in the Timestamp column.