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

Unified Diff: remoting/protocol/transport.cc

Issue 9727005: Log connection type to syslogs and to the server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | « remoting/protocol/transport.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/transport.cc
diff --git a/remoting/protocol/transport.cc b/remoting/protocol/transport.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e1b9eeeadfe3080ef9e470036056c3a7266191f1
--- /dev/null
+++ b/remoting/protocol/transport.cc
@@ -0,0 +1,33 @@
+// Copyright (c) 2012 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.
+
+#include "remoting/protocol/transport.h"
+
+#include "base/logging.h"
+
+namespace remoting {
+namespace protocol {
+
+// static
+std::string TransportRoute::GetTypeString(RouteType type) {
+ switch (type) {
+ case DIRECT:
+ return "direct";
+ case STUN:
+ return "stun";
+ case RELAY:
+ return "relay";
+ }
+ NOTREACHED();
+ return "";
+}
+
+TransportRoute::TransportRoute() {
+}
+
+TransportRoute::~TransportRoute() {
+}
+
+} // namespace protocol
+} // namespace remoting
« no previous file with comments | « remoting/protocol/transport.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698