Various GUI terminology changes for unified wording and clarity

This commit is contained in:
brunoherbelin
2020-11-03 21:52:03 +01:00
parent ce7f30fa63
commit ec797f8d67
6 changed files with 40 additions and 25 deletions

View File

@@ -78,6 +78,17 @@ glm::ivec2 NetworkStream::resolution() const
return glm::ivec2(config_.width, config_.height);
}
std::string NetworkStream::clientAddress() const
{
return config_.client_address + ":" + std::to_string(config_.port);
}
std::string NetworkStream::serverAddress() const
{
return streamer_.address;
}
void wait_for_stream_(UdpListeningReceiveSocket *receiver)
{
receiver->Run();