summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-08-11 18:38:08 -0700
committerGuy Harris <guy@alum.mit.edu>2015-08-12 01:38:34 +0000
commit1100ba9ac7a1bbd01c2b1598afa850d1827f376a (patch)
treec29d3268eed9902b7088745101f419ba662ca6f7
parent36c50fe462bac00f677759073842e3bfd7644c5b (diff)
downloadwireshark-1100ba9ac7a1bbd01c2b1598afa850d1827f376a.tar.gz
Update comments.
Change-Id: I4b0b4bb31901208e09a535ef922e134116309531 Reviewed-on: https://code.wireshark.org/review/9988 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--wiretap/capsa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/wiretap/capsa.c b/wiretap/capsa.c
index 3dd5b77d01..c0cb8c65cd 100644
--- a/wiretap/capsa.c
+++ b/wiretap/capsa.c
@@ -84,8 +84,8 @@ static const char capsa_magic[] = {
struct capsarec_hdr {
guint32 unknown1; /* low-order 32 bits of a number? */
guint32 unknown2; /* 0x00 0x00 0x00 0x00 */
- guint32 timestamplo; /* low-order 32 bits of a time stamp, in microseconds */
- guint32 timestamphi; /* high-order 32 bits of a time stamp, in microseconds */
+ guint32 timestamplo; /* low-order 32 bits of the time stamp, in microseconds since January 1, 1970, 00:00:00 UTC */
+ guint32 timestamphi; /* high-order 32 bits of the time stamp, in microseconds since January 1, 1970, 00:00:00 UTC */
guint16 rec_len; /* length of record */
guint16 incl_len; /* number of octets captured in file */
guint16 orig_len; /* actual length of packet */
@@ -105,8 +105,8 @@ struct pbrec_hdr {
guint16 unknown2;
guint16 unknown3;
guint32 unknown4;
- guint32 timestamplo; /* low-order 32 bits of a time stamp, in microseconds */
- guint32 timestamphi; /* high-order 32 bits of a time stamp, in microseconds */
+ guint32 timestamplo; /* low-order 32 bits of the time stamp, in microseconds since January 1, 1970, 00:00:00 UTC */
+ guint32 timestamphi; /* high-order 32 bits of the time stamp, in microseconds since January 1, 1970, 00:00:00 UTC */
guint32 unknown5;
guint32 unknown6;
};