socket address families (domains) NAME address_families - socket address families (domains) SYNOPSIS #include <sys/types.h> /* See NOTES */ #incl...Linux VSOCK address family NAME vsock - Linux VSOCK address family SYNOPSIS #include <sys/socket.h> #include <linux/vm_sockets.h> stream_socket = socket(AF_VSOCK, SOCK_STREAM, 0); …Linux socket interface NAME socket - Linux socket interface SYNOPSIS #include <sys/socket.h> sockfd = socket(int socket_family , int socket_type , int protocol ); DESCRIPTION This …obtaining information about sockets NAME sock_diag - obtaining information about sockets SYNOPSIS #include <sys/socket.h> #include <linux/sock_diag.h> #include <linux/unix_diag.h> …communication between kernel and user space (AF_NETLINK) NAME netlink - communication between kernel and user space (AF_NETLINK) SYNOPSIS #include <asm/types.h> #include <sys/socke…remove an access method NAME DROP_ACCESS_METHOD - remove an access method SYNOPSIS DROP ACCESS METHOD [ IF EXISTS ] name [ CASCADE | RESTRICT ] DESCRIPTION DROP ACCESS METHOD remov…define a new operator family NAME CREATE_OPERATOR_FAMILY - define a new operator family SYNOPSIS CREATE OPERATOR FAMILY name USING index_method DESCRIPTION CREATE OPERATOR FAMILY c…overview of system data types NAME system_data_types - overview of system data types DESCRIPTION siginfo_t Include : <signal.h> . Alternatively, <sys/wait.h> . typedef struct { int…change the definition of an extension NAME ALTER_EXTENSION - change the definition of an extension SYNOPSIS ALTER EXTENSION name UPDATE [ TO new_version ] ALTER EXTENSION name SET …define a new operator NAME CREATE_OPERATOR - define a new operator SYNOPSIS CREATE OPERATOR name ( {FUNCTION|PROCEDURE} = function_name [, LEFTARG = left_type ] [, RIGHTARG = right…define a new operator class NAME CREATE_OPERATOR_CLASS - define a new operator class SYNOPSIS CREATE OPERATOR CLASS name [ DEFAULT ] FOR TYPE data_type USING index_method [ FAMILY …Linux routing socket NAME rtnetlink - Linux routing socket SYNOPSIS #include <asm/types.h> #include <linux/if_link.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> #inclu…Linux IPv6 protocol implementation NAME ipv6 - Linux IPv6 protocol implementation SYNOPSIS #include <sys/socket.h> #include <netinet/in.h> tcp6_socket = socket(AF_INET6, SOCK_STREA…low-level access to Linux network devices NAME netdevice - low-level access to Linux network devices SYNOPSIS #include <sys/ioctl.h> #include <net/if.h> DESCRIPTION This man page d…Linux IPv4 protocol implementation NAME ip - Linux IPv4 protocol implementation SYNOPSIS #include <sys/socket.h> #include <netinet/in.h> #include <netinet/ip.h> /* superset of prev…Linux AppleTalk protocol implementation NAME ddp - Linux AppleTalk protocol implementation SYNOPSIS #include <sys/socket.h> #include <netatalk/at.h> ddp_socket = socket(AF_APPLETAL…packet interface on device level NAME packet - packet interface on device level SYNOPSIS #include <sys/socket.h> #include <linux/if_packet.h> #include <net/ethernet.h> /* the L2 pr…Linux IPv4 raw sockets NAME raw - Linux IPv4 raw sockets SYNOPSIS #include <sys/socket.h> #include <netinet/in.h> raw_socket = socket(AF_INET, SOCK_RAW, int protocol ); DESCRIPTION…sockets for local interprocess communication NAME unix - sockets for local interprocess communication SYNOPSIS #include <sys/socket.h> #include <sys/un.h> unix_socket = socket(AF_U…User Datagram Protocol for IPv4 NAME udp - User Datagram Protocol for IPv4 SYNOPSIS #include <sys/socket.h> #include <netinet/in.h> #include <netinet/udp.h> udp_socket = socket(AF_…