| Index: remoting/host/host_event_logger.cc
|
| diff --git a/remoting/host/host_event_logger.cc b/remoting/host/host_event_logger.cc
|
| index 4947d06fa591fc3c648bddb1cbd609026d40254a..9cd62582b326a9d72836e22483a55021845176a2 100644
|
| --- a/remoting/host/host_event_logger.cc
|
| +++ b/remoting/host/host_event_logger.cc
|
| @@ -33,10 +33,14 @@ void HostEventLogger::OnAccessDenied(const std::string& jid) {
|
| Log("Access denied for client: " + jid);
|
| }
|
|
|
| -void HostEventLogger::OnClientIpAddress(const std::string& jid,
|
| - const std::string& channel_name,
|
| - const net::IPEndPoint& end_point) {
|
| - Log("Channel IP for client: " + jid + " ip='" + end_point.ToString() +
|
| +void HostEventLogger::OnClientRouteChange(
|
| + const std::string& jid,
|
| + const std::string& channel_name,
|
| + const net::IPEndPoint& remote_end_point,
|
| + const net::IPEndPoint& local_end_point) {
|
| + Log("Channel IP for client: " + jid +
|
| + " ip='" + remote_end_point.ToString() +
|
| + "' host_ip='" + local_end_point.ToString() +
|
| "' channel='" + channel_name + "'");
|
| }
|
|
|
|
|