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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/protocol/transport.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "remoting/protocol/transport.h"
6
7 #include "base/logging.h"
8
9 namespace remoting {
10 namespace protocol {
11
12 // static
13 std::string TransportRoute::GetTypeString(RouteType type) {
14 switch (type) {
15 case DIRECT:
16 return "direct";
17 case STUN:
18 return "stun";
19 case RELAY:
20 return "relay";
21 }
22 NOTREACHED();
23 return "";
24 }
25
26 TransportRoute::TransportRoute() {
27 }
28
29 TransportRoute::~TransportRoute() {
30 }
31
32 } // namespace protocol
33 } // namespace remoting
OLDNEW
« 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