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

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

Issue 2719523002: RTCIceCandidatePairStats.[total/current]RoundTripTime collected. (Closed)
Patch Set: Created 3 years, 10 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
11 #ifndef WEBRTC_P2P_BASE_PORT_H_ 11 #ifndef WEBRTC_P2P_BASE_PORT_H_
12 #define WEBRTC_P2P_BASE_PORT_H_ 12 #define WEBRTC_P2P_BASE_PORT_H_
13 13
14 #include <map> 14 #include <map>
15 #include <memory> 15 #include <memory>
16 #include <set> 16 #include <set>
17 #include <string> 17 #include <string>
18 #include <vector> 18 #include <vector>
19 19
20 #include "webrtc/p2p/base/candidate.h" 20 #include "webrtc/p2p/base/candidate.h"
21 #include "webrtc/p2p/base/candidatepairinterface.h" 21 #include "webrtc/p2p/base/candidatepairinterface.h"
22 #include "webrtc/p2p/base/jseptransport.h" 22 #include "webrtc/p2p/base/jseptransport.h"
23 #include "webrtc/p2p/base/packetsocketfactory.h" 23 #include "webrtc/p2p/base/packetsocketfactory.h"
24 #include "webrtc/p2p/base/portinterface.h" 24 #include "webrtc/p2p/base/portinterface.h"
25 #include "webrtc/p2p/base/stun.h" 25 #include "webrtc/p2p/base/stun.h"
26 #include "webrtc/p2p/base/stunrequest.h" 26 #include "webrtc/p2p/base/stunrequest.h"
27 #include "webrtc/base/asyncpacketsocket.h" 27 #include "webrtc/base/asyncpacketsocket.h"
28 #include "webrtc/base/checks.h" 28 #include "webrtc/base/checks.h"
29 #include "webrtc/base/network.h" 29 #include "webrtc/base/network.h"
30 #include "webrtc/base/optional.h"
30 #include "webrtc/base/proxyinfo.h" 31 #include "webrtc/base/proxyinfo.h"
31 #include "webrtc/base/ratetracker.h" 32 #include "webrtc/base/ratetracker.h"
32 #include "webrtc/base/sigslot.h" 33 #include "webrtc/base/sigslot.h"
33 #include "webrtc/base/socketaddress.h" 34 #include "webrtc/base/socketaddress.h"
34 #include "webrtc/base/thread.h" 35 #include "webrtc/base/thread.h"
35 36
36 namespace cricket { 37 namespace cricket {
37 38
38 class Connection; 39 class Connection;
39 class ConnectionRequest; 40 class ConnectionRequest;
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 uint32_t acked_nomination_ = 0; 693 uint32_t acked_nomination_ = 0;
693 // Used by the controlled side to remember the nomination value received from 694 // Used by the controlled side to remember the nomination value received from
694 // the controlling side. When the peer does not support ICE re-nomination, 695 // the controlling side. When the peer does not support ICE re-nomination,
695 // its value will be 1 if the connection has been nominated. 696 // its value will be 1 if the connection has been nominated.
696 uint32_t remote_nomination_ = 0; 697 uint32_t remote_nomination_ = 0;
697 698
698 IceMode remote_ice_mode_; 699 IceMode remote_ice_mode_;
699 StunRequestManager requests_; 700 StunRequestManager requests_;
700 int rtt_; 701 int rtt_;
701 int rtt_samples_ = 0; 702 int rtt_samples_ = 0;
703 // https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatepairstats-totalround triptime
704 rtc::Optional<uint64_t> total_round_trip_time_ms_;
Taylor Brandstetter 2017/02/25 01:31:29 Doesn't need to be rtc::Optional, since 0 is a sen
pthatcher1 2017/02/27 18:07:21 I wish spec were clear what is should be. But I a
hbos 2017/02/27 19:51:34 I agree 0 makes the most sense, done.
705 // https://w3c.github.io/webrtc-stats/#dom-rtcicecandidatepairstats-currentrou ndtriptime
706 rtc::Optional<uint32_t> current_round_trip_time_ms_;
702 int64_t last_ping_sent_; // last time we sent a ping to the other side 707 int64_t last_ping_sent_; // last time we sent a ping to the other side
703 int64_t last_ping_received_; // last time we received a ping from the other 708 int64_t last_ping_received_; // last time we received a ping from the other
704 // side 709 // side
705 int64_t last_data_received_; 710 int64_t last_data_received_;
706 int64_t last_ping_response_received_; 711 int64_t last_ping_response_received_;
707 int64_t receiving_unchanged_since_ = 0; 712 int64_t receiving_unchanged_since_ = 0;
708 std::vector<SentPing> pings_since_last_response_; 713 std::vector<SentPing> pings_since_last_response_;
709 714
710 bool reported_; 715 bool reported_;
711 IceCandidatePairState state_; 716 IceCandidatePairState state_;
(...skipping 16 matching lines...) Expand all
728 const rtc::PacketOptions& options) override; 733 const rtc::PacketOptions& options) override;
729 int GetError() override { return error_; } 734 int GetError() override { return error_; }
730 735
731 private: 736 private:
732 int error_ = 0; 737 int error_ = 0;
733 }; 738 };
734 739
735 } // namespace cricket 740 } // namespace cricket
736 741
737 #endif // WEBRTC_P2P_BASE_PORT_H_ 742 #endif // WEBRTC_P2P_BASE_PORT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698