Skip to content

Instantly share code, notes, and snippets.

@KrishnB
Created August 17, 2018 06:25
Show Gist options
  • Save KrishnB/8c87429e714bd0811c3d2fceb5832190 to your computer and use it in GitHub Desktop.
Save KrishnB/8c87429e714bd0811c3d2fceb5832190 to your computer and use it in GitHub Desktop.
public Integer aRandomOpenPortOnAllLocalInterfaces() {
try (
ServerSocket socket = new ServerSocket(0);
) {
return socket.getLocalPort();
} catch (IOException e) {
throw new RuntimeException("no open ports found for bootstrap");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment