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

Unified Diff: remoting/host/ipc_host_event_logger.cc

Issue 1565303002: Change IPEndpoint::address() to return a net::IPAddress (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase for ChromeOS Created 4 years, 11 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 | « net/tools/quic/quic_time_wait_list_manager_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/ipc_host_event_logger.cc
diff --git a/remoting/host/ipc_host_event_logger.cc b/remoting/host/ipc_host_event_logger.cc
index f012d410a9d83bab4d986d4836ffd81dafa9a430..e5c3dad1d97d15b840b914525a44d1ea2ffe7648 100644
--- a/remoting/host/ipc_host_event_logger.cc
+++ b/remoting/host/ipc_host_event_logger.cc
@@ -60,9 +60,9 @@ void IpcHostEventLogger::OnClientRouteChange(
SerializedTransportRoute serialized_route;
serialized_route.type = route.type;
- serialized_route.remote_address = route.remote_address.address();
+ serialized_route.remote_address = route.remote_address.address().bytes();
serialized_route.remote_port = route.remote_address.port();
- serialized_route.local_address = route.local_address.address();
+ serialized_route.local_address = route.local_address.address().bytes();
serialized_route.local_port = route.local_address.port();
daemon_channel_->Send(new ChromotingNetworkDaemonMsg_ClientRouteChange(
« no previous file with comments | « net/tools/quic/quic_time_wait_list_manager_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698