We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5e514c commit f26c841Copy full SHA for f26c841
scapy/layers/bluetooth.py
@@ -1172,9 +1172,13 @@ class EIR_PeripheralConnectionIntervalRange(EIR_Element):
1172
1173
class EIR_Manufacturer_Specific_Data(EIR_Element):
1174
name = "EIR Manufacturer Specific Data"
1175
+ deprecated_fields = {
1176
+ "company_id": ("company_identifier", "2.6.2"),
1177
+ }
1178
fields_desc = [
1179
# https://www.bluetooth.com/specifications/assigned-numbers/company-identifiers
- XLEShortField("company_id", None),
1180
+ LEShortEnumField("company_identifier", None,
1181
+ BLUETOOTH_CORE_COMPANY_IDENTIFIERS),
1182
]
1183
1184
registered_magic_payloads = {}
0 commit comments