Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: webrtc/p2p/base/turnport.h

Issue 2111663003: Revert of Add config to prune TURN ports (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/p2p/base/tcpport.h ('k') | webrtc/p2p/client/basicportallocator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 const ProtocolAddress& server_address() const { return server_address_; } 78 const ProtocolAddress& server_address() const { return server_address_; }
79 // Returns an empty address if the local address has not been assigned. 79 // Returns an empty address if the local address has not been assigned.
80 rtc::SocketAddress GetLocalAddress() const; 80 rtc::SocketAddress GetLocalAddress() const;
81 81
82 bool ready() const { return state_ == STATE_READY; } 82 bool ready() const { return state_ == STATE_READY; }
83 bool connected() const { 83 bool connected() const {
84 return state_ == STATE_READY || state_ == STATE_CONNECTED; 84 return state_ == STATE_READY || state_ == STATE_CONNECTED;
85 } 85 }
86 const RelayCredentials& credentials() const { return credentials_; } 86 const RelayCredentials& credentials() const { return credentials_; }
87 87
88 virtual ProtocolType GetProtocol() const { return server_address_.proto; }
89
90 virtual void PrepareAddress(); 88 virtual void PrepareAddress();
91 virtual Connection* CreateConnection( 89 virtual Connection* CreateConnection(
92 const Candidate& c, PortInterface::CandidateOrigin origin); 90 const Candidate& c, PortInterface::CandidateOrigin origin);
93 virtual int SendTo(const void* data, size_t size, 91 virtual int SendTo(const void* data, size_t size,
94 const rtc::SocketAddress& addr, 92 const rtc::SocketAddress& addr,
95 const rtc::PacketOptions& options, 93 const rtc::PacketOptions& options,
96 bool payload); 94 bool payload);
97 virtual int SetOption(rtc::Socket::Option opt, int value); 95 virtual int SetOption(rtc::Socket::Option opt, int value);
98 virtual int GetOption(rtc::Socket::Option opt, int* value); 96 virtual int GetOption(rtc::Socket::Option opt, int* value);
99 virtual int GetError(); 97 virtual int GetError();
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 friend class TurnEntry; 282 friend class TurnEntry;
285 friend class TurnAllocateRequest; 283 friend class TurnAllocateRequest;
286 friend class TurnRefreshRequest; 284 friend class TurnRefreshRequest;
287 friend class TurnCreatePermissionRequest; 285 friend class TurnCreatePermissionRequest;
288 friend class TurnChannelBindRequest; 286 friend class TurnChannelBindRequest;
289 }; 287 };
290 288
291 } // namespace cricket 289 } // namespace cricket
292 290
293 #endif // WEBRTC_P2P_BASE_TURNPORT_H_ 291 #endif // WEBRTC_P2P_BASE_TURNPORT_H_
OLDNEW
« no previous file with comments | « webrtc/p2p/base/tcpport.h ('k') | webrtc/p2p/client/basicportallocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698