I'm passing back 1 from TCP server daemon callback, but the connection to host is dropping.
From SPRU524_pg:
"...the function can choose to close the socket if desired. The return code informs the daemon whether the socket has been closed (0) or is still open (1)."
Since I'm NOT closing the socket, I pass back 1 from my callback, but the connection to host is still dropping. Is this correct behavior? When the callback/daemon task terminates, is the connection terminated with the calling host if I pass back 1?