| Index: webrtc/p2p/base/port.h
|
| diff --git a/webrtc/p2p/base/port.h b/webrtc/p2p/base/port.h
|
| index c850d31edc53ab68c89716aaaf3daa37a5f77e4d..704fbb7a65416d42fab37cd8858a43fcdcc0292d 100644
|
| --- a/webrtc/p2p/base/port.h
|
| +++ b/webrtc/p2p/base/port.h
|
| @@ -562,6 +562,8 @@ class Connection : public CandidatePairInterface,
|
|
|
| State state() const { return state_; }
|
|
|
| + int num_pings_sent() const { return num_pings_sent_; }
|
| +
|
| IceMode remote_ice_mode() const { return remote_ice_mode_; }
|
|
|
| uint32_t ComputeNetworkCost() const;
|
| @@ -648,6 +650,7 @@ class Connection : public CandidatePairInterface,
|
| // Time duration to switch from receiving to not receiving.
|
| int receiving_timeout_;
|
| int64_t time_created_ms_;
|
| + int num_pings_sent_ = 0;
|
|
|
| friend class Port;
|
| friend class ConnectionRequest;
|
|
|