... on Linux. NAME shutdown - shut down socket send and receive operations SYNOPSIS #include <sys/socket.h> int shutdown(intfP socket , int how fB); fP ...
Man page - Jeremy - Apr 25 2008 - 13:52 - 0 comments - 0 attachments
... FUTURE DIRECTIONS , SEE ALSO , COPYRIGHT "SOCKET" 3P 2003 "IEEE/The Open Group" "POSIX Programmer's Manual" ... may not be implemented on Linux. NAME socket - create an endpoint for communication SYNOPSIS ...
Man page - Jeremy - Apr 25 2008 - 13:52 - 0 comments - 0 attachments
... NAME listen - listen for connections on a socket SYNOPSIS "#include <sys/types.h>" " /* See NOTES */" #include <sys/socket.h> "int listen(int " sockfd ", int " backlog ); ...
Man page - Jeremy - Apr 25 2008 - 13:52 - 0 comments - 0 attachments
... on Linux. NAME listen - listen for socket connections and limit the queue of incoming connections SYNOPSIS #include <sys/socket.h> int listen(intfP socket , int backlog fB); fP DESCRIPTION The ...
Man page - Jeremy - Apr 25 2008 - 13:51 - 0 comments - 0 attachments
... on Linux. NAME bind - bind a name to a socket SYNOPSIS #include <sys/socket.h> int bind(intfP socket , const struct sockaddr * ...
Man page - Jeremy - Apr 25 2008 - 13:52 - 0 comments - 0 attachments
... on Linux. NAME getsockname - get the socket name SYNOPSIS #include <sys/socket.h> int getsockname(intfP socket , struct sockaddr ...
Man page - Jeremy - Apr 25 2008 - 13:51 - 0 comments - 0 attachments
... NAME accept - accept a new connection on a socket SYNOPSIS #include <sys/socket.h> int accept(intfP socket , struct sockaddr *restrict ...
Man page - Jeremy - Apr 25 2008 - 13:52 - 0 comments - 0 attachments
... NAME getpeername - get the name of the peer socket SYNOPSIS #include <sys/socket.h> int getpeername(intfP socket , struct sockaddr ...
Man page - Jeremy - Apr 25 2008 - 13:52 - 0 comments - 0 attachments
... NAME connect - initiate a connection on a socket SYNOPSIS "#include <sys/types.h>" " /* See NOTES */" #include <sys/socket.h> "int connect(int " sockfd ", const struct sockaddr *" ...
Man page - Jeremy - Apr 25 2008 - 13:52 - 0 comments - 0 attachments
... sockets SYNOPSIS #include <sys/socket.h> int socketpair(intfP domain , int type , int protocol fB, intfP socket_vector fB[2]); fP DESCRIPTION The socketpair () ...
Man page - Jeremy - Apr 25 2008 - 13:51 - 0 comments - 0 attachments