| 252 | // TCPServerSocket Code |
| 253 | |
| 254 | TCPServerSocket::TCPServerSocket(unsigned short localPort, int queueLen) |
| 255 | throw(SocketException) : Socket(SOCK_STREAM, IPPROTO_TCP) { |
| 256 | setLocalPort(localPort); |
| 257 | setListen(queueLen); |
| 258 | } |
| 259 | |
| 260 | TCPServerSocket::TCPServerSocket(const string &localAddress, |
| 261 | unsigned short localPort, int queueLen) |
nothing calls this directly
no outgoing calls
no test coverage detected