| 119 | } |
| 120 | |
| 121 | int StreamClient::getHttpSocketPort() const { |
| 122 | base::MutexLock lock(_mutex); |
| 123 | return (_socketClient == nullptr) ? 0 : _socketClient->getSocketPort(); |
| 124 | } |
| 125 | |
| 126 | int StreamClient::getHttpNetworkSendBufferSize() const { |
| 127 | base::MutexLock lock(_mutex); |
no test coverage detected