Alex Blundell
Alex Blundell

Reputation: 2104

ServerSocket + client Socket - how do I get IP address of client?

I have a ServerSocket instance which is listening for connections. When a client connects to it, I would like to get the IP of the connected socket, but can't seem to find the right method to do so.

public void start() {
    listenSocket = new ServerSocket(port);
    connectionSocket = listenSocket.accept();
}

I've tried calling the following with no luck:

connectionSocket.getLocalAddress();
connectionSocket.getInetAddress.getHostAddress();
listenSocket.getLocalSocketAddress();

None of the above return the correct IP. They either return "/0:0:0:0:0:0:0:1%0" or "0.0.0.0".

What am I doing wrong?

Upvotes: 6

Views: 20592

Answers (1)

Shmil The Cat
Shmil The Cat

Reputation: 4669

connectionSocket.getRemoteSocketAddress();

Upvotes: 14

Related Questions