Searched refs:channel_type (Results 1 – 6 of 6) sorted by relevance
| /webrtc/data/src/message/ |
| H A D | message_channel_open.rs | 147 pub channel_type: ChannelType, field 174 let n = self.channel_type.marshal_to(buf)?; in marshal_to() 200 let channel_type = ChannelType::unmarshal(buf)?; in unmarshal() localVariable 222 channel_type, in unmarshal() 239 let channel_type = ChannelType::unmarshal(&mut bytes)?; in test_channel_type_unmarshal_success() localVariable 241 assert_eq!(channel_type, ChannelType::Reliable); in test_channel_type_unmarshal_success() 287 let channel_type = ChannelType::Reliable; in test_channel_type_marshal_size() localVariable 288 let marshal_size = channel_type.marshal_size(); in test_channel_type_marshal_size() 298 let channel_type = ChannelType::Reliable; in test_channel_type_marshal() localVariable 408 channel_type: ChannelType::Reliable, in test_channel_open_marshal_size() [all …]
|
| H A D | message_test.rs | 23 channel_type: ChannelType::Reliable, in test_message_unmarshal_open_success() 71 channel_type: ChannelType::Reliable, in test_message_marshal()
|
| /webrtc/webrtc/src/data_channel/ |
| H A D | mod.rs | 134 let channel_type; in open() localVariable 140 channel_type = ChannelType::Reliable; in open() 142 channel_type = ChannelType::ReliableUnordered; in open() 147 channel_type = ChannelType::PartialReliableRexmit; in open() 149 channel_type = ChannelType::PartialReliableRexmitUnordered; in open() 154 channel_type = ChannelType::PartialReliableTimed; in open() 156 channel_type = ChannelType::PartialReliableTimedUnordered; in open() 161 channel_type, in open()
|
| /webrtc/data/src/data_channel/ |
| H A D | mod.rs | 31 pub channel_type: ChannelType, field 106 channel_type: config.channel_type, in client() 135 config.channel_type = dco.channel_type; in server() 346 let (unordered, reliability_type) = match self.config.channel_type { in commit_reliability_params()
|
| H A D | data_channel_test.rs | 158 async fn pr_ordered_unordered_test(channel_type: ChannelType, is_ordered: bool) -> Result<()> { in pr_ordered_unordered_test() 182 channel_type, in pr_ordered_unordered_test() 269 channel_type: ChannelType::Reliable, in test_data_channel_channel_type_reliable_ordered() 332 channel_type: ChannelType::ReliableUnordered, in test_data_channel_channel_type_reliable_unordered() 536 channel_type: ChannelType::Reliable, in test_stats() 630 channel_type: ChannelType::Reliable, in test_poll_data_channel()
|
| /webrtc/webrtc/src/sctp_transport/ |
| H A D | mod.rs | 254 match dc.config.channel_type { in accept_data_channels()
|