Home
last modified time | relevance | path

Searched refs:Goodbye (Results 1 – 5 of 5) sorted by relevance

/webrtc/rtcp/src/goodbye/
H A Dgoodbye_test.rs13 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 Dmod.rs15 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 Dcompound_packet_test.rs2 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 Dheader.rs16 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 Dpacket.rs96 PacketType::Goodbye => Box::new(Goodbye::unmarshal(&mut in_packet)?), in unmarshaller()
182 let c = Goodbye { in test_packet_unmarshal()