Construct a TCP socket for use with a server, accepting connections on the specified port on the interface specified by the given address.
Definition at line 261 of file PracticalSocket.cpp. 00263 : Socket(SOCK_STREAM, IPPROTO_TCP) { 00264 setLocalAddressAndPort(localAddress, localPort); 00265 setListen(queueLen); 00266 }
|