| Index: webrtc/p2p/base/port.cc
|
| diff --git a/webrtc/p2p/base/port.cc b/webrtc/p2p/base/port.cc
|
| index 9c4c3622572d6e9e97183daee3c9f56dd0451d5c..bf57cf956815dc1fafe6f1c7cd8d490e82a431d5 100644
|
| --- a/webrtc/p2p/base/port.cc
|
| +++ b/webrtc/p2p/base/port.cc
|
| @@ -252,6 +252,20 @@ void Port::AddAddress(const rtc::SocketAddress& address,
|
| const std::string& type,
|
| uint32_t type_preference,
|
| uint32_t relay_preference,
|
| + bool final) {
|
| + AddAddress(address, base_address, related_address, protocol, relay_protocol,
|
| + tcptype, type, type_preference, relay_preference, "", final);
|
| +}
|
| +
|
| +void Port::AddAddress(const rtc::SocketAddress& address,
|
| + const rtc::SocketAddress& base_address,
|
| + const rtc::SocketAddress& related_address,
|
| + const std::string& protocol,
|
| + const std::string& relay_protocol,
|
| + const std::string& tcptype,
|
| + const std::string& type,
|
| + uint32_t type_preference,
|
| + uint32_t relay_preference,
|
| const std::string& url,
|
| bool final) {
|
| if (protocol == TCP_PROTOCOL_NAME && type == LOCAL_PORT_TYPE) {
|
|
|