Skip to content
Snippets Groups Projects
Commit e71f936d authored by Guillaume Valadon's avatar Guillaume Valadon
Browse files

Merged in p-l/scapy (pull request #110)

Changed RTP field name from `payload` to `payload_type`
parents e3257cd8 2fa21ba7
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ class RTP(Packet): ...@@ -32,7 +32,7 @@ class RTP(Packet):
BitField('extension', 0, 1), BitField('extension', 0, 1),
BitFieldLenField('numsync', None, 4, count_of='sync'), BitFieldLenField('numsync', None, 4, count_of='sync'),
BitField('marker', 0, 1), BitField('marker', 0, 1),
BitEnumField('payload', 0, 7, _rtp_payload_types), BitEnumField('payload_type', 0, 7, _rtp_payload_types),
ShortField('sequence', 0), ShortField('sequence', 0),
IntField('timestamp', 0), IntField('timestamp', 0),
IntField('sourcesync', 0), IntField('sourcesync', 0),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment