MCPcopy Create free account
hub / github.com/secdev/scapy / Eddystone_UID

Class Eddystone_UID

scapy/contrib/eddystone.py:123–135  ·  view source on GitHub ↗

An Eddystone type for transmitting a unique identifier. https://github.com/google/eddystone/tree/master/eddystone-uid

Source from the content-addressed store, hash-verified

121
122
123class Eddystone_UID(Packet):
124 """
125 An Eddystone type for transmitting a unique identifier.
126
127 https://github.com/google/eddystone/tree/master/eddystone-uid
128 """
129 name = "Eddystone UID"
130 fields_desc = [
131 SignedByteField("tx_power", 0),
132 StrFixedLenField("namespace", None, 10),
133 StrFixedLenField("instance", None, 6),
134 StrFixedLenField("reserved", None, 2),
135 ]
136
137
138class Eddystone_URL(Packet):

Callers

nothing calls this directly

Calls 2

SignedByteFieldClass · 0.90
StrFixedLenFieldClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…