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

Class ReceptionReport

scapy/contrib/rtcp.py:58–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56
57
58class ReceptionReport(Packet):
59 name = "Reception report"
60 fields_desc = [
61 IntField('sourcesync', None),
62 ByteField('fraction_lost', None),
63 X3BytesField('cumulative_lost', None),
64 IntField('highest_seqnum_recv', None),
65 IntField('interarrival_jitter', None),
66 IntField('last_SR_timestamp', None),
67 IntField('delay_since_last_SR', None)
68 ]
69
70 def extract_padding(self, p):
71 return "", p
72
73
74_sdes_chunk_types = {

Callers

nothing calls this directly

Calls 3

IntFieldClass · 0.90
ByteFieldClass · 0.90
X3BytesFieldClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…