Lines Matching refs:remote
22 remote: &Arc<dyn Candidate + Send + Sync>, in ping_candidate()
28 remote: &Arc<dyn Candidate + Send + Sync>, in handle_success_response()
35 remote: &Arc<dyn Candidate + Send + Sync>, in handle_binding_request()
46 remote: &Arc<dyn Candidate + Send + Sync>, in ping_candidate()
52 remote: &Arc<dyn Candidate + Send + Sync>, in handle_success_response()
59 remote: &Arc<dyn Candidate + Send + Sync>, in handle_binding_request()
141 pair.remote in nominate_pair()
144 let remote = pair.remote.clone(); in nominate_pair() localVariable
145 Some((msg, local, remote)) in nominate_pair()
152 if let Some((msg, local, remote)) = result { in nominate_pair()
153 self.send_binding_request(&msg, &local, &remote).await; in nominate_pair()
176 remote: &Arc<dyn Candidate + Send + Sync>, in ping_candidate()
179 ControllingSelector::ping_candidate(self, local, remote).await; in ping_candidate()
181 ControlledSelector::ping_candidate(self, local, remote).await; in ping_candidate()
189 remote: &Arc<dyn Candidate + Send + Sync>, in handle_success_response()
193 ControllingSelector::handle_success_response(self, m, local, remote, remote_addr).await; in handle_success_response()
195 ControlledSelector::handle_success_response(self, m, local, remote, remote_addr).await; in handle_success_response()
203 remote: &Arc<dyn Candidate + Send + Sync>, in handle_binding_request()
206 ControllingSelector::handle_binding_request(self, m, local, remote).await; in handle_binding_request()
208 ControlledSelector::handle_binding_request(self, m, local, remote).await; in handle_binding_request()
245 self.is_nominatable(&p.local) && self.is_nominatable(&p.remote) in contact_candidates()
255 p.remote.to_string() in contact_candidates()
274 remote: &Arc<dyn Candidate + Send + Sync>, in ping_candidate()
297 self.send_binding_request(&msg, local, remote).await; in ping_candidate()
305 remote: &Arc<dyn Candidate + Send + Sync>, in handle_success_response()
314 …saction source and destination does not match expected({}), actual({})", transaction_addr, remote); in handle_success_response()
320 remote, in handle_success_response()
325 if let Some(p) = self.find_pair(local, remote).await { in handle_success_response()
345 remote, in handle_success_response()
355 remote: &Arc<dyn Candidate + Send + Sync>, in handle_binding_request()
357 self.send_binding_success(m, local, remote).await; in handle_binding_request()
360 if let Some(p) = self.find_pair(local, remote).await { in handle_binding_request()
384 && self.is_nominatable(&p.remote) in handle_binding_request()
387 p.local, p.remote); in handle_binding_request()
400 self.add_pair(local.clone(), remote.clone()).await; in handle_binding_request()
426 remote: &Arc<dyn Candidate + Send + Sync>, in ping_candidate()
449 self.send_binding_request(&msg, local, remote).await; in ping_candidate()
457 remote: &Arc<dyn Candidate + Send + Sync>, in handle_success_response()
472 …saction source and destination does not match expected({}), actual({})", transaction_addr, remote); in handle_success_response()
478 remote, in handle_success_response()
482 if let Some(p) = self.find_pair(local, remote).await { in handle_success_response()
493 remote, in handle_success_response()
503 remote: &Arc<dyn Candidate + Send + Sync>, in handle_binding_request()
505 if self.find_pair(local, remote).await.is_none() { in handle_binding_request()
506 self.add_pair(local.clone(), remote.clone()).await; in handle_binding_request()
509 if let Some(p) = self.find_pair(local, remote).await { in handle_binding_request()
522 self.send_binding_success(m, local, remote).await; in handle_binding_request()
532 self.ping_candidate(local, remote).await; in handle_binding_request()
535 self.send_binding_success(m, local, remote).await; in handle_binding_request()
536 self.ping_candidate(local, remote).await; in handle_binding_request()