| 178 | // CommunicatingSocket Code |
| 179 | |
| 180 | CommunicatingSocket::CommunicatingSocket(int type, int protocol) |
| 181 | throw(SocketException) : Socket(type, protocol) { |
| 182 | } |
| 183 | |
| 184 | CommunicatingSocket::CommunicatingSocket(int newConnSD) : Socket(newConnSD) { |
| 185 | } |
nothing calls this directly
no outgoing calls
no test coverage detected