| 237 | // TCPSocket Code |
| 238 | |
| 239 | TCPSocket::TCPSocket() |
| 240 | throw(SocketException) : CommunicatingSocket(SOCK_STREAM, |
| 241 | IPPROTO_TCP) { |
| 242 | } |
| 243 | |
| 244 | TCPSocket::TCPSocket(const string &foreignAddress, unsigned short foreignPort) |
| 245 | throw(SocketException) : CommunicatingSocket(SOCK_STREAM, IPPROTO_TCP) { |
nothing calls this directly
no outgoing calls
no test coverage detected