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…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…unmount filesystem NAME umount, umount2 - unmount filesystem LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/mount.h> int umount(const char * target ); int umount2…unmount filesystem NAME umount, umount2 - unmount filesystem LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/mount.h> int umount(const char * target ); int umount2…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…create an anonymous file NAME memfd_create - create an anonymous file LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #define _GNU_SOURCE /* See feature_test_macros(7) */ #inclu…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 *…mount filesystem NAME mount - mount filesystem LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/mount.h> int mount(const char * source , const char * target , const…control interface for an epoll file descriptor NAME epoll_ctl - control interface for an epoll file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/epol…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…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…change properties of a mount or mount tree NAME mount_setattr - change properties of a mount or mount tree LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/fcntl.…wait for some event on a file descriptor NAME poll, ppoll - wait for some event on a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <poll.h> int poll(s…wait for some event on a file descriptor NAME poll, ppoll - wait for some event on a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <poll.h> int poll(s…write to a file descriptor NAME write - write to a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> ssize_t write(int fd , const void buf [. c…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…