| 234 | } |
| 235 | |
| 236 | bool NetClient::is_disconnected() const { |
| 237 | return isDisconnected; |
| 238 | } |
| 239 | |
| 240 | void NetClient::send_str_as_bytes(std::shared_ptr<rtc::DataChannel> channel, const std::string& str) { |
| 241 | channel->send((const std::byte*)str.c_str(), str.size()); |
no outgoing calls
no test coverage detected