Creates a socket compatible with the given address. It does not actually connect or bind, nor store the address. You will want to pass it again to those functions:
auto socket = new Socket(address, Socket.Type.Stream); socket.connect(address).waitForCompletion();
See Implementation
Creates a socket compatible with the given address. It does not actually connect or bind, nor store the address. You will want to pass it again to those functions: