aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-zbee-nwk.h
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-12-03 07:14:04 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-12-03 07:14:04 +0000
commitfcbeffa36bd8787c04ccfe74bac5f63389ffe08a (patch)
tree27868c321f99deb7964cda953b17aa2b4c544cc5 /epan/dissectors/packet-zbee-nwk.h
parentb132e682a864dfcdeb2373c4729b1cb0618b0539 (diff)
From Fred Fierling:
Fixes invalid long address mappings in NWK layer. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5456 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35106 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-zbee-nwk.h')
-rw-r--r--epan/dissectors/packet-zbee-nwk.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/epan/dissectors/packet-zbee-nwk.h b/epan/dissectors/packet-zbee-nwk.h
index 19e42d739c..576bf08209 100644
--- a/epan/dissectors/packet-zbee-nwk.h
+++ b/epan/dissectors/packet-zbee-nwk.h
@@ -163,12 +163,14 @@ typedef struct {
} key_record_t;
typedef struct {
- gint src_pan; /* source pan */
- gint src; /* short source address from nwk */
- gint ieee_src; /* short source address from mac */
+ gint src_pan; /* source pan */
+ gint src; /* short source address from nwk */
+#if 0
+ gint ieee_src; /* short source address from mac */
+#endif
ieee802154_map_rec *map_rec; /* extended src from nwk */
- key_record_t *nwk; /* Network key found for this packet */
- key_record_t *link; /* Link key found for this packet */
+ key_record_t *nwk; /* Network key found for this packet */
+ key_record_t *link; /* Link key found for this packet */
} zbee_nwk_hints_t;
extern ieee802154_map_tab_t zbee_nwk_map;