Home
last modified time | relevance | path

Searched refs:tcp_type (Results 1 – 8 of 8) sorted by relevance

/webrtc/ice/src/candidate/
H A Dcandidate_base.rs45 pub(crate) tcp_type: TcpType, field
75 tcp_type: TcpType::default(), in default()
204 fn tcp_type(&self) -> TcpType { in tcp_type() method
205 self.tcp_type in tcp_type()
221 if self.tcp_type != TcpType::Unspecified { in marshal()
222 val += format!(" tcptype {}", self.tcp_type()).as_str(); in marshal()
290 && self.tcp_type() == other.tcp_type() in equal()
375 match self.tcp_type() { in local_preference()
425 let mut tcp_type = TcpType::Unspecified; in unmarshal_candidate() localVariable
451 tcp_type = TcpType::from(split2[1]); in unmarshal_candidate()
[all …]
H A Dcandidate_host.rs12 pub tcp_type: TcpType, field
29 tcp_type: self.tcp_type, in new_candidate_host()
H A Dcandidate_test.rs21 tcp_type: TcpType::Active, in test_candidate_priority()
31 tcp_type: TcpType::Passive, in test_candidate_priority()
41 tcp_type: TcpType::SimultaneousOpen, in test_candidate_priority()
59 tcp_type: TcpType::SimultaneousOpen, in test_candidate_priority()
69 tcp_type: TcpType::Active, in test_candidate_priority()
79 tcp_type: TcpType::Passive, in test_candidate_priority()
362 tcp_type: TcpType::Active, in test_candidate_marshal()
H A Dmod.rs18 use crate::tcp_type::*;
73 fn tcp_type(&self) -> TcpType; in tcp_type() method
/webrtc/ice/src/
H A Dlib.rs15 pub mod tcp_type; module
/webrtc/webrtc/src/ice_transport/
H A Dice_candidate.rs29 pub tcp_type: String, field
58 tcp_type: c.tcp_type().to_string(), in from()
/webrtc/ice/src/agent/
H A Dmod.rs38 use crate::tcp_type::TcpType;
260 if c.tcp_type() == TcpType::Active { in add_remote_candidate()
H A Dagent_gather.rs441 tcp_type: TcpType::Unspecified, in gather_candidates_local_udp_mux()