Skip to content
Snippets Groups Projects
Commit 74ac6c21 authored by deuce's avatar deuce
Browse files

Lower log level of re-binding UDP port for sending failure message. The attempt

to bind to a user port will be attempted next and, if this fails, an error will
still be logged.
parent c7216683
No related branches found
No related tags found
No related merge requests found
......@@ -2047,7 +2047,7 @@ void DLLCALL services_thread(void* arg)
result=bind(client_socket, (struct sockaddr *) &addr, sizeof(addr));
if(result==SOCKET_ERROR) {
/* Failed to re-bind to same port number, use user port */
lprintf(LOG_ERR,"%04d %s ERROR %d re-binding socket to port %u failed, "
lprintf(LOG_NOTICE,"%04d %s ERROR %d re-binding socket to port %u failed, "
"using user port"
,client_socket, service[i].protocol, ERROR_VALUE, service[i].port);
addr.sin_port=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment