aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rx.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2008-03-16 01:38:11 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2008-03-16 01:38:11 +0000
commitc84dbb230a2ec8a0a8b4dc18fa7f3e99a255319f (patch)
tree48fcac462c336f431d172abcd3fad685c6c4b305 /epan/dissectors/packet-rx.c
parentb59322ecc1c394002404ec4a559241c970fa2c9c (diff)
From Chaskiel Grundman via http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1556: patch to track afs requests by rx connection id
svn path=/trunk/; revision=24651
Diffstat (limited to 'epan/dissectors/packet-rx.c')
-rw-r--r--epan/dissectors/packet-rx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rx.c b/epan/dissectors/packet-rx.c
index 5f4bd72528..2edc4a7b9b 100644
--- a/epan/dissectors/packet-rx.c
+++ b/epan/dissectors/packet-rx.c
@@ -489,10 +489,12 @@ dissect_rx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
proto_tree_add_time(tree, hf_rx_epoch, tvb,
offset, 4, &ts);
+ rxinfo.epoch = ts.secs;
offset += 4;
}
/* cid : 4 bytes */
+ rxinfo.cid = tvb_get_ntohl(tvb, offset);
proto_tree_add_item(tree, hf_rx_cid, tvb, offset, 4, FALSE);
offset += 4;