| 114 | } |
| 115 | |
| 116 | bool StreamClient::writeHttpData(const struct iovec *iov, int iovcnt) { |
| 117 | base::MutexLock lock(_mutex); |
| 118 | return (_socketClient == nullptr) ? false : _socketClient->writeData(iov, iovcnt); |
| 119 | } |
| 120 | |
| 121 | int StreamClient::getHttpSocketPort() const { |
| 122 | base::MutexLock lock(_mutex); |
no test coverage detected