I'm trying to use TServerSocket (in java) without specifying a port. The classic pattern is something like:
ServerSocket sock(); sock.bind(0); int myPort = sock.getLocalPort(); but TServerSocket doesn't appear to have the getLocalPort() functionality. Am I missing something, or does this really not exist?
