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

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

Issue 2093623004: Add config to prune TURN ports (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add all tests and fix a bug to set port type 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
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 void RememberRemoteCandidate(const Candidate& remote_candidate, 253 void RememberRemoteCandidate(const Candidate& remote_candidate,
254 PortInterface* origin_port); 254 PortInterface* origin_port);
255 bool IsPingable(Connection* conn, int64_t now); 255 bool IsPingable(Connection* conn, int64_t now);
256 bool IsSelectedConnectionPingable(int64_t now); 256 bool IsSelectedConnectionPingable(int64_t now);
257 int CalculateActiveWritablePingInterval(Connection* conn, int64_t now); 257 int CalculateActiveWritablePingInterval(Connection* conn, int64_t now);
258 void PingConnection(Connection* conn); 258 void PingConnection(Connection* conn);
259 void AddAllocatorSession(std::unique_ptr<PortAllocatorSession> session); 259 void AddAllocatorSession(std::unique_ptr<PortAllocatorSession> session);
260 void AddConnection(Connection* connection); 260 void AddConnection(Connection* connection);
261 261
262 void OnPortReady(PortAllocatorSession *session, PortInterface* port); 262 void OnPortReady(PortAllocatorSession *session, PortInterface* port);
263 void OnPortDeprecated(PortAllocatorSession* session, PortInterface* port);
264 void RemovePort(PortInterface* port);
263 void OnCandidatesReady(PortAllocatorSession *session, 265 void OnCandidatesReady(PortAllocatorSession *session,
264 const std::vector<Candidate>& candidates); 266 const std::vector<Candidate>& candidates);
265 void OnCandidatesAllocationDone(PortAllocatorSession* session); 267 void OnCandidatesAllocationDone(PortAllocatorSession* session);
266 void OnUnknownAddress(PortInterface* port, 268 void OnUnknownAddress(PortInterface* port,
267 const rtc::SocketAddress& addr, 269 const rtc::SocketAddress& addr,
268 ProtocolType proto, 270 ProtocolType proto,
269 IceMessage* stun_msg, 271 IceMessage* stun_msg,
270 const std::string& remote_username, 272 const std::string& remote_username,
271 bool port_muxed); 273 bool port_muxed);
272 void OnPortDestroyed(PortInterface* port); 274 void OnPortDestroyed(PortInterface* port);
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 TransportChannelState state_ = TransportChannelState::STATE_INIT; 368 TransportChannelState state_ = TransportChannelState::STATE_INIT;
367 IceConfig config_; 369 IceConfig config_;
368 int last_sent_packet_id_ = -1; // -1 indicates no packet was sent before. 370 int last_sent_packet_id_ = -1; // -1 indicates no packet was sent before.
369 371
370 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel); 372 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel);
371 }; 373 };
372 374
373 } // namespace cricket 375 } // namespace cricket
374 376
375 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_ 377 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698