Home
last modified time | relevance | path

Searched refs:ChannelType (Results 1 – 6 of 6) sorted by relevance

/webrtc/data/src/message/
H A Dmessage_channel_open.rs21 pub enum ChannelType { enum
49 impl Default for ChannelType { implementation
55 impl MarshalSize for ChannelType { implementation
61 impl Marshal for ChannelType { implementation
87 impl Unmarshal for ChannelType { implementation
147 pub channel_type: ChannelType,
248 match ChannelType::unmarshal(&mut bytes) { in test_channel_type_unmarshal_invalid()
287 let channel_type = ChannelType::Reliable; in test_channel_type_marshal_size()
298 let channel_type = ChannelType::Reliable; in test_channel_type_marshal()
408 channel_type: ChannelType::Reliable, in test_channel_open_marshal_size()
[all …]
H A Dmessage_test.rs23 channel_type: ChannelType::Reliable, in test_message_unmarshal_open_success()
71 channel_type: ChannelType::Reliable, in test_message_marshal()
/webrtc/webrtc/src/sctp_transport/
H A Dmod.rs21 use data::message::message_channel_open::ChannelType;
255 ChannelType::Reliable => { in accept_data_channels()
258 ChannelType::ReliableUnordered => { in accept_data_channels()
261 ChannelType::PartialReliableRexmit => { in accept_data_channels()
265 ChannelType::PartialReliableRexmitUnordered => { in accept_data_channels()
269 ChannelType::PartialReliableTimed => { in accept_data_channels()
273 ChannelType::PartialReliableTimedUnordered => { in accept_data_channels()
/webrtc/webrtc/src/data_channel/
H A Dmod.rs24 use data::message::message_channel_open::ChannelType;
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()
/webrtc/data/src/data_channel/
H A Dmod.rs31 pub channel_type: ChannelType,
347 ChannelType::Reliable => (false, ReliabilityType::Reliable), in commit_reliability_params()
348 ChannelType::ReliableUnordered => (true, ReliabilityType::Reliable), in commit_reliability_params()
349 ChannelType::PartialReliableRexmit => (false, ReliabilityType::Rexmit), in commit_reliability_params()
350 ChannelType::PartialReliableRexmitUnordered => (true, ReliabilityType::Rexmit), in commit_reliability_params()
351 ChannelType::PartialReliableTimed => (false, ReliabilityType::Timed), in commit_reliability_params()
352 ChannelType::PartialReliableTimedUnordered => (true, ReliabilityType::Timed), in commit_reliability_params()
H A Ddata_channel_test.rs158 async fn pr_ordered_unordered_test(channel_type: ChannelType, is_ordered: bool) -> Result<()> { in pr_ordered_unordered_test() argument
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()
397 pr_ordered_unordered_test(ChannelType::PartialReliableRexmit, true).await in test_data_channel_channel_type_partial_reliable_rexmit()
403 pr_ordered_unordered_test(ChannelType::PartialReliableRexmitUnordered, false).await in test_data_channel_channel_type_partial_reliable_rexmit_unordered()
409 pr_ordered_unordered_test(ChannelType::PartialReliableTimed, true).await in test_data_channel_channel_type_partial_reliable_timed()
415 pr_ordered_unordered_test(ChannelType::PartialReliableTimedUnordered, false).await in test_data_channel_channel_type_partial_reliable_timed_unordered()
536 channel_type: ChannelType::Reliable, in test_stats()
630 channel_type: ChannelType::Reliable, in test_poll_data_channel()