| 7240 | } |
| 7241 | |
| 7242 | StreamingSocket::StreamingSocket() |
| 7243 | : portNumber (0), |
| 7244 | handle (-1), |
| 7245 | connected (false), |
| 7246 | isListener (false) |
| 7247 | { |
| 7248 | SocketHelpers::initSockets(); |
| 7249 | } |
| 7250 | |
| 7251 | StreamingSocket::StreamingSocket (const String& hostName_, |
| 7252 | const int portNumber_, |
nothing calls this directly
no test coverage detected