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

Unified Diff: remoting/protocol/ice_config.h

Issue 1694613002: Add IceConfig and IceConfigRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@url_request
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/protocol/ice_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/ice_config.h
diff --git a/remoting/protocol/ice_config.h b/remoting/protocol/ice_config.h
new file mode 100644
index 0000000000000000000000000000000000000000..6daff0c2c36d9f1f139ce18f85ea845b74911a6f
--- /dev/null
+++ b/remoting/protocol/ice_config.h
@@ -0,0 +1,40 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_PROTOCOL_ICE_CONFIG_H_
+#define REMOTING_PROTOCOL_ICE_CONFIG_H_
+
+#include <string>
+#include <vector>
+
+#include "base/time/time.h"
+#include "third_party/webrtc/base/socketaddress.h"
+#include "third_party/webrtc/p2p/base/portallocator.h"
+
+namespace remoting {
+namespace protocol {
+
+struct IceConfig {
+ IceConfig();
+ ~IceConfig();
+
+ bool is_null() const { return expiration_time.is_null(); }
+
+ // Time when the config will stop being valid and need to be refreshed.
+ base::Time expiration_time;
+
+ std::vector<rtc::SocketAddress> stun_servers;
+
+ // Legacy GTURN relay servers.
+ std::vector<std::string> relay_servers;
+ std::string relay_token;
+
+ // Standard TURN servers
+ std::vector<cricket::RelayServerConfig> turn_servers;
+};
+
+} // namespace protocol
+} // namespace remoting
+
+#endif // REMOTING_PROTOCOL_ICE_CONFIG_H_
« no previous file with comments | « no previous file | remoting/protocol/ice_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698