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…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…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…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…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 *…perform a command on an extended BPF map or program NAME bpf - perform a command on an extended BPF map or program SYNOPSIS #include <linux/bpf.h> int bpf(int cmd , union bpf_attr …Seccomp user-space notification mechanism NAME seccomp_unotify - Seccomp user-space notification mechanism LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/seccom…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…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…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…receive multiple messages on a socket NAME recvmmsg - receive multiple messages on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #define _GNU_SOURCE /* See feature_te…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…send multiple messages on a socket NAME sendmmsg - send multiple messages on a socket LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #define _GNU_SOURCE /* See feature_test_mac…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…