Taken from another question:
new ServerSocket(9090, 0, InetAddress.getByName(null));
InetAddress.getByName(null) points to the loopback address (127.0.0.1)
And here’s the Javadoc where it says that
Taken from another question:
new ServerSocket(9090, 0, InetAddress.getByName(null));
InetAddress.getByName(null) points to the loopback address (127.0.0.1)
And here’s the Javadoc where it says that