| 224 | } |
| 225 | |
| 226 | size_t TCPSocket::write_some(const void *val, size_t count) { |
| 227 | qint64 res = (impl && ready) ? impl->write(reinterpret_cast<const char *>(val), count) : 0; |
| 228 | return res; |
| 229 | } |
| 230 | |
| 231 | void TCPSocket::shutdown_both() { |
| 232 | if (impl) |
nothing calls this directly
no test coverage detected