.\"
.\" @(#)tcp.4 8.1 (Berkeley) 6/5/93
.\"
-.Dd April 16, 2014
+.Dd March 18, 2015
.Dt TCP 4
.Os BSD 4.2
.Sh NAME
call to accept incoming connections.
Only active sockets may use the
.Xr connect 2
+or
+.Xr connectx 2
call to initiate connections.
.Pp
Passive sockets may
.It Dv TCP_ENABLE_ECN
Using Explicit Congestion Notification (ECN) on
.Tn TCP
-allows end-to-end notification of congestion without dropping packets. Conventionally TCP/IP networks signal congestion by dropping packets. When ECN is successfully negotiated, an ECN-aware router may set a mark in the IP header instead of dropping a packet in order to signal impending congestion. The
+allows bi-directional end-to-end notification of congestion without dropping packets. Conventionally TCP/IP networks signal congestion by dropping packets. When ECN is successfully negotiated, an ECN-aware router may set a mark in the IP header instead of dropping a packet in order to signal impending congestion. The
.Tn TCP
receiver of the packet echoes congestion indication to the
.Tn TCP
The send socket buffer of a
.Tn TCP sender has unsent and unacknowledged data. This option allows a
.Tn TCP sender to control the amount of unsent data kept in the send socket buffer. The value of the option should be the maximum amount of unsent data in bytes. Kevent, poll and select will generate a write notification when the unsent data falls below the amount given by this option. This will allow an application to generate just-in-time fresh updates for real-time communication.
+.It Dv TCP_FASTOPEN
+The TCP listener can set this option to use TCP Fast Open feature. After
+setting this option, an
+.Xr accept 2
+may return a socket that is in SYN_RECEIVED state but is readable and writable.
+.It Dv TCP_CONNECTION_INFO
+This socket option can be used to obtain TCP connection level statistics. The
+"struct tcp_connection_info" defined in <netinet/tcp_var.h> is copied to the
+user buffer.
.El
.Pp
The option level for the
.Tn TCP
socket is set non-blocking, and the connection cannot be established immediately,
.Xr connect 2
+or
+.Xr connectx 2
returns with the error
.Dv EINPROGRESS ,
and the connection is established asynchronously.
Note that even if the socket is non-blocking, it is possible for the connection
to be established immediately. In that case
.Xr connect 2
+or
+.Xr connectx 2
does not return with
.Dv EINPROGRESS .
.Sh DIAGNOSTICS
.It Bq Er EINPROGRESS
returned by
.Xr connect 2
+or
+.Xr connectx 2
when the socket is set nonblocking, and the connection cannot be
immediately established;
.It Bq Er EALREADY
returned by
.Xr connect 2
+or
+.Xr connectx 2
when connection request is already in progress for the specified socket.
+.It Bq Er ENODATA
+returned by
+.Xr recv 2
+or
+.Xr send 2
+in case a connection is experiencing a data-stall (probably due to a middlebox issue).
+It is advised that the current connection gets closed by the application and a
+new attempt is being made.
.
.El
.Sh SEE ALSO
.Xr connect 2 ,
+.Xr connectx 2 ,
.Xr getsockopt 2 ,
.Xr kqueue 2 ,
.Xr poll 2 ,