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

Class Dot11BSSTMResponse

scapy/layers/dot11.py:1833–1851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1831
1832
1833class Dot11BSSTMResponse(Packet):
1834 name = "BSS Transition Management Response"
1835 fields_desc = [
1836 ByteField("token", 0),
1837 ByteEnumField("status", 0, btm_status_code),
1838 ByteField("termination_delay", 0),
1839 ConditionalField(
1840 MACField("target", ETHER_ANY),
1841 lambda p: p.status == 0
1842 ),
1843 ConditionalField(
1844 PacketListField(
1845 "neighbor_report",
1846 NeighborReport(),
1847 NeighborReport
1848 ),
1849 lambda p: p.status == 6
1850 )
1851 ]
1852
1853
1854# 802.11-2016 9.6.2.1

Callers

nothing calls this directly

Calls 6

ByteFieldClass · 0.90
ByteEnumFieldClass · 0.90
ConditionalFieldClass · 0.90
PacketListFieldClass · 0.90
MACFieldClass · 0.85
NeighborReportClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…