Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshathkumar Shetty committed Apr 13, 2014
1 parent cf2b5c8 commit a36fdd6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void gotConnected(ClientHandler handler)
logger.log(Level.FINEST, "SocketBasedHost: {0}", host);

Data data = (Data) handler.getClientData();
data.setRemoteHost(host.getInetSocketAddress().getAddress().getHostAddress());
data.setRemoteHost(host.getInetAddress().getHostAddress());
data.setRemotePort(host.getInetSocketAddress().getPort());
data.setInterfaceServer(interfaceServer);

Expand Down

0 comments on commit a36fdd6

Please sign in to comment.