MCPcopy Index your code
hub / github.com/secdev/scapy / IBeacon_Data

Class IBeacon_Data

scapy/contrib/ibeacon.py:91–101  ·  view source on GitHub ↗

iBeacon broadcast data frame. Composed on top of an Apple_BLE_Submessage.

Source from the content-addressed store, hash-verified

89
90
91class IBeacon_Data(Packet):
92 """
93 iBeacon broadcast data frame. Composed on top of an Apple_BLE_Submessage.
94 """
95 name = "iBeacon data"
96 fields_desc = [
97 UUIDField("uuid", None, uuid_fmt=UUIDField.FORMAT_BE),
98 ShortField("major", None),
99 ShortField("minor", None),
100 SignedByteField("tx_power", None),
101 ]
102
103
104bind_layers(EIR_Manufacturer_Specific_Data, Apple_BLE_Frame,

Callers

nothing calls this directly

Calls 3

UUIDFieldClass · 0.90
ShortFieldClass · 0.90
SignedByteFieldClass · 0.90

Tested by

no test coverage detected