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

Class SubelemTLV

scapy/layers/dot11.py:1715–1725  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1713# 802.11-2016 9.4.2.37
1714
1715class SubelemTLV(Packet):
1716 fields_desc = [
1717 ByteField("type", 0),
1718 LEFieldLenField("len", None, fmt="B", length_of="value"),
1719 FieldListField(
1720 "value",
1721 [],
1722 ByteField('', 0),
1723 length_from=lambda p: p.len
1724 )
1725 ]
1726
1727
1728class BSSTerminationDuration(Packet):

Callers 1

NeighborReportClass · 0.85

Calls 3

ByteFieldClass · 0.90
LEFieldLenFieldClass · 0.90
FieldListFieldClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…