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

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

Issue 1586063002: Revert of Connect TurnPort and TCPPort to AsyncPacketSocket::SignalSentPacket. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 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/p2ptransportchannel.cc ('k') | webrtc/p2p/base/port.cc » ('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 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 std::string* local_username, 273 std::string* local_username,
274 std::string* remote_username) const; 274 std::string* remote_username) const;
275 void CreateStunUsername(const std::string& remote_username, 275 void CreateStunUsername(const std::string& remote_username,
276 std::string* stun_username_attr_str) const; 276 std::string* stun_username_attr_str) const;
277 277
278 bool MaybeIceRoleConflict(const rtc::SocketAddress& addr, 278 bool MaybeIceRoleConflict(const rtc::SocketAddress& addr,
279 IceMessage* stun_msg, 279 IceMessage* stun_msg,
280 const std::string& remote_ufrag); 280 const std::string& remote_ufrag);
281 281
282 // Called when a packet has been sent to the socket. 282 // Called when a packet has been sent to the socket.
283 // This is made pure virtual to notify subclasses of Port that they MUST 283 void OnSentPacket(const rtc::SentPacket& sent_packet);
284 // listen to AsyncPacketSocket::SignalSentPacket and then call
285 // PortInterface::OnSentPacket.
286 virtual void OnSentPacket(rtc::AsyncPacketSocket* socket,
287 const rtc::SentPacket& sent_packet) = 0;
288 284
289 // Called when the socket is currently able to send. 285 // Called when the socket is currently able to send.
290 void OnReadyToSend(); 286 void OnReadyToSend();
291 287
292 // Called when the Connection discovers a local peer reflexive candidate. 288 // Called when the Connection discovers a local peer reflexive candidate.
293 // Returns the index of the new local candidate. 289 // Returns the index of the new local candidate.
294 size_t AddPrflxCandidate(const Candidate& local); 290 size_t AddPrflxCandidate(const Candidate& local);
295 291
296 void set_candidate_filter(uint32_t candidate_filter) { 292 void set_candidate_filter(uint32_t candidate_filter) {
297 candidate_filter_ = candidate_filter; 293 candidate_filter_ = candidate_filter;
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 const rtc::PacketOptions& options) override; 649 const rtc::PacketOptions& options) override;
654 int GetError() override { return error_; } 650 int GetError() override { return error_; }
655 651
656 private: 652 private:
657 int error_ = 0; 653 int error_ = 0;
658 }; 654 };
659 655
660 } // namespace cricket 656 } // namespace cricket
661 657
662 #endif // WEBRTC_P2P_BASE_PORT_H_ 658 #endif // WEBRTC_P2P_BASE_PORT_H_
OLDNEW
« no previous file with comments | « webrtc/p2p/base/p2ptransportchannel.cc ('k') | webrtc/p2p/base/port.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698