iBeacon broadcast data frame. Composed on top of an Apple_BLE_Submessage.
| 89 | |
| 90 | |
| 91 | class 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 | |
| 104 | bind_layers(EIR_Manufacturer_Specific_Data, Apple_BLE_Frame, |
nothing calls this directly
no test coverage detected