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

Class SDESChunk

scapy/contrib/rtcp.py:99–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97
98
99class SDESChunk(Packet):
100 name = "SDES chunk"
101 fields_desc = [
102 IntField('sourcesync', None),
103 PacketListField(
104 'items', None,
105 next_cls_cb=(
106 lambda x, y, p, z: None if (p and p.chunk_type == 0) else SDESItem
107 )
108 )
109 ]
110
111
112class RTCP(Packet):

Callers

nothing calls this directly

Calls 2

IntFieldClass · 0.90
PacketListFieldClass · 0.90

Tested by

no test coverage detected