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

Side by Side Diff: remoting/protocol/connection_to_client.cc

Issue 9316052: Log IP/port of host as well as client in Me2Me host (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/protocol/connection_to_client.h" 5 #include "remoting/protocol/connection_to_client.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/message_loop_proxy.h" 9 #include "base/message_loop_proxy.h"
10 #include "google/protobuf/message.h" 10 #include "google/protobuf/message.h"
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 handler_->OnConnectionClosed(this); 128 handler_->OnConnectionClosed(this);
129 break; 129 break;
130 130
131 case Session::FAILED: 131 case Session::FAILED:
132 CloseOnError(); 132 CloseOnError();
133 break; 133 break;
134 } 134 }
135 } 135 }
136 136
137 void ConnectionToClient::OnSessionRouteChange( 137 void ConnectionToClient::OnSessionRouteChange(
138 const std::string& channel_name, const net::IPEndPoint& end_point) { 138 const std::string& channel_name, const net::IPEndPoint& end_point,
Sergey Ulanov 2012/02/02 01:10:23 nit: s/end_point/remote_end_point/ nit: move the s
Lambros 2012/02/02 01:48:12 Done.
139 handler_->OnClientIpAddress(this, channel_name, end_point); 139 const net::IPEndPoint& local_end_point) {
140 handler_->OnClientIpAddress(this, channel_name, end_point, local_end_point);
140 } 141 }
141 142
142 void ConnectionToClient::OnChannelInitialized(bool successful) { 143 void ConnectionToClient::OnChannelInitialized(bool successful) {
143 DCHECK(CalledOnValidThread()); 144 DCHECK(CalledOnValidThread());
144 145
145 if (!successful) { 146 if (!successful) {
146 LOG(ERROR) << "Failed to connect a channel"; 147 LOG(ERROR) << "Failed to connect a channel";
147 CloseOnError(); 148 CloseOnError();
148 return; 149 return;
149 } 150 }
(...skipping 17 matching lines...) Expand all
167 } 168 }
168 169
169 void ConnectionToClient::CloseChannels() { 170 void ConnectionToClient::CloseChannels() {
170 control_dispatcher_.reset(); 171 control_dispatcher_.reset();
171 event_dispatcher_.reset(); 172 event_dispatcher_.reset();
172 video_writer_.reset(); 173 video_writer_.reset();
173 } 174 }
174 175
175 } // namespace protocol 176 } // namespace protocol
176 } // namespace remoting 177 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698