| 97 | |
| 98 | |
| 99 | class 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 | |
| 112 | class RTCP(Packet): |
nothing calls this directly
no test coverage detected