shutdown()
initiate a connection on a socket
#include 'sys/type.h'
#include 'sys/socket.h'
int shutdown (int sockfd, int how );

DESCRIPTION :

The shutdown() call causes all or part of a full-duplex connection on the socket associated with sockfd to be shut down. If how is SHUT_RD, further receptions will be disallowed. If how is SHUT_WR, further transmissions will be disallowed. If how is SHUT_RDWR, further receptions and transmissions will be disallowed.

Return Value

On success, zero is returned. On error, -1 is returned, and errno is set appropriately