Currently I use this little snippet of code to get my java server up and allowing connections to it.
ServerSocket serverSocket = new ServerSocket(8000)
Socket socket = serverSocket.accept();
DataInputStream inputFromClient = new DataInputStream(socket.getInputStream());
DataOutputStream outputToClient = new DataOutputStream(socket.getOutputStream());
I was wondering how I can see all connections to my server from the client. Meaning the ip address connected, and everything about the incoming connection.
Thanks