aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btle.c
diff options
context:
space:
mode:
authoroyv <ronningstad@gmail.com>2014-08-15 11:56:28 +0200
committerMichael Mann <mmann78@netscape.net>2014-08-15 11:40:06 +0000
commit8ef6f589e3fe2b9203b4154015c8dd087b0c9936 (patch)
treefc0be1b8d8d10468bae4d5d44a6791af1287fc67 /epan/dissectors/packet-btle.c
parent50c8cc61bff15af27dbd9d65bc8c5a8767520380 (diff)
btle advertising header flags (RxAdd/TxAdd) dissected incorrectly
bug:10384 Signed-off-by: oyv <ronningstad@gmail.com> Change-Id: Ic31772c551f36fc8d144a5eaeae987a1e5f3e3f1 Reviewed-on: https://code.wireshark.org/review/3601 Reviewed-by: Michael Mann <mmann78@netscape.net> (cherry picked from commit 9337e7962df8bc12f27019b20dedbb2311669949) Change-Id: Ic31772c551f36fc8d144a5eaeae987a1e5f3e3f1 Reviewed-on: https://code.wireshark.org/review/3609 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-btle.c')
-rw-r--r--epan/dissectors/packet-btle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-btle.c b/epan/dissectors/packet-btle.c
index 0fc82e1b1d..7c99e491cf 100644
--- a/epan/dissectors/packet-btle.c
+++ b/epan/dissectors/packet-btle.c
@@ -776,17 +776,17 @@ proto_register_btle(void)
},
{ &hf_advertising_header_rfu_1,
{ "RFU", "btle.advertising_header.rfu.1",
- FT_UINT8, BASE_DEC, NULL, 0xC0,
+ FT_UINT8, BASE_DEC, NULL, 0x30,
NULL, HFILL }
},
{ &hf_advertising_header_randomized_tx,
{ "Randomized Tx Address", "btle.advertising_header.randomized_tx",
- FT_BOOLEAN, 8, NULL, 0x20,
+ FT_BOOLEAN, 8, NULL, 0x40,
NULL, HFILL }
},
{ &hf_advertising_header_randomized_rx,
{ "Randomized Rx Address", "btle.advertising_header.randomized_rx",
- FT_BOOLEAN, 8, NULL, 0x10,
+ FT_BOOLEAN, 8, NULL, 0x80,
NULL, HFILL }
},
{ &hf_advertising_header_reserved,