address in use handling for socket

This commit is contained in:
Robin Müller 2020-12-17 17:10:27 +01:00
parent f8b34bcb53
commit 60d69c95c4
1 changed files with 5 additions and 0 deletions

View File

@ -137,6 +137,11 @@ void TmTcWinUdpBridge::handleBindError() {
<< "WSAStartup(...) call " << "necessary" << std::endl;
break;
}
case(WSAEADDRINUSE): {
sif::warning << "TmTcWinUdpBridge::handleBindError: WSAEADDRINUSE: "
<< "Port is already in use!" << std::endl;
break;
}
default: {
/*
https://docs.microsoft.com/en-us/windows/win32/winsock/