Construct a TCP socket for use with a server, accepting connections on the specified port on any interface.
Definition at line 255 of file PracticalSocket.cpp. 00256 : Socket(SOCK_STREAM, IPPROTO_TCP) { 00257 setLocalPort(localPort); 00258 setListen(queueLen); 00259 }
|