| 406 | } |
| 407 | |
| 408 | Socket::~Socket() |
| 409 | { |
| 410 | mImpl->flush(); |
| 411 | mImpl->disconnect(); |
| 412 | mImpl->~SocketImpl(); |
| 413 | PX_FREE(mImpl); |
| 414 | } |
| 415 | |
| 416 | bool Socket::connect(const char* host, uint16_t port, uint32_t timeout) |
| 417 | { |
nothing calls this directly
no test coverage detected