Commit d3c6d143 authored by Juergen Kosel's avatar Juergen Kosel

Add trace output to verify that reducing the tcp send buffer forces TCPSOCKET_INTERRUPTED

Signed-off-by: 's avatarJuergen Kosel <juergen.kosel@softing.com>
parent 2761fcea
...@@ -504,6 +504,12 @@ int Socket_putdatas(int socket, char* buf0, size_t buf0len, int count, char** bu ...@@ -504,6 +504,12 @@ int Socket_putdatas(int socket, char* buf0, size_t buf0len, int count, char** bu
} }
} }
exit: exit:
#if 1
if (rc == TCPSOCKET_INTERRUPTED)
{
Log(LOG_ERROR, -1, "Socket_putdatas: TCPSOCKET_INTERRUPTED");
}
#endif
FUNC_EXIT_RC(rc); FUNC_EXIT_RC(rc);
return rc; return rc;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment