if a socket is set non-blocking,
but at a certain moment, I want to use send or recv with this socket in blocking mode,
can I temporarily sent it as blocking mode and then recover to non-blocking.
if so, how about the other way around? use send or recv temporarily in non-blocking mode if the socket is in blocking mode?
thanks!