Index: webrtc/p2p/base/port.cc |
diff --git a/webrtc/p2p/base/port.cc b/webrtc/p2p/base/port.cc |
index eba15f69a32a6518766e2a77863d0889c917a02b..74b9eddf557155d2332346244f3e522ba331ca3c 100644 |
--- a/webrtc/p2p/base/port.cc |
+++ b/webrtc/p2p/base/port.cc |
@@ -813,6 +813,10 @@ const Candidate& Connection::local_candidate() const { |
return port_->Candidates()[local_candidate_index_]; |
} |
+const Candidate& Connection::remote_candidate() const { |
+ return remote_candidate_; |
+} |
+ |
uint64_t Connection::priority() const { |
uint64_t priority = 0; |
// RFC 5245 - 5.7.2. Computing Pair Priority and Ordering Pairs |