From Andrei Emeltchenko via Chris Maynard:

btl2cap extended window shows wrong bit.
Patch would not apply cleanly so added by hand.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6257

svn path=/trunk/; revision=38680
This commit is contained in:
Anders Broman 2011-08-23 04:49:24 +00:00
parent 1f23674191
commit 3acc73fd0c
1 changed files with 10 additions and 10 deletions

View File

@ -1466,52 +1466,52 @@ proto_register_btl2cap(void)
},
{ &hf_btl2cap_info_flowcontrol,
{ "Flow Control Mode", "btl2cap.info_flowcontrol",
FT_UINT8, BASE_DEC, NULL, 0x01,
FT_UINT32, BASE_DEC, NULL, 0x01,
"Flow Control mode support", HFILL }
},
{ &hf_btl2cap_info_retransmission,
{ "Retransmission Mode", "btl2cap.info_retransmission",
FT_UINT8, BASE_DEC, NULL, 0x02,
FT_UINT32, BASE_DEC, NULL, 0x02,
"Retransmission mode support", HFILL }
},
{ &hf_btl2cap_info_bidirqos,
{ "Bi-Directional QOS", "btl2cap.info_bidirqos",
FT_UINT8, BASE_DEC, NULL, 0x04,
FT_UINT32, BASE_DEC, NULL, 0x04,
"Bi-Directional QOS support", HFILL }
},
{ &hf_btl2cap_info_enh_retransmission,
{ "Enhancded Retransmission Mode", "btl2cap.info_enh_retransmission",
FT_UINT8, BASE_DEC, NULL, 0x08,
FT_UINT32, BASE_DEC, NULL, 0x08,
"Enhancded Retransmission mode support", HFILL }
},
{ &hf_btl2cap_info_streaming,
{ "Streaming Mode", "btl2cap.info_streaming",
FT_UINT8, BASE_DEC, NULL, 0x10,
FT_UINT32, BASE_DEC, NULL, 0x10,
"Streaming mode support", HFILL }
},
{ &hf_btl2cap_info_fcs,
{ "FCS", "btl2cap.info_fcs",
FT_UINT8, BASE_DEC, NULL, 0x20,
FT_UINT32, BASE_DEC, NULL, 0x20,
"FCS support", HFILL }
},
{ &hf_btl2cap_info_flow_spec,
{ "Extended Flow Specification for BR/EDR", "btl2cap.info_flow_spec",
FT_UINT8, BASE_DEC, NULL, 0x40,
FT_UINT32, BASE_DEC, NULL, 0x40,
"Extended Flow Specification for BR/EDR support", HFILL }
},
{ &hf_btl2cap_info_fixedchan,
{ "Fixed Channels", "btl2cap.info_fixedchan",
FT_UINT8, BASE_DEC, NULL, 0x80,
FT_UINT32, BASE_DEC, NULL, 0x80,
"Fixed Channels support", HFILL }
},
{ &hf_btl2cap_info_window,
{ "Extended Window Size", "btl2cap.info_window",
FT_UINT8, BASE_DEC, NULL, 0x01,
FT_UINT32, BASE_DEC, NULL, 0x01,
"Extended Window Size support", HFILL }
},
{ &hf_btl2cap_info_unicast,
{ "Unicast Connectionless Data Reception", "btl2cap.info_unicast",
FT_UINT8, BASE_DEC, NULL, 0x02,
FT_UINT32, BASE_DEC, NULL, 0x02,
"Unicast Connectionless Data Reception support", HFILL }
},
{ &hf_btl2cap_info_fixedchans,