# phpman > man > socket

[SOCKET(7)](https://www.chedong.com/phpMan.php/man/SOCKET/7/markdown)                             Linux Programmer's Manual                            [SOCKET(7)](https://www.chedong.com/phpMan.php/man/SOCKET/7/markdown)



## NAME
       socket - Linux socket interface

## SYNOPSIS
### #include <sys/socket.h>

       _sockfd_ **=** **socket(int** _socket_family_**,** **int** _socket_type_**,** **int** _protocol_**);**

## DESCRIPTION
       This manual page describes the Linux networking socket layer user interface.  The BSD compat‐
       ible sockets are the uniform interface between the user  process  and  the  network  protocol
       stacks  in  the  kernel.   The  protocol  modules  are grouped into _protocol_ _families_ such as
       **AF**___**INET**, **AF**___**IPX**, and **AF**___**PACKET**, and _socket_ _types_ such  as  **SOCK**___**STREAM**  or  **SOCK**___**DGRAM**.   See
       [**socket**(2)](https://www.chedong.com/phpMan.php/man/socket/2/markdown) for more information on families and types.

### Socket-layer functions
       These  functions  are  used  by  the  user process to send or receive packets and to do other
       socket operations.  For more information see their respective manual pages.

       [**socket**(2)](https://www.chedong.com/phpMan.php/man/socket/2/markdown) creates a socket, [**connect**(2)](https://www.chedong.com/phpMan.php/man/connect/2/markdown) connects a socket to  a  remote  socket  address,  the
       [**bind**(2)](https://www.chedong.com/phpMan.php/man/bind/2/markdown)  function  binds  a socket to a local socket address, [**listen**(2)](https://www.chedong.com/phpMan.php/man/listen/2/markdown) tells the socket that
       new connections shall be accepted, and [**accept**(2)](https://www.chedong.com/phpMan.php/man/accept/2/markdown) is used to get a new socket with a  new  in‐
       coming  connection.   [**socketpair**(2)](https://www.chedong.com/phpMan.php/man/socketpair/2/markdown) returns two connected anonymous sockets (implemented only
       for a few local families like **AF**___**UNIX**)

       [**send**(2)](https://www.chedong.com/phpMan.php/man/send/2/markdown), [**sendto**(2)](https://www.chedong.com/phpMan.php/man/sendto/2/markdown), and [**sendmsg**(2)](https://www.chedong.com/phpMan.php/man/sendmsg/2/markdown)  send  data  over  a  socket,  and  [**recv**(2)](https://www.chedong.com/phpMan.php/man/recv/2/markdown),  [**recvfrom**(2)](https://www.chedong.com/phpMan.php/man/recvfrom/2/markdown),
       [**recvmsg**(2)](https://www.chedong.com/phpMan.php/man/recvmsg/2/markdown)  receive  data  from  a socket.  [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown) and [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown) wait for arriving data or a
       readiness to send data.  In addition, the standard I/O operations like  [**write**(2)](https://www.chedong.com/phpMan.php/man/write/2/markdown),  [**writev**(2)](https://www.chedong.com/phpMan.php/man/writev/2/markdown),
       [**sendfile**(2)](https://www.chedong.com/phpMan.php/man/sendfile/2/markdown), [**read**(2)](https://www.chedong.com/phpMan.php/man/read/2/markdown), and [**readv**(2)](https://www.chedong.com/phpMan.php/man/readv/2/markdown) can be used to read and write data.

       [**getsockname**(2)](https://www.chedong.com/phpMan.php/man/getsockname/2/markdown)  returns the local socket address and [**getpeername**(2)](https://www.chedong.com/phpMan.php/man/getpeername/2/markdown) returns the remote socket
       address.  [**getsockopt**(2)](https://www.chedong.com/phpMan.php/man/getsockopt/2/markdown) and [**setsockopt**(2)](https://www.chedong.com/phpMan.php/man/setsockopt/2/markdown) are used to set or get socket layer or protocol op‐
       tions.  [**ioctl**(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown) can be used to set or read some other options.

       [**close**(2)](https://www.chedong.com/phpMan.php/man/close/2/markdown) is used to close a socket.  [**shutdown**(2)](https://www.chedong.com/phpMan.php/man/shutdown/2/markdown) closes parts of a full-duplex socket connec‐
       tion.

       Seeking, or calling [**pread**(2)](https://www.chedong.com/phpMan.php/man/pread/2/markdown) or [**pwrite**(2)](https://www.chedong.com/phpMan.php/man/pwrite/2/markdown) with a nonzero position is not supported  on  sock‐
       ets.

       It  is  possible  to do nonblocking I/O on sockets by setting the **O**___**NONBLOCK** flag on a socket
       file descriptor using [**fcntl**(2)](https://www.chedong.com/phpMan.php/man/fcntl/2/markdown).  Then all operations that would block will  (usually)  return
       with  **EAGAIN**  (operation  should be retried later); [**connect**(2)](https://www.chedong.com/phpMan.php/man/connect/2/markdown) will return **EINPROGRESS** error.
       The user can then wait for various events via [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown) or [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown).

       ┌────────────────────────────────────────────────────────────────────┐
       │                            I/O events                              │
       ├───────────┬───────────┬────────────────────────────────────────────┤
       │Event      │ Poll flag │ Occurrence                                 │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Read       │ POLLIN    │ New data arrived.                          │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Read       │ POLLIN    │ A connection setup has been completed (for │
       │           │           │ connection-oriented sockets)               │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Read       │ POLLHUP   │ A disconnection request has been initiated │
       │           │           │ by the other end.                          │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Read       │ POLLHUP   │ A connection is broken (only  for  connec‐ │
       │           │           │ tion-oriented protocols).  When the socket │
       │           │           │ is written **SIGPIPE** is also sent.           │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Write      │ POLLOUT   │ Socket has enough send  buffer  space  for │
       │           │           │ writing new data.                          │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Read/Write │ POLLIN |  │ An outgoing [**connect**(2)](https://www.chedong.com/phpMan.php/man/connect/2/markdown) finished.           │
       │           │ POLLOUT   │                                            │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Read/Write │ POLLERR   │ An asynchronous error occurred.            │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Read/Write │ POLLHUP   │ The other end has shut down one direction. │
       ├───────────┼───────────┼────────────────────────────────────────────┤
       │Exception  │ POLLPRI   │ Urgent data arrived.  **SIGURG** is sent then. │
       └───────────┴───────────┴────────────────────────────────────────────┘
       An  alternative  to  [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown)  and [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown) is to let the kernel inform the application about
       events via a **SIGIO** signal.  For that the **O**___**ASYNC** flag must be set on a socket file descriptor
       via  [**fcntl**(2)](https://www.chedong.com/phpMan.php/man/fcntl/2/markdown)  and  a valid signal handler for **SIGIO** must be installed via [**sigaction**(2)](https://www.chedong.com/phpMan.php/man/sigaction/2/markdown).  See
       the _Signals_ discussion below.

### Socket address structures
       Each socket domain has its own format for socket addresses, with  a  domain-specific  address
       structure.   Each of these structures begins with an integer "family" field (typed as _sa_fam__‐
       _ily_t_) that indicates the type of the address structure.   This  allows  the  various  system
       calls  (e.g.,  [**connect**(2)](https://www.chedong.com/phpMan.php/man/connect/2/markdown),  [**bind**(2)](https://www.chedong.com/phpMan.php/man/bind/2/markdown),  [**accept**(2)](https://www.chedong.com/phpMan.php/man/accept/2/markdown),  [**getsockname**(2)](https://www.chedong.com/phpMan.php/man/getsockname/2/markdown),  [**getpeername**(2)](https://www.chedong.com/phpMan.php/man/getpeername/2/markdown)), which are
       generic to all socket domains, to determine the domain of a particular socket address.

       To allow any type of socket address to be passed to interfaces in the sockets API,  the  type
       _struct_  _sockaddr_  is defined.  The purpose of this type is purely to allow casting of domain-
       specific socket address types to a "generic" type, so as to  avoid  compiler  warnings  about
       type mismatches in calls to the sockets API.

       In  addition,  the  sockets API provides the data type _struct_ _sockaddr_storage_.  This type is
       suitable to accommodate all supported domain-specific socket address structures; it is  large
       enough  and  is aligned properly.  (In particular, it is large enough to hold IPv6 socket ad‐
       dresses.)  The structure includes the following field, which can be used to identify the type
       of socket address actually stored in the structure:

               sa_family_t ss_family;

       The  _sockaddr_storage_  structure is useful in programs that must handle socket addresses in a
       generic way (e.g., programs that must deal with both IPv4 and IPv6 socket addresses).

### Socket options
       The socket options listed below can be set by using [**setsockopt**(2)](https://www.chedong.com/phpMan.php/man/setsockopt/2/markdown) and read with [**getsockopt**(2)](https://www.chedong.com/phpMan.php/man/getsockopt/2/markdown)
       with the socket level set to **SOL**___**SOCKET** for all sockets.  Unless otherwise noted, _optval_ is a
       pointer to an _int_.

       **SO**___**ACCEPTCONN**
              Returns a value indicating whether or not this socket has been marked to  accept  con‐
              nections  with  [**listen**(2)](https://www.chedong.com/phpMan.php/man/listen/2/markdown).  The value 0 indicates that this is not a listening socket,
              the value 1 indicates that this is a listening socket.  This socket  option  is  read-
              only.

       **SO**___**ATTACH**___**FILTER** (since Linux 2.2), **SO**___**ATTACH**___**BPF** (since Linux 3.19)
              Attach  a classic BPF (**SO**___**ATTACH**___**FILTER**) or an extended BPF (**SO**___**ATTACH**___**BPF**) program to
              the socket for use as a filter of incoming packets.  A packet will be dropped  if  the
              filter  program  returns zero.  If the filter program returns a nonzero value which is
              less than the packet's data length, the packet will be truncated  to  the  length  re‐
              turned.   If the value returned by the filter is greater than or equal to the packet's
              data length, the packet is allowed to proceed unmodified.

              The argument for **SO**___**ATTACH**___**FILTER** is a _sock_fprog_ structure,  defined  in  _<linux/fil__‐
              _ter.h>_:

                  struct sock_fprog {
                      unsigned short      len;
                      struct sock_filter *filter;
                  };

              The argument for **SO**___**ATTACH**___**BPF** is a file descriptor returned by the [**bpf**(2)](https://www.chedong.com/phpMan.php/man/bpf/2/markdown) system call
              and must refer to a program of type **BPF**___**PROG**___**TYPE**___**SOCKET**___**FILTER**.

              These options may be set multiple times for a given socket, each  time  replacing  the
              previous  filter program.  The classic and extended versions may be called on the same
              socket, but the previous filter will always be replaced such that a socket  never  has
              more than one filter defined.

              Both  classic  and  extended  BPF  are  explained in the kernel source file _Documenta__‐
              _tion/networking/filter.txt_

       **SO**___**ATTACH**___**REUSEPORT**___**CBPF**, **SO**___**ATTACH**___**REUSEPORT**___**EBPF**
              For use with the **SO**___**REUSEPORT** option, these options allow the user to  set  a  classic
              BPF  (**SO**___**ATTACH**___**REUSEPORT**___**CBPF**)  or an extended BPF (**SO**___**ATTACH**___**REUSEPORT**___**EBPF**) program
              which defines how packets are assigned to the sockets in the reuseport group (that is,
              all  sockets  which  have **SO**___**REUSEPORT** set and are using the same local address to re‐
              ceive packets).

              The BPF program must return an index between 0 and N-1 representing the  socket  which
              should receive the packet (where N is the number of sockets in the group).  If the BPF
              program returns an invalid index,  socket  selection  will  fall  back  to  the  plain
              **SO**___**REUSEPORT** mechanism.

              Sockets  are  numbered in the order in which they are added to the group (that is, the
              order of [**bind**(2)](https://www.chedong.com/phpMan.php/man/bind/2/markdown) calls for UDP sockets or the order of [**listen**(2)](https://www.chedong.com/phpMan.php/man/listen/2/markdown) calls for  TCP  sock‐
              ets).   New  sockets  added to a reuseport group will inherit the BPF program.  When a
              socket is removed from a reuseport group (via [**close**(2)](https://www.chedong.com/phpMan.php/man/close/2/markdown)), the last socket in the  group
              will be moved into the closed socket's position.

              These  options may be set repeatedly at any time on any socket in the group to replace
              the current BPF program used by all sockets in the group.

              **SO**___**ATTACH**___**REUSEPORT**___**CBPF** takes the same argument type as **SO**___**ATTACH**___**FILTER**  and  **SO**___**AT**‐‐
              **TACH**___**REUSEPORT**___**EBPF** takes the same argument type as **SO**___**ATTACH**___**BPF**.

              UDP  support  for  this feature is available since Linux 4.5; TCP support is available
              since Linux 4.6.

       **SO**___**BINDTODEVICE**
              Bind this socket to a particular device like “eth0”, as specified in the passed inter‐
              face  name.   If  the name is an empty string or the option length is zero, the socket
              device binding is removed.  The passed option is a variable-length null-terminated in‐
              terface name string with the maximum size of **IFNAMSIZ**.  If a socket is bound to an in‐
              terface, only packets received from that particular interface  are  processed  by  the
              socket.   Note  that this works only for some socket types, particularly **AF**___**INET** sock‐
              ets.  It is not supported for packet sockets (use normal [**bind**(2)](https://www.chedong.com/phpMan.php/man/bind/2/markdown) there).

              Before Linux 3.8, this socket option could be set, but could not retrieved  with  **get**‐‐
              [**sockopt**(2)](https://www.chedong.com/phpMan.php/man/sockopt/2/markdown).   Since Linux 3.8, it is readable.  The _optlen_ argument should contain the
              buffer size available to receive the device name and is  recommended  to  be  **IFNAMSIZ**
              bytes.  The real device name length is reported back in the _optlen_ argument.

       **SO**___**BROADCAST**
              Set  or  get  the  broadcast flag.  When enabled, datagram sockets are allowed to send
              packets to a broadcast address.  This option has no effect on stream-oriented sockets.

       **SO**___**BSDCOMPAT**
              Enable BSD bug-to-bug compatibility.  This is used by the UDP protocol module in Linux
              2.0  and 2.2.  If enabled, ICMP errors received for a UDP socket will not be passed to
              the user program.  In later kernel versions, support for this option has  been  phased
              out:  Linux  2.4  silently  ignores  it,  and  Linux  2.6  generates  a kernel warning
              (printk()) if a program uses this option.  Linux 2.0 also enabled BSD bug-to-bug  com‐
              patibility  options  (random  header changing, skipping of the broadcast flag) for raw
              sockets with this option, but that was removed in Linux 2.2.

       **SO**___**DEBUG**
              Enable socket debugging.  Allowed only for processes with the **CAP**___**NET**___**ADMIN** capability
              or an effective user ID of 0.

       **SO**___**DETACH**___**FILTER** (since Linux 2.2), **SO**___**DETACH**___**BPF** (since Linux 3.19)
              These  two  options, which are synonyms, may be used to remove the classic or extended
              BPF program attached to a socket with either **SO**___**ATTACH**___**FILTER** or  **SO**___**ATTACH**___**BPF**.   The
              option value is ignored.

       **SO**___**DOMAIN** (since Linux 2.6.32)
              Retrieves  the  socket  domain as an integer, returning a value such as **AF**___**INET6**.  See
              [**socket**(2)](https://www.chedong.com/phpMan.php/man/socket/2/markdown) for details.  This socket option is read-only.

       **SO**___**ERROR**
              Get and clear the pending socket error.  This socket option is read-only.  Expects  an
              integer.

       **SO**___**DONTROUTE**
              Don't  send via a gateway, send only to directly connected hosts.  The same effect can
              be achieved by setting the **MSG**___**DONTROUTE** flag on a socket [**send**(2)](https://www.chedong.com/phpMan.php/man/send/2/markdown) operation.   Expects
              an integer boolean flag.

       **SO**___**INCOMING**___**CPU** (gettable since Linux 3.19, settable since Linux 4.4)
              Sets or gets the CPU affinity of a socket.  Expects an integer flag.

                  int cpu = 1;
                  setsockopt(fd, SOL_SOCKET, SO_INCOMING_CPU, &cpu,
                             sizeof(cpu));

              Because  all  of the packets for a single stream (i.e., all packets for the same 4-tu‐
              ple) arrive on the single RX queue that is associated with a particular CPU, the typi‐
              cal  use  case is to employ one listening process per RX queue, with the incoming flow
              being handled by a listener on the same CPU that is handling the RX queue.  This  pro‐
              vides optimal NUMA behavior and keeps CPU caches hot.

       **SO**___**INCOMING**___**NAPI**___**ID** (gettable since Linux 4.12)
              Returns  a system-level unique ID called NAPI ID that is associated with a RX queue on
              which the last packet associated with that socket is received.

              This can be used by an application to split the incoming flows  among  worker  threads
              based on the RX queue on which the packets associated with the flows are received.  It
              allows each worker thread to be associated with a NIC HW receive queue and service all
              the  connection requests received on that RX queue.  This mapping between a app thread
              and a HW NIC queue streamlines the flow of data from the NIC to the application.

       **SO**___**KEEPALIVE**
              Enable sending of keep-alive messages on connection-oriented sockets.  Expects an  in‐
              teger boolean flag.

       **SO**___**LINGER**
              Sets or gets the **SO**___**LINGER** option.  The argument is a _linger_ structure.

                  struct linger {
                      int l_onoff;    /* linger active */
                      int l_linger;   /* how many seconds to linger for */
                  };

              When  enabled, a [**close**(2)](https://www.chedong.com/phpMan.php/man/close/2/markdown) or [**shutdown**(2)](https://www.chedong.com/phpMan.php/man/shutdown/2/markdown) will not return until all queued messages for
              the socket have been successfully sent or the linger timeout has been reached.  Other‐
              wise,  the  call  returns immediately and the closing is done in the background.  When
              the socket is closed as part of [**exit**(2)](https://www.chedong.com/phpMan.php/man/exit/2/markdown), it always lingers in the background.

       **SO**___**LOCK**___**FILTER**
              When set, this option will prevent changing the filters associated  with  the  socket.
              These  filters  include  any  set  using  the  socket options **SO**___**ATTACH**___**FILTER**, **SO**___**AT**‐‐
              **TACH**___**BPF**, **SO**___**ATTACH**___**REUSEPORT**___**CBPF**, and **SO**___**ATTACH**___**REUSEPORT**___**EBPF**.

              The typical use case is for a privileged process to set up a raw socket (an  operation
              that  requires  the  **CAP**___**NET**___**RAW**  capability),  apply  a  restrictive  filter, set the
              **SO**___**LOCK**___**FILTER** option, and then either drop its privileges or pass the socket file de‐
              scriptor to an unprivileged process via a UNIX domain socket.

              Once the **SO**___**LOCK**___**FILTER** option has been enabled, attempts to change or remove the fil‐
              ter attached to a socket, or to disable the **SO**___**LOCK**___**FILTER** option will fail  with  the
              error **EPERM**.

       **SO**___**MARK** (since Linux 2.6.25)
              Set  the  mark for each packet sent through this socket (similar to the netfilter MARK
              target but socket-based).  Changing the mark can be used for mark-based routing  with‐
              out netfilter or for packet filtering.  Setting this option requires the **CAP**___**NET**___**ADMIN**
              capability.

       **SO**___**OOBINLINE**
              If this option is enabled, out-of-band data is directly placed into the  receive  data
              stream.   Otherwise, out-of-band data is passed only when the **MSG**___**OOB** flag is set dur‐
              ing receiving.

       **SO**___**PASSCRED**
              Enable or disable the receiving of the **SCM**___**CREDENTIALS** control message.  For more  in‐
              formation see [**unix**(7)](https://www.chedong.com/phpMan.php/man/unix/7/markdown).

       **SO**___**PASSSEC**
              Enable  or disable the receiving of the **SCM**___**SECURITY** control message.  For more infor‐
              mation see [**unix**(7)](https://www.chedong.com/phpMan.php/man/unix/7/markdown).

       **SO**___**PEEK**___**OFF** (since Linux 3.4)
              This option, which is currently supported only for [**unix**(7)](https://www.chedong.com/phpMan.php/man/unix/7/markdown) sockets, sets the value  of
              the "peek offset" for the [**recv**(2)](https://www.chedong.com/phpMan.php/man/recv/2/markdown) system call when used with **MSG**___**PEEK** flag.

              When  this  option  is  set to a negative value (it is set to -1 for all new sockets),
              traditional behavior is provided: [**recv**(2)](https://www.chedong.com/phpMan.php/man/recv/2/markdown) with the **MSG**___**PEEK** flag will peek  data  from
              the front of the queue.

              When the option is set to a value greater than or equal to zero, then the next peek at
              data queued in the socket will occur at the byte offset specified by the option value.
              At  the  same  time, the "peek offset" will be incremented by the number of bytes that
              were peeked from the queue, so that a subsequent peek will return the next data in the
              queue.

              If  data  is  removed  from  the front of the queue via a call to [**recv**(2)](https://www.chedong.com/phpMan.php/man/recv/2/markdown) (or similar)
              without the **MSG**___**PEEK** flag, the "peek offset" will be decreased by the number of  bytes
              removed.   In  other  words,  receiving  data without the **MSG**___**PEEK** flag will cause the
              "peek offset" to be adjusted to maintain the correct relative position in  the  queued
              data,  so that a subsequent peek will retrieve the data that would have been retrieved
              had the data not been removed.

              For datagram sockets, if the "peek offset" points to the middle of a packet, the  data
              returned will be marked with the **MSG**___**TRUNC** flag.

              The  following  example serves to illustrate the use of **SO**___**PEEK**___**OFF**.  Suppose a stream
              socket has the following queued input data:

                  aabbccddeeff

              The following sequence of [**recv**(2)](https://www.chedong.com/phpMan.php/man/recv/2/markdown) calls would have the effect noted in the comments:

                  int ov = 4;                  // Set peek offset to 4
                  setsockopt(fd, SOL_SOCKET, SO_PEEK_OFF, &ov, sizeof(ov));

                  recv(fd, buf, 2, MSG_PEEK);  // Peeks "cc"; offset set to 6
                  recv(fd, buf, 2, MSG_PEEK);  // Peeks "dd"; offset set to 8
                  recv(fd, buf, 2, 0);         // Reads "aa"; offset set to 6
                  recv(fd, buf, 2, MSG_PEEK);  // Peeks "ee"; offset set to 8

       **SO**___**PEERCRED**
              Return the credentials of the peer process connected to this socket.  For further  de‐
              tails, see [**unix**(7)](https://www.chedong.com/phpMan.php/man/unix/7/markdown).

       **SO**___**PEERSEC** (since Linux 2.6.2)
              Return  the security context of the peer socket connected to this socket.  For further
              details, see [**unix**(7)](https://www.chedong.com/phpMan.php/man/unix/7/markdown) and [**ip**(7)](https://www.chedong.com/phpMan.php/man/ip/7/markdown).

       **SO**___**PRIORITY**
              Set the protocol-defined priority for all packets to be sent on  this  socket.   Linux
              uses  this value to order the networking queues: packets with a higher priority may be
              processed first depending on the selected device queueing discipline.  Setting a  pri‐
              ority outside the range 0 to 6 requires the **CAP**___**NET**___**ADMIN** capability.

       **SO**___**PROTOCOL** (since Linux 2.6.32)
              Retrieves  the  socket protocol as an integer, returning a value such as **IPPROTO**___**SCTP**.
              See [**socket**(2)](https://www.chedong.com/phpMan.php/man/socket/2/markdown) for details.  This socket option is read-only.

       **SO**___**RCVBUF**
              Sets or gets the maximum socket receive buffer in  bytes.   The  kernel  doubles  this
              value  (to  allow  space for bookkeeping overhead) when it is set using [**setsockopt**(2)](https://www.chedong.com/phpMan.php/man/setsockopt/2/markdown),
              and this doubled value is returned by [**getsockopt**(2)](https://www.chedong.com/phpMan.php/man/getsockopt/2/markdown).  The default value is set by  the
              _/proc/sys/net/core/rmem_default_  file,  and  the  maximum  allowed value is set by the
              _/proc/sys/net/core/rmem_max_ file.  The minimum (doubled) value for this option is 256.

       **SO**___**RCVBUFFORCE** (since Linux 2.6.14)
              Using this socket option, a privileged (**CAP**___**NET**___**ADMIN**) process can  perform  the  same
              task as **SO**___**RCVBUF**, but the _rmem_max_ limit can be overridden.

       **SO**___**RCVLOWAT** and **SO**___**SNDLOWAT**
              Specify the minimum number of bytes in the buffer until the socket layer will pass the
              data to the protocol (**SO**___**SNDLOWAT**) or the user on receiving (**SO**___**RCVLOWAT**).  These  two
              values  are  initialized  to 1.  **SO**___**SNDLOWAT** is not changeable on Linux ([**setsockopt**(2)](https://www.chedong.com/phpMan.php/man/setsockopt/2/markdown)
              fails with the error **ENOPROTOOPT**).  **SO**___**RCVLOWAT** is changeable only since Linux 2.4.

              Before Linux 2.6.28 [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown), [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown), and [**epoll**(7)](https://www.chedong.com/phpMan.php/man/epoll/7/markdown) did not respect  the  **SO**___**RCVLOWAT**
              setting  on  Linux, and indicated a socket as readable when even a single byte of data
              was available.  A subsequent read from the socket would then block  until  **SO**___**RCVLOWAT**
              bytes  are available.  Since Linux 2.6.28, [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown), [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown), and [**epoll**(7)](https://www.chedong.com/phpMan.php/man/epoll/7/markdown) indicate a
              socket as readable only if at least **SO**___**RCVLOWAT** bytes are available.

       **SO**___**RCVTIMEO** and **SO**___**SNDTIMEO**
              Specify the receiving or sending timeouts until reporting an error.  The argument is a
              _struct_  _timeval_.   If  an input or output function blocks for this period of time, and
              data has been sent or received, the return value of that function will be  the  amount
              of data transferred; if no data has been transferred and the timeout has been reached,
              then -1 is returned with _errno_ set to **EAGAIN** or **EWOULDBLOCK**, or **EINPROGRESS** (for  **con**‐‐
              [**nect**(2)](https://www.chedong.com/phpMan.php/man/nect/2/markdown)) just as if the socket was specified to be nonblocking.  If the timeout is set
              to zero (the default), then the operation will never timeout.  Timeouts only have  ef‐
              fect  for  system  calls  that perform socket I/O (e.g., [**read**(2)](https://www.chedong.com/phpMan.php/man/read/2/markdown), [**recvmsg**(2)](https://www.chedong.com/phpMan.php/man/recvmsg/2/markdown), [**send**(2)](https://www.chedong.com/phpMan.php/man/send/2/markdown),
              [**sendmsg**(2)](https://www.chedong.com/phpMan.php/man/sendmsg/2/markdown)); timeouts have no effect for [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown), [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown), **epoll**___**[wait**(2)](https://www.chedong.com/phpMan.php/man/wait/2/markdown), and so on.

       **SO**___**REUSEADDR**
              Indicates that the rules used in validating  addresses  supplied  in  a  [**bind**(2)](https://www.chedong.com/phpMan.php/man/bind/2/markdown)  call
              should  allow  reuse of local addresses.  For **AF**___**INET** sockets this means that a socket
              may bind, except when there is an active listening socket bound to the address.   When
              the listening socket is bound to **INADDR**___**ANY** with a specific port then it is not possi‐
              ble to bind to this port for any local address.  Argument is an integer boolean flag.

       **SO**___**REUSEPORT** (since Linux 3.9)
              Permits multiple **AF**___**INET** or **AF**___**INET6** sockets to be bound to an  identical  socket  ad‐
              dress.   This  option must be set on each socket (including the first socket) prior to
              calling [**bind**(2)](https://www.chedong.com/phpMan.php/man/bind/2/markdown) on the socket.  To prevent port hijacking, all of the processes  bind‐
              ing to the same address must have the same effective UID.  This option can be employed
              with both TCP and UDP sockets.

              For TCP sockets, this option allows [**accept**(2)](https://www.chedong.com/phpMan.php/man/accept/2/markdown) load distribution  in  a  multi-threaded
              server  to be improved by using a distinct listener socket for each thread.  This pro‐
              vides improved load distribution as compared to traditional techniques  such  using  a
              single  [**accept**(2)](https://www.chedong.com/phpMan.php/man/accept/2/markdown)ing  thread  that distributes connections, or having multiple threads
              that compete to [**accept**(2)](https://www.chedong.com/phpMan.php/man/accept/2/markdown) from the same socket.

              For UDP sockets, the use of this option can provide better  distribution  of  incoming
              datagrams  to multiple processes (or threads) as compared to the traditional technique
              of having multiple processes compete to receive datagrams on the same socket.

       **SO**___**RXQ**___**OVFL** (since Linux 2.6.33)
              Indicates that an unsigned 32-bit value ancillary message (cmsg) should be attached to
              received  skbs  indicating  the number of packets dropped by the socket since its cre‐
              ation.

       **SO**___**SELECT**___**ERR**___**QUEUE** (since Linux 3.10)
              When this option is set on a socket, an error condition on a socket  causes  notifica‐
              tion  not  only via the _exceptfds_ set of [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown).  Similarly, [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown) also returns a
              **POLLPRI** whenever an **POLLERR** event is returned.

              Background: this option was added when waking up on an error condition  occurred  only
              via  the  _readfds_ and _writefds_ sets of [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown).  The option was added to allow moni‐
              toring for error conditions via the _exceptfds_ argument without  simultaneously  having
              to  receive  notifications  (via  _readfds_)  for regular data that can be read from the
              socket.  After changes in Linux 4.16, the use of this flag to achieve the desired  no‐
              tifications  is  no  longer necessary.  This option is nevertheless retained for back‐
              wards compatibility.

       **SO**___**SNDBUF**
              Sets or gets the maximum socket send buffer in bytes.  The kernel doubles  this  value
              (to allow space for bookkeeping overhead) when it is set using [**setsockopt**(2)](https://www.chedong.com/phpMan.php/man/setsockopt/2/markdown), and this
              doubled value is  returned  by  [**getsockopt**(2)](https://www.chedong.com/phpMan.php/man/getsockopt/2/markdown).   The  default  value  is  set  by  the
              _/proc/sys/net/core/wmem_default_  file  and  the  maximum  allowed  value is set by the
              _/proc/sys/net/core/wmem_max_ file.  The minimum (doubled)  value  for  this  option  is
              2048.

       **SO**___**SNDBUFFORCE** (since Linux 2.6.14)
              Using  this  socket  option, a privileged (**CAP**___**NET**___**ADMIN**) process can perform the same
              task as **SO**___**SNDBUF**, but the _wmem_max_ limit can be overridden.

       **SO**___**TIMESTAMP**
              Enable or disable the receiving of the **SO**___**TIMESTAMP** control  message.   The  timestamp
              control  message  is sent with level **SOL**___**SOCKET** and a _cmsg_type_ of **SCM**___**TIMESTAMP**.  The
              _cmsg_data_ field is a _struct_ _timeval_ indicating the reception time of the  last  packet
              passed to the user in this call.  See [**cmsg**(3)](https://www.chedong.com/phpMan.php/man/cmsg/3/markdown) for details on control messages.

       **SO**___**TIMESTAMPNS** (since Linux 2.6.22)
              Enable  or disable the receiving of the **SO**___**TIMESTAMPNS** control message.  The timestamp
              control message is sent with level **SOL**___**SOCKET** and a _cmsg_type_ of **SCM**___**TIMESTAMPNS**.  The
              _cmsg_data_  field is a _struct_ _timespec_ indicating the reception time of the last packet
              passed to the user in this call.  The clock used for the timestamp is  **CLOCK**___**REALTIME**.
              See [**cmsg**(3)](https://www.chedong.com/phpMan.php/man/cmsg/3/markdown) for details on control messages.

              A socket cannot mix **SO**___**TIMESTAMP** and **SO**___**TIMESTAMPNS**: the two modes are mutually exclu‐
              sive.

       **SO**___**TYPE**
              Gets the socket type as an integer (e.g., **SOCK**___**STREAM**).  This socket option  is  read-
              only.

       **SO**___**BUSY**___**POLL** (since Linux 3.11)
              Sets  the  approximate  time  in  microseconds to busy poll on a blocking receive when
              there is no data.  Increasing this value requires **CAP**___**NET**___**ADMIN**.  The default for this
              option is controlled by the _/proc/sys/net/core/busy_read_ file.

              The  value  in the _/proc/sys/net/core/busy_poll_ file determines how long [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown) and
              [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown) will busy poll when they operate on  sockets  with  **SO**___**BUSY**___**POLL**  set  and  no
              events to report are found.

              In  both cases, busy polling will only be done when the socket last received data from
              a network device that supports this option.

              While busy polling may improve latency of some applications, care must be  taken  when
              using it since this will increase both CPU utilization and power usage.

### Signals
       When  writing  onto a connection-oriented socket that has been shut down (by the local or the
       remote end) **SIGPIPE** is sent to the writing process and **EPIPE** is returned.  The signal is  not
       sent when the write call specified the **MSG**___**NOSIGNAL** flag.

       When  requested  with the **FIOSETOWN** [**fcntl**(2)](https://www.chedong.com/phpMan.php/man/fcntl/2/markdown) or **SIOCSPGRP** [**ioctl**(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown), **SIGIO** is sent when an I/O
       event occurs.  It is possible to use [**poll**(2)](https://www.chedong.com/phpMan.php/man/poll/2/markdown) or [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown) in the signal handler to  find  out
       which socket the event occurred on.  An alternative (in Linux 2.2) is to set a real-time sig‐
       nal using the **F**___**SETSIG** [**fcntl**(2)](https://www.chedong.com/phpMan.php/man/fcntl/2/markdown); the handler of the real time signal will be called with  the
       file descriptor in the _si_fd_ field of its _siginfo_t_.  See [**fcntl**(2)](https://www.chedong.com/phpMan.php/man/fcntl/2/markdown) for more information.

       Under  some circumstances (e.g., multiple processes accessing a single socket), the condition
       that caused the **SIGIO** may have already disappeared when the process reacts to the signal.  If
       this happens, the process should wait again because Linux will resend the signal later.

### /proc interfaces
       The   core  socket  networking  parameters  can  be  accessed  via  files  in  the  directory
       _/proc/sys/net/core/_.

       _rmem_default_
              contains the default setting in bytes of the socket receive buffer.

       _rmem_max_
              contains the maximum socket receive buffer size in bytes which a user may set by using
              the **SO**___**RCVBUF** socket option.

       _wmem_default_
              contains the default setting in bytes of the socket send buffer.

       _wmem_max_
              contains  the  maximum  socket send buffer size in bytes which a user may set by using
              the **SO**___**SNDBUF** socket option.

       _message_cost_ and _message_burst_
              configure the token bucket filter used to load limit warning messages caused by exter‐
              nal network events.

       _netdev_max_backlog_
              Maximum number of packets in the global input queue.

       _optmem_max_
              Maximum length of ancillary data and user control data like the iovecs per socket.

### Ioctls
       These operations can be accessed using [**ioctl**(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown):

           _error_ **=** **ioctl(**_ip_socket_**,** _ioctl_type_**,** _&value_result_**);**

       **SIOCGSTAMP**
              Return  a  _struct_  _timeval_ with the receive timestamp of the last packet passed to the
              user.  This is useful for accurate round trip time measurements.  See [**setitimer**(2)](https://www.chedong.com/phpMan.php/man/setitimer/2/markdown) for
              a description of _struct_ _timeval_.  This ioctl should be used only if the socket options
              **SO**___**TIMESTAMP** and **SO**___**TIMESTAMPNS** are not set on the socket.  Otherwise, it returns  the
              timestamp  of  the last packet that was received while **SO**___**TIMESTAMP** and **SO**___**TIMESTAMPNS**
              were not set, or it fails if no such packet has been received, (i.e., [**ioctl**(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown) returns
              -1 with _errno_ set to **ENOENT**).

       **SIOCSPGRP**
              Set  the  process or process group that is to receive **SIGIO** or **SIGURG** signals when I/O
              becomes possible or urgent data is available.  The argument is a pointer to  a  _pid_t_.
              For further details, see the description of **F**___**SETOWN** in [**fcntl**(2)](https://www.chedong.com/phpMan.php/man/fcntl/2/markdown).

       **FIOASYNC**
              Change  the  **O**___**ASYNC**  flag  to  enable or disable asynchronous I/O mode of the socket.
              Asynchronous I/O mode means that the **SIGIO** signal or the signal set with  **F**___**SETSIG**  is
              raised when a new I/O event occurs.

              Argument  is  an  integer boolean flag.  (This operation is synonymous with the use of
              [**fcntl**(2)](https://www.chedong.com/phpMan.php/man/fcntl/2/markdown) to set the **O**___**ASYNC** flag.)

       **SIOCGPGRP**
              Get the current process or process group that receives **SIGIO** or **SIGURG** signals,  or  0
              when none is set.

       Valid [**fcntl**(2)](https://www.chedong.com/phpMan.php/man/fcntl/2/markdown) operations:

       **FIOGETOWN**
              The same as the **SIOCGPGRP** [**ioctl**(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown).

       **FIOSETOWN**
              The same as the **SIOCSPGRP** [**ioctl**(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown).

## VERSIONS
       **SO**___**BINDTODEVICE**  was introduced in Linux 2.0.30.  **SO**___**PASSCRED** is new in Linux 2.2.  The _/proc_
       interfaces were introduced in Linux 2.2.  **SO**___**RCVTIMEO** and  **SO**___**SNDTIMEO**  are  supported  since
       Linux  2.3.41.  Earlier, timeouts were fixed to a protocol-specific setting, and could not be
       read or written.

## NOTES
       Linux assumes that half of the send/receive buffer is used for  internal  kernel  structures;
       thus the values in the corresponding _/proc_ files are twice what can be observed on the wire.

       Linux  will  allow port reuse only with the **SO**___**REUSEADDR** option when this option was set both
       in the previous program that performed a [**bind**(2)](https://www.chedong.com/phpMan.php/man/bind/2/markdown) to the port and in the program that wants to
       reuse  the port.  This differs from some implementations (e.g., FreeBSD) where only the later
       program needs to set the **SO**___**REUSEADDR** option.  Typically this difference is invisible, since,
       for example, a server program is designed to always set this option.

## SEE ALSO
       [**wireshark**(1)](https://www.chedong.com/phpMan.php/man/wireshark/1/markdown),  [**bpf**(2)](https://www.chedong.com/phpMan.php/man/bpf/2/markdown),  [**connect**(2)](https://www.chedong.com/phpMan.php/man/connect/2/markdown),  [**getsockopt**(2)](https://www.chedong.com/phpMan.php/man/getsockopt/2/markdown),  [**setsockopt**(2)](https://www.chedong.com/phpMan.php/man/setsockopt/2/markdown),  [**socket**(2)](https://www.chedong.com/phpMan.php/man/socket/2/markdown),  [**pcap**(3)](https://www.chedong.com/phpMan.php/man/pcap/3/markdown), **ad**‐‐
       **dress**___**[families**(7)](https://www.chedong.com/phpMan.php/man/families/7/markdown),  [**capabilities**(7)](https://www.chedong.com/phpMan.php/man/capabilities/7/markdown),  [**ddp**(7)](https://www.chedong.com/phpMan.php/man/ddp/7/markdown),  [**ip**(7)](https://www.chedong.com/phpMan.php/man/ip/7/markdown),  [**ipv6**(7)](https://www.chedong.com/phpMan.php/man/ipv6/7/markdown),  [**packet**(7)](https://www.chedong.com/phpMan.php/man/packet/7/markdown),  [**tcp**(7)](https://www.chedong.com/phpMan.php/man/tcp/7/markdown),  [**udp**(7)](https://www.chedong.com/phpMan.php/man/udp/7/markdown),
       [**unix**(7)](https://www.chedong.com/phpMan.php/man/unix/7/markdown), [**tcpdump**(8)](https://www.chedong.com/phpMan.php/man/tcpdump/8/markdown)

## COLOPHON
       This  page  is  part  of  release  5.10 of the Linux _man-pages_ project.  A description of the
       project, information about reporting bugs, and the latest version of this page, can be  found
       at <https://www.kernel.org/doc/man-pages/>.



Linux                                        2020-08-13                                    [SOCKET(7)](https://www.chedong.com/phpMan.php/man/SOCKET/7/markdown)
