create a pair of connected sockets NAME socketpair - create a pair of connected sockets LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int socketpair(in…socket system calls NAME socketcall - socket system calls LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/net.h> /* Definition of SYS_* constants */ #include <sy…create an endpoint for communication NAME socket - create an endpoint for communication LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int socket(int do…Linux system calls NAME syscalls - Linux system calls SYNOPSIS Linux system calls. DESCRIPTION The system call is the fundamental interface between an application and the Linux ker…initiate a connection on a socket NAME connect - initiate a connection on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int connect(int sockfd…listen for connections on a socket NAME listen - listen for connections on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int listen(int sockfd…send a message on a socket NAME send, sendto, sendmsg - send a message on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> ssize_t send(int sockf…send a message on a socket NAME send, sendto, sendmsg - send a message on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> ssize_t send(int sockf…send a message on a socket NAME send, sendto, sendmsg - send a message on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> ssize_t send(int sockf…get and set options on sockets NAME getsockopt, setsockopt - get and set options on sockets LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int getsockop…get and set options on sockets NAME getsockopt, setsockopt - get and set options on sockets LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int getsockop…bind a name to a socket NAME bind - bind a name to a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int bind(int sockfd , const struct sockaddr *…get name of connected peer socket NAME getpeername - get name of connected peer socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int getpeername(in…shut down part of a full-duplex connection NAME shutdown - shut down part of a full-duplex connection LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int…receive a message from a socket NAME recv, recvfrom, recvmsg - receive a message from a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> ssize_t re…receive a message from a socket NAME recv, recvfrom, recvmsg - receive a message from a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> ssize_t re…receive a message from a socket NAME recv, recvfrom, recvmsg - receive a message from a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> ssize_t re…accept a connection on a socket NAME accept, accept4 - accept a connection on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int accept(int soc…accept a connection on a socket NAME accept, accept4 - accept a connection on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/socket.h> int accept(int soc…Seccomp user-space notification mechanism NAME seccomp_unotify - Seccomp user-space notification mechanism LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/seccom…