Shut down part of a full-duplex connection
#include <sys/socket.h> int shutdown( int s, int how );
If how is: | The TCP/IP manager won't allow: |
---|---|
SHUT_RD | Further receives |
SHUT_WR | Further sends |
SHUT_RDWR | Further sends and receives |
The shutdown() call shuts down all or part of a full-duplex connection on the socket associated with s.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |