Searched refs:Goodbye (Results 1 – 5 of 5) sorted by relevance
| /webrtc/rtcp/src/goodbye/ |
| H A D | goodbye_test.rs | 13 Goodbye { in test_goodbye_unmarshal() 26 Goodbye { in test_goodbye_unmarshal() 39 Goodbye { in test_goodbye_unmarshal() 52 Goodbye { in test_goodbye_unmarshal() 65 Goodbye { in test_goodbye_unmarshal() 77 Goodbye { in test_goodbye_unmarshal() 89 Goodbye { in test_goodbye_unmarshal() 98 Goodbye { in test_goodbye_unmarshal() 143 Goodbye { in test_goodbye_round_trip() 151 Goodbye { in test_goodbye_round_trip() [all …]
|
| H A D | mod.rs | 15 pub struct Goodbye { struct 22 impl fmt::Display for Goodbye { argument 34 impl Packet for Goodbye { implementation 40 packet_type: PacketType::Goodbye, in header() 64 .downcast_ref::<Goodbye>() in equal() 73 impl MarshalSize for Goodbye { implementation 81 impl Marshal for Goodbye { implementation 131 impl Unmarshal for Goodbye { implementation 153 if header.packet_type != PacketType::Goodbye { in unmarshal() 191 Ok(Goodbye { sources, reason }) in unmarshal()
|
| /webrtc/rtcp/src/compound_packet/ |
| H A D | compound_packet_test.rs | 2 use crate::goodbye::Goodbye; 76 if compound.0[0].as_any().downcast_ref::<Goodbye>().is_none() { in test_bad_compound() 154 Box::<Goodbye>::default(), in test_valid_packet() 240 Box::<Goodbye>::default(), in test_cname() 289 Box::new(Goodbye { in test_compound_packet_roundtrip()
|
| /webrtc/rtcp/src/ |
| H A D | header.rs | 16 Goodbye = 203, // RFC 3550, 6.6 enumerator 46 PacketType::Goodbye => "BYE", in fmt() 62 203 => PacketType::Goodbye, // RFC 3550, 6.6 in from()
|
| H A D | packet.rs | 96 PacketType::Goodbye => Box::new(Goodbye::unmarshal(&mut in_packet)?), in unmarshaller() 182 let c = Goodbye { in test_packet_unmarshal()
|