added bind call error string

This commit is contained in:
Jakob Meier 2021-10-08 13:24:51 +02:00 committed by Robin Mueller
parent 198fdbba62
commit 6ad7f51297
1 changed files with 3 additions and 0 deletions

View File

@ -21,6 +21,9 @@ void tcpip::determineErrorStrings(Protocol protocol, ErrorSources errorSrc, std:
if(errorSrc == ErrorSources::SETSOCKOPT_CALL) {
srcString = "setsockopt call";
}
if(errorSrc == ErrorSources::BIND_CALL) {
srcString = "bind call";
}
else if(errorSrc == ErrorSources::SOCKET_CALL) {
srcString = "socket call";
}