Index: webrtc/p2p/base/p2ptransportchannel.h |
diff --git a/webrtc/p2p/base/p2ptransportchannel.h b/webrtc/p2p/base/p2ptransportchannel.h |
index 692b09843bf7dbf470cc41a3972bd7a8f8fe03cf..6f2798ed4475e8176136a099a22506a7ea64cb0d 100644 |
--- a/webrtc/p2p/base/p2ptransportchannel.h |
+++ b/webrtc/p2p/base/p2ptransportchannel.h |
@@ -403,6 +403,11 @@ class P2PTransportChannel : public TransportChannelImpl, |
IceConfig config_; |
int last_sent_packet_id_ = -1; // -1 indicates no packet was sent before. |
bool started_pinging_ = false; |
+ bool peer_supports_renomination_ = false; |
Taylor Brandstetter
2016/07/22 17:36:00
Where is this variable set?
honghaiz3
2016/07/22 22:50:11
That will be in a subsequent CL and from signaling
|
+ int nomination_value_ = 0; |
Taylor Brandstetter
2016/07/22 17:36:00
Could add a comment explaining that this is the va
honghaiz3
2016/07/22 22:50:11
Done.
|
+ // Used in the controlling side to remember the last connection we have |
+ // nominated. |
+ Connection* last_nominating_connection_ = nullptr; |
RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel); |
}; |