Struct socket2::Socket

source ·
pub struct Socket { /* private fields */ }
Expand description

Owned wrapper around a system socket.

This type simply wraps an instance of a file descriptor (c_int) on Unix and an instance of SOCKET on Windows. This is the main type exported by this crate and is intended to mirror the raw semantics of sockets on platforms as closely as possible. Almost all methods correspond to precisely one libc or OS API call which is essentially just a “Rustic translation” of what’s below.

§Converting to and from other types

This type can be freely converted into the network primitives provided by the standard library, such as TcpStream or UdpSocket, using the From trait, see the example below.

§Notes

Some methods that set options on Socket require two system calls to set their options without overwriting previously set options. We do this by first getting the current settings, applying the desired changes, and then updating the settings. This means that the operation is not atomic. This can lead to a data race when two threads are changing options in parallel.

§Examples

use std::net::{SocketAddr, TcpListener};
use socket2::{Socket, Domain, Type};

// create a TCP listener
let socket = Socket::new(Domain::IPV6, Type::STREAM, None)?;

let address: SocketAddr = "[::1]:12345".parse().unwrap();
let address = address.into();
socket.bind(&address)?;
socket.listen(128)?;

let listener: TcpListener = socket.into();
// ...

Implementations§

source§

impl Socket

source

pub fn new( domain: Domain, ty: Type, protocol: Option<Protocol> ) -> Result<Socket>

Creates a new socket and sets common flags.

This function corresponds to socket(2) on Unix and WSASocketW on Windows.

On Unix-like systems, the close-on-exec flag is set on the new socket. Additionally, on Apple platforms SOCK_NOSIGPIPE is set. On Windows, the socket is made non-inheritable.

Socket::new_raw can be used if you don’t want these flags to be set.

Additional documentation can be found in manual of the OS:

source

pub fn new_raw( domain: Domain, ty: Type, protocol: Option<Protocol> ) -> Result<Socket>

Creates a new socket ready to be configured.

This function corresponds to socket(2) on Unix and WSASocketW on Windows and simply creates a new socket, no other configuration is done.

source

pub fn pair( domain: Domain, ty: Type, protocol: Option<Protocol> ) -> Result<(Socket, Socket)>

Creates a pair of sockets which are connected to each other.

This function corresponds to socketpair(2).

This function sets the same flags as in done for Socket::new, Socket::pair_raw can be used if you don’t want to set those flags.

Additional documentation can be found in manual of the OS:

source

pub fn pair_raw( domain: Domain, ty: Type, protocol: Option<Protocol> ) -> Result<(Socket, Socket)>

Creates a pair of sockets which are connected to each other.

This function corresponds to socketpair(2).

source

pub fn bind(&self, address: &SockAddr) -> Result<()>

source

pub fn connect(&self, address: &SockAddr) -> Result<()>

Initiate a connection on this socket to the specified address.

This function directly corresponds to the connect(2) function on Windows and Unix.

An error will be returned if listen or connect has already been called on this builder.

Additional documentation can be found in manual of the OS:

§Notes

When using a non-blocking connect (by setting the socket into non-blocking mode before calling this function), socket option can’t be set while connecting. This will cause errors on Windows. Socket options can be safely set before and after connecting the socket.

source

pub fn connect_timeout(&self, addr: &SockAddr, timeout: Duration) -> Result<()>

Initiate a connection on this socket to the specified address, only only waiting for a certain period of time for the connection to be established.

Unlike many other methods on Socket, this does not correspond to a single C function. It sets the socket to nonblocking mode, connects via connect(2), and then waits for the connection to complete with poll(2) on Unix and select on Windows. When the connection is complete, the socket is set back to blocking mode. On Unix, this will loop over EINTR errors.

§Warnings

The non-blocking state of the socket is overridden by this function - it will be returned in blocking mode on success, and in an indeterminate state on failure.

If the connection request times out, it may still be processing in the background - a second call to connect or connect_timeout may fail.

source

pub fn listen(&self, backlog: c_int) -> Result<()>

Mark a socket as ready to accept incoming connection requests using Socket::accept().

This function directly corresponds to the listen(2) function on Windows and Unix.

An error will be returned if listen or connect has already been called on this builder.

Additional documentation can be found in manual of the OS:

source

pub fn accept(&self) -> Result<(Socket, SockAddr)>

Accept a new incoming connection from this listener.

This function uses accept4(2) on platforms that support it and accept(2) platforms that do not.

This function sets the same flags as in done for Socket::new, Socket::accept_raw can be used if you don’t want to set those flags.

Additional documentation can be found in manual of the OS:

source

pub fn accept_raw(&self) -> Result<(Socket, SockAddr)>

Accept a new incoming connection from this listener.

This function directly corresponds to the accept(2) function on Windows and Unix.

source

pub fn local_addr(&self) -> Result<SockAddr>

source

pub fn peer_addr(&self) -> Result<SockAddr>

source

pub fn type(&self) -> Result<Type>

Returns the Type of this socket by checking the SO_TYPE option on this socket.

source

pub fn try_clone(&self) -> Result<Socket>

Creates a new independently owned handle to the underlying socket.

§Notes

On Unix this uses F_DUPFD_CLOEXEC and thus sets the FD_CLOEXEC on the returned socket.

On Windows this uses WSA_FLAG_NO_HANDLE_INHERIT setting inheriting to false.

On Windows this can not be used function cannot be used on a QOS-enabled socket, see https://docs.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-wsaduplicatesocketw.

source

pub fn nonblocking(&self) -> Result<bool>

Returns true if this socket is set to nonblocking mode, false otherwise.

§Notes

On Unix this corresponds to calling fcntl returning the value of O_NONBLOCK.

On Windows it is not possible retrieve the nonblocking mode status.

source

pub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>

Moves this socket into or out of nonblocking mode.

§Notes

On Unix this corresponds to calling fcntl (un)setting O_NONBLOCK.

On Windows this corresponds to calling ioctlsocket (un)setting FIONBIO.

source

pub fn shutdown(&self, how: Shutdown) -> Result<()>

source

pub fn recv(&self, buf: &mut [MaybeUninit<u8>]) -> Result<usize>

Receives data on the socket from the remote address to which it is connected.

The connect method will connect this socket to a remote address. This method might fail if the socket is not connected.

Additional documentation can be found in manual of the OS:

§Safety

Normally casting a &mut [u8] to &mut [MaybeUninit<u8>] would be unsound, as that allows us to write uninitialised bytes to the buffer. However this implementation promises to not write uninitialised bytes to the buffer and passes it directly to recv(2) system call. This promise ensures that this function can be called using a buffer of type &mut [u8].

Note that the io::Read::read implementation calls this function with a buffer of type &mut [u8], allowing initialised buffers to be used without using unsafe.

source

pub fn recv_out_of_band(&self, buf: &mut [MaybeUninit<u8>]) -> Result<usize>

Receives out-of-band (OOB) data on the socket from the remote address to which it is connected by setting the MSG_OOB flag for this call.

For more information, see recv, out_of_band_inline.

source

pub fn recv_with_flags( &self, buf: &mut [MaybeUninit<u8>], flags: c_int ) -> Result<usize>

Identical to recv but allows for specification of arbitrary flags to the underlying recv call.

source

pub fn recv_vectored( &self, bufs: &mut [MaybeUninitSlice<'_>] ) -> Result<(usize, RecvFlags)>

Receives data on the socket from the remote address to which it is connected. Unlike recv this allows passing multiple buffers.

The connect method will connect this socket to a remote address. This method might fail if the socket is not connected.

In addition to the number of bytes read, this function returns the flags for the received message. See RecvFlags for more information about the returned flags.

Additional documentation can be found in manual of the OS:

§Safety

Normally casting a IoSliceMut to MaybeUninitSlice would be unsound, as that allows us to write uninitialised bytes to the buffer. However this implementation promises to not write uninitialised bytes to the bufs and passes it directly to recvmsg(2) system call. This promise ensures that this function can be called using bufs of type &mut [IoSliceMut].

Note that the io::Read::read_vectored implementation calls this function with bufs of type &mut [IoSliceMut], allowing initialised buffers to be used without using unsafe.

source

pub fn recv_vectored_with_flags( &self, bufs: &mut [MaybeUninitSlice<'_>], flags: c_int ) -> Result<(usize, RecvFlags)>

Identical to recv_vectored but allows for specification of arbitrary flags to the underlying recvmsg/WSARecv call.

§Safety

recv_from_vectored makes the same safety guarantees regarding bufs as recv_vectored.

source

pub fn peek(&self, buf: &mut [MaybeUninit<u8>]) -> Result<usize>

Receives data on the socket from the remote adress to which it is connected, without removing that data from the queue. On success, returns the number of bytes peeked.

Successive calls return the same data. This is accomplished by passing MSG_PEEK as a flag to the underlying recv system call.

§Safety

peek makes the same safety guarantees regarding the buffer as recv.

source

pub fn recv_from( &self, buf: &mut [MaybeUninit<u8>] ) -> Result<(usize, SockAddr)>

source

pub fn recv_from_with_flags( &self, buf: &mut [MaybeUninit<u8>], flags: c_int ) -> Result<(usize, SockAddr)>

Identical to recv_from but allows for specification of arbitrary flags to the underlying recvfrom call.

source

pub fn recv_from_vectored( &self, bufs: &mut [MaybeUninitSlice<'_>] ) -> Result<(usize, RecvFlags, SockAddr)>

Receives data from the socket. Returns the amount of bytes read, the RecvFlags and the remote address from the data is coming. Unlike recv_from this allows passing multiple buffers.

Additional documentation can be found in manual of the OS:

§Safety

recv_from_vectored makes the same safety guarantees regarding bufs as recv_vectored.

source

pub fn recv_from_vectored_with_flags( &self, bufs: &mut [MaybeUninitSlice<'_>], flags: c_int ) -> Result<(usize, RecvFlags, SockAddr)>

Identical to recv_from_vectored but allows for specification of arbitrary flags to the underlying recvmsg/WSARecvFrom call.

§Safety

recv_from_vectored makes the same safety guarantees regarding bufs as recv_vectored.

source

pub fn peek_from( &self, buf: &mut [MaybeUninit<u8>] ) -> Result<(usize, SockAddr)>

Receives data from the socket, without removing it from the queue.

Successive calls return the same data. This is accomplished by passing MSG_PEEK as a flag to the underlying recvfrom system call.

On success, returns the number of bytes peeked and the address from whence the data came.

§Safety

peek_from makes the same safety guarantees regarding the buffer as recv.

§Note: Datagram Sockets

For datagram sockets, the behavior of this method when buf is smaller than the datagram at the head of the receive queue differs between Windows and Unix-like platforms (Linux, macOS, BSDs, etc: colloquially termed “*nix”).

On *nix platforms, the datagram is truncated to the length of buf.

On Windows, an error corresponding to WSAEMSGSIZE will be returned.

For consistency between platforms, be sure to provide a sufficiently large buffer to avoid truncation; the exact size required depends on the underlying protocol.

If you just want to know the sender of the data, try peek_sender.

source

pub fn peek_sender(&self) -> Result<SockAddr>

Retrieve the sender for the data at the head of the receive queue.

This is equivalent to calling peek_from with a zero-sized buffer, but suppresses the WSAEMSGSIZE error on Windows.

source

pub fn recvmsg( &self, msg: &mut MsgHdrMut<'_, '_, '_>, flags: c_int ) -> Result<usize>

source

pub fn send(&self, buf: &[u8]) -> Result<usize>

Sends data on the socket to a connected peer.

This is typically used on TCP sockets or datagram sockets which have been connected.

On success returns the number of bytes that were sent.

Additional documentation can be found in manual of the OS:

source

pub fn send_with_flags(&self, buf: &[u8], flags: c_int) -> Result<usize>

Identical to send but allows for specification of arbitrary flags to the underlying send call.

source

pub fn send_vectored(&self, bufs: &[IoSlice<'_>]) -> Result<usize>

Send data to the connected peer. Returns the amount of bytes written.

source

pub fn send_vectored_with_flags( &self, bufs: &[IoSlice<'_>], flags: c_int ) -> Result<usize>

source

pub fn send_out_of_band(&self, buf: &[u8]) -> Result<usize>

Sends out-of-band (OOB) data on the socket to connected peer by setting the MSG_OOB flag for this call.

For more information, see send, out_of_band_inline.

source

pub fn send_to(&self, buf: &[u8], addr: &SockAddr) -> Result<usize>

source

pub fn send_to_with_flags( &self, buf: &[u8], addr: &SockAddr, flags: c_int ) -> Result<usize>

Identical to send_to but allows for specification of arbitrary flags to the underlying sendto call.

source

pub fn send_to_vectored( &self, bufs: &[IoSlice<'_>], addr: &SockAddr ) -> Result<usize>

source

pub fn send_to_vectored_with_flags( &self, bufs: &[IoSlice<'_>], addr: &SockAddr, flags: c_int ) -> Result<usize>

Identical to send_to_vectored but allows for specification of arbitrary flags to the underlying sendmsg/WSASendTo call.

source

pub fn sendmsg(&self, msg: &MsgHdr<'_, '_, '_>, flags: c_int) -> Result<usize>

source§

impl Socket

Socket options get/set using SOL_SOCKET.

Additional documentation can be found in documentation of the OS.

source

pub fn broadcast(&self) -> Result<bool>

Get the value of the SO_BROADCAST option for this socket.

For more information about this option, see set_broadcast.

source

pub fn set_broadcast(&self, broadcast: bool) -> Result<()>

Set the value of the SO_BROADCAST option for this socket.

When enabled, this socket is allowed to send packets to a broadcast address.

source

pub fn take_error(&self) -> Result<Option<Error>>

Get the value of the SO_ERROR option on this socket.

This will retrieve the stored error in the underlying socket, clearing the field in the process. This can be useful for checking errors between calls.

source

pub fn keepalive(&self) -> Result<bool>

Get the value of the SO_KEEPALIVE option on this socket.

For more information about this option, see set_keepalive.

source

pub fn set_keepalive(&self, keepalive: bool) -> Result<()>

Set value for the SO_KEEPALIVE option on this socket.

Enable sending of keep-alive messages on connection-oriented sockets.

source

pub fn linger(&self) -> Result<Option<Duration>>

Get the value of the SO_LINGER option on this socket.

For more information about this option, see set_linger.

source

pub fn set_linger(&self, linger: Option<Duration>) -> Result<()>

Set value for the SO_LINGER option on this socket.

If linger is not None, a close(2) or shutdown(2) will not return until all queued messages for the socket have been successfully sent or the linger timeout has been reached. Otherwise, the call returns immediately and the closing is done in the background. When the socket is closed as part of exit(2), it always lingers in the background.

§Notes

On most OSs the duration only has a precision of seconds and will be silently truncated.

On Apple platforms (e.g. macOS, iOS, etc) this uses SO_LINGER_SEC.

source

pub fn out_of_band_inline(&self) -> Result<bool>

Get value for the SO_OOBINLINE option on this socket.

For more information about this option, see set_out_of_band_inline.

source

pub fn set_out_of_band_inline(&self, oob_inline: bool) -> Result<()>

Set value for the SO_OOBINLINE option on this socket.

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 during receiving. As per RFC6093, TCP sockets using the Urgent mechanism are encouraged to set this flag.

source

pub fn recv_buffer_size(&self) -> Result<usize>

Get value for the SO_RCVBUF option on this socket.

For more information about this option, see set_recv_buffer_size.

source

pub fn set_recv_buffer_size(&self, size: usize) -> Result<()>

Set value for the SO_RCVBUF option on this socket.

Changes the size of the operating system’s receive buffer associated with the socket.

source

pub fn read_timeout(&self) -> Result<Option<Duration>>

Get value for the SO_RCVTIMEO option on this socket.

If the returned timeout is None, then read and recv calls will block indefinitely.

source

pub fn set_read_timeout(&self, duration: Option<Duration>) -> Result<()>

Set value for the SO_RCVTIMEO option on this socket.

If timeout is None, then read and recv calls will block indefinitely.

source

pub fn reuse_address(&self) -> Result<bool>

Get the value of the SO_REUSEADDR option on this socket.

For more information about this option, see set_reuse_address.

source

pub fn set_reuse_address(&self, reuse: bool) -> Result<()>

Set value for the SO_REUSEADDR option on this socket.

This indicates that futher calls to bind may allow reuse of local addresses. For IPv4 sockets this means that a socket may bind even when there’s a socket already listening on this port.

source

pub fn send_buffer_size(&self) -> Result<usize>

Get the value of the SO_SNDBUF option on this socket.

For more information about this option, see set_send_buffer_size.

source

pub fn set_send_buffer_size(&self, size: usize) -> Result<()>

Set value for the SO_SNDBUF option on this socket.

Changes the size of the operating system’s send buffer associated with the socket.

source

pub fn write_timeout(&self) -> Result<Option<Duration>>

Get value for the SO_SNDTIMEO option on this socket.

If the returned timeout is None, then write and send calls will block indefinitely.

source

pub fn set_write_timeout(&self, duration: Option<Duration>) -> Result<()>

Set value for the SO_SNDTIMEO option on this socket.

If timeout is None, then write and send calls will block indefinitely.

source§

impl Socket

Socket options for IPv4 sockets, get/set using IPPROTO_IP.

Additional documentation can be found in documentation of the OS.

source

pub fn header_included(&self) -> Result<bool>

Get the value of the IP_HDRINCL option on this socket.

For more information about this option, see set_header_included.

source

pub fn set_header_included(&self, included: bool) -> Result<()>

Set the value of the IP_HDRINCL option on this socket.

If enabled, the user supplies an IP header in front of the user data. Valid only for SOCK_RAW sockets; see raw(7) for more information. When this flag is enabled, the values set by IP_OPTIONS, IP_TTL, and IP_TOS are ignored.

source

pub fn join_multicast_v4( &self, multiaddr: &Ipv4Addr, interface: &Ipv4Addr ) -> Result<()>

Join a multicast group using IP_ADD_MEMBERSHIP option on this socket.

This function specifies a new multicast group for this socket to join. The address must be a valid multicast address, and interface is the address of the local interface with which the system should join the multicast group. If it’s Ipv4Addr::UNSPECIFIED (INADDR_ANY) then an appropriate interface is chosen by the system.

source

pub fn leave_multicast_v4( &self, multiaddr: &Ipv4Addr, interface: &Ipv4Addr ) -> Result<()>

Leave a multicast group using IP_DROP_MEMBERSHIP option on this socket.

For more information about this option, see join_multicast_v4.

source

pub fn join_multicast_v4_n( &self, multiaddr: &Ipv4Addr, interface: &InterfaceIndexOrAddress ) -> Result<()>

Join a multicast group using IP_ADD_MEMBERSHIP option on this socket.

This function specifies a new multicast group for this socket to join. The address must be a valid multicast address, and interface specifies the local interface with which the system should join the multicast group. See InterfaceIndexOrAddress.

source

pub fn leave_multicast_v4_n( &self, multiaddr: &Ipv4Addr, interface: &InterfaceIndexOrAddress ) -> Result<()>

Leave a multicast group using IP_DROP_MEMBERSHIP option on this socket.

For more information about this option, see join_multicast_v4_n.

source

pub fn multicast_if_v4(&self) -> Result<Ipv4Addr>

Get the value of the IP_MULTICAST_IF option for this socket.

For more information about this option, see set_multicast_if_v4.

source

pub fn set_multicast_if_v4(&self, interface: &Ipv4Addr) -> Result<()>

Set the value of the IP_MULTICAST_IF option for this socket.

Specifies the interface to use for routing multicast packets.

source

pub fn multicast_loop_v4(&self) -> Result<bool>

Get the value of the IP_MULTICAST_LOOP option for this socket.

For more information about this option, see set_multicast_loop_v4.

source

pub fn set_multicast_loop_v4(&self, loop_v4: bool) -> Result<()>

Set the value of the IP_MULTICAST_LOOP option for this socket.

If enabled, multicast packets will be looped back to the local socket. Note that this may not have any affect on IPv6 sockets.

source

pub fn multicast_ttl_v4(&self) -> Result<u32>

Get the value of the IP_MULTICAST_TTL option for this socket.

For more information about this option, see set_multicast_ttl_v4.

source

pub fn set_multicast_ttl_v4(&self, ttl: u32) -> Result<()>

Set the value of the IP_MULTICAST_TTL option for this socket.

Indicates the time-to-live value of outgoing multicast packets for this socket. The default value is 1 which means that multicast packets don’t leave the local network unless explicitly requested.

Note that this may not have any affect on IPv6 sockets.

source

pub fn ttl(&self) -> Result<u32>

Get the value of the IP_TTL option for this socket.

For more information about this option, see set_ttl.

source

pub fn set_ttl(&self, ttl: u32) -> Result<()>

Set the value of the IP_TTL option for this socket.

This value sets the time-to-live field that is used in every packet sent from this socket.

source§

impl Socket

Socket options for IPv6 sockets, get/set using IPPROTO_IPV6.

Additional documentation can be found in documentation of the OS.

source

pub fn join_multicast_v6( &self, multiaddr: &Ipv6Addr, interface: u32 ) -> Result<()>

Join a multicast group using IPV6_ADD_MEMBERSHIP option on this socket.

Some OSs use IPV6_JOIN_GROUP for this option.

This function specifies a new multicast group for this socket to join. The address must be a valid multicast address, and interface is the index of the interface to join/leave (or 0 to indicate any interface).

source

pub fn leave_multicast_v6( &self, multiaddr: &Ipv6Addr, interface: u32 ) -> Result<()>

Leave a multicast group using IPV6_DROP_MEMBERSHIP option on this socket.

Some OSs use IPV6_LEAVE_GROUP for this option.

For more information about this option, see join_multicast_v6.

source

pub fn multicast_hops_v6(&self) -> Result<u32>

Get the value of the IPV6_MULTICAST_HOPS option for this socket

For more information about this option, see set_multicast_hops_v6.

source

pub fn set_multicast_hops_v6(&self, hops: u32) -> Result<()>

Set the value of the IPV6_MULTICAST_HOPS option for this socket

Indicates the number of “routers” multicast packets will transit for this socket. The default value is 1 which means that multicast packets don’t leave the local network unless explicitly requested.

source

pub fn multicast_if_v6(&self) -> Result<u32>

Get the value of the IPV6_MULTICAST_IF option for this socket.

For more information about this option, see set_multicast_if_v6.

source

pub fn set_multicast_if_v6(&self, interface: u32) -> Result<()>

Set the value of the IPV6_MULTICAST_IF option for this socket.

Specifies the interface to use for routing multicast packets. Unlike ipv4, this is generally required in ipv6 contexts where network routing prefixes may overlap.

source

pub fn multicast_loop_v6(&self) -> Result<bool>

Get the value of the IPV6_MULTICAST_LOOP option for this socket.

For more information about this option, see set_multicast_loop_v6.

source

pub fn set_multicast_loop_v6(&self, loop_v6: bool) -> Result<()>

Set the value of the IPV6_MULTICAST_LOOP option for this socket.

Controls whether this socket sees the multicast packets it sends itself. Note that this may not have any affect on IPv4 sockets.

source

pub fn unicast_hops_v6(&self) -> Result<u32>

Get the value of the IPV6_UNICAST_HOPS option for this socket.

Specifies the hop limit for ipv6 unicast packets

source

pub fn set_unicast_hops_v6(&self, hops: u32) -> Result<()>

Set the value for the IPV6_UNICAST_HOPS option on this socket.

Specifies the hop limit for ipv6 unicast packets

source

pub fn only_v6(&self) -> Result<bool>

Get the value of the IPV6_V6ONLY option for this socket.

For more information about this option, see set_only_v6.

source

pub fn set_only_v6(&self, only_v6: bool) -> Result<()>

Set the value for the IPV6_V6ONLY option on this socket.

If this is set to true then the socket is restricted to sending and receiving IPv6 packets only. In this case two IPv4 and IPv6 applications can bind the same port at the same time.

If this is set to false then the socket can be used to send and receive packets from an IPv4-mapped IPv6 address.

source§

impl Socket

Socket options for TCP sockets, get/set using IPPROTO_TCP.

Additional documentation can be found in documentation of the OS.

source

pub fn keepalive_time(&self) -> Result<Duration>

Get the value of the TCP_KEEPIDLE option on this socket.

This returns the value of TCP_KEEPALIVE on macOS and iOS and TCP_KEEPIDLE on all other supported Unix operating systems.

source

pub fn keepalive_interval(&self) -> Result<Duration>

Get the value of the TCP_KEEPINTVL option on this socket.

For more information about this option, see set_tcp_keepalive.

source

pub fn keepalive_retries(&self) -> Result<u32>

Get the value of the TCP_KEEPCNT option on this socket.

For more information about this option, see set_tcp_keepalive.

source

pub fn set_tcp_keepalive(&self, params: &TcpKeepalive) -> Result<()>

Set parameters configuring TCP keepalive probes for this socket.

The supported parameters depend on the operating system, and are configured using the TcpKeepalive struct. At a minimum, all systems support configuring the keepalive time: the time after which the OS will start sending keepalive messages on an idle connection.

§Notes
  • This will enable SO_KEEPALIVE on this socket, if it is not already enabled.
  • On some platforms, such as Windows, any keepalive parameters not configured by the TcpKeepalive struct passed to this function may be overwritten with their default values. Therefore, this function should either only be called once per socket, or the same parameters should be passed every time it is called.
§Examples
use std::time::Duration;

use socket2::{Socket, TcpKeepalive, Domain, Type};

let socket = Socket::new(Domain::IPV4, Type::STREAM, None)?;
let keepalive = TcpKeepalive::new()
    .with_time(Duration::from_secs(4));
    // Depending on the target operating system, we may also be able to
    // configure the keepalive probe interval and/or the number of
    // retries here as well.

socket.set_tcp_keepalive(&keepalive)?;
source

pub fn nodelay(&self) -> Result<bool>

Get the value of the TCP_NODELAY option on this socket.

For more information about this option, see set_nodelay.

source

pub fn set_nodelay(&self, nodelay: bool) -> Result<()>

Set the value of the TCP_NODELAY option on this socket.

If set, this option disables the Nagle algorithm. This means that segments are always sent as soon as possible, even if there is only a small amount of data. When not set, data is buffered until there is a sufficient amount to send out, thereby avoiding the frequent sending of small packets.

source§

impl Socket

Unix only API.

source

pub fn accept4(&self, flags: c_int) -> Result<(Socket, SockAddr)>

Accept a new incoming connection from this listener.

This function directly corresponds to the accept4(2) function.

This function will block the calling thread until a new connection is established. When established, the corresponding Socket and the remote peer’s address will be returned.

Additional documentation can be found in manual of the OS:

source

pub fn set_cloexec(&self, close_on_exec: bool) -> Result<()>

Sets CLOEXEC on the socket.

§Notes

On supported platforms you can use Type::cloexec.

source

pub fn mss(&self) -> Result<u32>

Gets the value of the TCP_MAXSEG option on this socket.

For more information about this option, see set_mss.

source

pub fn set_mss(&self, mss: u32) -> Result<()>

Sets the value of the TCP_MAXSEG option on this socket.

The TCP_MAXSEG option denotes the TCP Maximum Segment Size and is only available on TCP sockets.

source

pub fn is_listener(&self) -> Result<bool>

Returns true if listen(2) was called on this socket by checking the SO_ACCEPTCONN option on this socket.

source

pub fn domain(&self) -> Result<Domain>

Returns the Domain of this socket by checking the SO_DOMAIN option on this socket.

source

pub fn protocol(&self) -> Result<Option<Protocol>>

Returns the Protocol of this socket by checking the SO_PROTOCOL option on this socket.

source

pub fn mark(&self) -> Result<u32>

Gets the value for the SO_MARK option on this socket.

This value gets the socket mark field for each packet sent through this socket.

On Linux this function requires the CAP_NET_ADMIN capability.

source

pub fn set_mark(&self, mark: u32) -> Result<()>

Sets the value for the SO_MARK option on this socket.

This value sets the socket mark field for each packet sent through this socket. Changing the mark can be used for mark-based routing without netfilter or for packet filtering.

On Linux this function requires the CAP_NET_ADMIN capability.

source

pub fn cork(&self) -> Result<bool>

Get the value of the TCP_CORK option on this socket.

For more information about this option, see set_cork.

source

pub fn set_cork(&self, cork: bool) -> Result<()>

Set the value of the TCP_CORK option on this socket.

If set, don’t send out partial frames. All queued partial frames are sent when the option is cleared again. There is a 200 millisecond ceiling on the time for which output is corked by TCP_CORK. If this ceiling is reached, then queued data is automatically transmitted.

source

pub fn quickack(&self) -> Result<bool>

Get the value of the TCP_QUICKACK option on this socket.

For more information about this option, see set_quickack.

source

pub fn set_quickack(&self, quickack: bool) -> Result<()>

Set the value of the TCP_QUICKACK option on this socket.

If set, acks are sent immediately, rather than delayed if needed in accordance to normal TCP operation. This flag is not permanent, it only enables a switch to or from quickack mode. Subsequent operation of the TCP protocol will once again enter/leave quickack mode depending on internal protocol processing and factors such as delayed ack timeouts occurring and data transfer.

source

pub fn thin_linear_timeouts(&self) -> Result<bool>

Get the value of the TCP_THIN_LINEAR_TIMEOUTS option on this socket.

For more information about this option, see set_thin_linear_timeouts.

source

pub fn set_thin_linear_timeouts(&self, timeouts: bool) -> Result<()>

Set the value of the TCP_THIN_LINEAR_TIMEOUTS option on this socket.

If set, the kernel will dynamically detect a thin-stream connection if there are less than four packets in flight. With less than four packets in flight the normal TCP fast retransmission will not be effective. The kernel will modify the retransmission to avoid the very high latencies that thin stream suffer because of exponential backoff.

source

pub fn device(&self) -> Result<Option<Vec<u8>>>

Gets the value for the SO_BINDTODEVICE option on this socket.

This value gets the socket binded device’s interface name.

source

pub fn bind_device(&self, interface: Option<&[u8]>) -> Result<()>

Sets the value for the SO_BINDTODEVICE option on this socket.

If a socket is bound to an interface, only packets received from that particular interface are processed by the socket. Note that this only works for some socket types, particularly AF_INET sockets.

If interface is None or an empty string it removes the binding.

source

pub fn reuse_port(&self) -> Result<bool>

Get the value of the SO_REUSEPORT option on this socket.

For more information about this option, see set_reuse_port.

source

pub fn set_reuse_port(&self, reuse: bool) -> Result<()>

Set value for the SO_REUSEPORT option on this socket.

This indicates that further calls to bind may allow reuse of local addresses. For IPv4 sockets this means that a socket may bind even when there’s a socket already listening on this port.

source

pub fn freebind(&self) -> Result<bool>

Get the value of the IP_FREEBIND option on this socket.

For more information about this option, see set_freebind.

source

pub fn set_freebind(&self, freebind: bool) -> Result<()>

Set value for the IP_FREEBIND option on this socket.

If enabled, this boolean option allows binding to an IP address that is nonlocal or does not (yet) exist. This permits listening on a socket, without requiring the underlying network interface or the specified dynamic IP address to be up at the time that the application is trying to bind to it.

source

pub fn original_dst(&self) -> Result<SockAddr>

Get the value for the SO_ORIGINAL_DST option on this socket.

This value contains the original destination IPv4 address of the connection redirected using iptables REDIRECT or TPROXY.

source

pub fn set_tcp_user_timeout(&self, timeout: Option<Duration>) -> Result<()>

Set the value of the TCP_USER_TIMEOUT option on this socket.

If set, this specifies the maximum amount of time that transmitted data may remain unacknowledged or buffered data may remain untransmitted before TCP will forcibly close the corresponding connection.

Setting timeout to None or a zero duration causes the system default timeouts to be used. If timeout in milliseconds is larger than c_uint::MAX, the timeout is clamped to c_uint::MAX. For example, when c_uint is a 32-bit value, this limits the timeout to approximately 49.71 days.

source

pub fn tcp_user_timeout(&self) -> Result<Option<Duration>>

Get the value of the TCP_USER_TIMEOUT option on this socket.

For more information about this option, see set_tcp_user_timeout.

source

pub fn tclass_v6(&self) -> Result<u32>

Get the value of the IPV6_TCLASS option for this socket.

For more information about this option, see set_tclass_v6.

source

pub fn set_tclass_v6(&self, tclass: u32) -> Result<()>

Set the value of the IPV6_TCLASS option for this socket.

Specifies the traffic class field that is used in every packets sent from this socket.

Trait Implementations§

source§

impl AsFd for Socket

source§

fn as_fd(&self) -> BorrowedFd<'_>

Borrows the file descriptor. Read more
source§

impl AsRawFd for Socket

source§

fn as_raw_fd(&self) -> c_int

Extracts the raw file descriptor. Read more
source§

impl Debug for Socket

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<OwnedFd> for Socket

source§

fn from(fd: OwnedFd) -> Socket

Converts to this type from the input type.
source§

impl From<Socket> for OwnedFd

source§

fn from(sock: Socket) -> OwnedFd

Converts to this type from the input type.
source§

impl From<Socket> for TcpListener

source§

fn from(socket: Socket) -> TcpListener

Converts to this type from the input type.
source§

impl From<Socket> for TcpStream

source§

fn from(socket: Socket) -> TcpStream

Converts to this type from the input type.
source§

impl From<Socket> for UdpSocket

source§

fn from(socket: Socket) -> UdpSocket

Converts to this type from the input type.
source§

impl From<Socket> for UnixDatagram

source§

fn from(socket: Socket) -> UnixDatagram

Converts to this type from the input type.
source§

impl From<Socket> for UnixListener

source§

fn from(socket: Socket) -> UnixListener

Converts to this type from the input type.
source§

impl From<Socket> for UnixStream

source§

fn from(socket: Socket) -> UnixStream

Converts to this type from the input type.
source§

impl From<TcpListener> for Socket

source§

fn from(socket: TcpListener) -> Socket

Converts to this type from the input type.
source§

impl From<TcpStream> for Socket

source§

fn from(socket: TcpStream) -> Socket

Converts to this type from the input type.
source§

impl From<UdpSocket> for Socket

source§

fn from(socket: UdpSocket) -> Socket

Converts to this type from the input type.
source§

impl From<UnixDatagram> for Socket

source§

fn from(socket: UnixDatagram) -> Socket

Converts to this type from the input type.
source§

impl From<UnixListener> for Socket

source§

fn from(socket: UnixListener) -> Socket

Converts to this type from the input type.
source§

impl From<UnixStream> for Socket

source§

fn from(socket: UnixStream) -> Socket

Converts to this type from the input type.
source§

impl FromRawFd for Socket

source§

unsafe fn from_raw_fd(fd: c_int) -> Socket

Constructs a new instance of Self from the given raw file descriptor. Read more
source§

impl IntoRawFd for Socket

source§

fn into_raw_fd(self) -> c_int

Consumes this object, returning the raw underlying file descriptor. Read more
source§

impl<'a> Read for &'a Socket

source§

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
source§

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>

Like read, except that it reads into a slice of buffers. Read more
source§

fn is_read_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 · source§

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

Read all bytes until EOF in this source, placing them into buf. Read more
1.0.0 · source§

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

Read all bytes until EOF in this source, appending them to buf. Read more
1.6.0 · source§

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

Read the exact number of bytes required to fill buf. Read more
source§

fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Pull some bytes from this source into the specified buffer. Read more
source§

fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Read the exact number of bytes required to fill cursor. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adaptor for this instance of Read. Read more
1.0.0 · source§

fn bytes(self) -> Bytes<Self>
where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 · source§

fn chain<R>(self, next: R) -> Chain<Self, R>
where R: Read, Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 · source§

fn take(self, limit: u64) -> Take<Self>
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more
source§

impl Read for Socket

source§

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
source§

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>

Like read, except that it reads into a slice of buffers. Read more
source§

fn is_read_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 · source§

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

Read all bytes until EOF in this source, placing them into buf. Read more
1.0.0 · source§

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

Read all bytes until EOF in this source, appending them to buf. Read more
1.6.0 · source§

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

Read the exact number of bytes required to fill buf. Read more
source§

fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Pull some bytes from this source into the specified buffer. Read more
source§

fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Read the exact number of bytes required to fill cursor. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adaptor for this instance of Read. Read more
1.0.0 · source§

fn bytes(self) -> Bytes<Self>
where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 · source§

fn chain<R>(self, next: R) -> Chain<Self, R>
where R: Read, Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 · source§

fn take(self, limit: u64) -> Take<Self>
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more
source§

impl<'a> Write for &'a Socket

source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Write a buffer into this writer, returning how many bytes were written. Read more
source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize>

Like write, except that it writes from a slice of buffers. Read more
source§

fn flush(&mut self) -> Result<()>

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · source§

fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more
source§

impl Write for Socket

source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Write a buffer into this writer, returning how many bytes were written. Read more
source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize>

Like write, except that it writes from a slice of buffers. Read more
source§

fn flush(&mut self) -> Result<()>

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · source§

fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more

Auto Trait Implementations§

§

impl Freeze for Socket

§

impl RefUnwindSafe for Socket

§

impl Send for Socket

§

impl Sync for Socket

§

impl Unpin for Socket

§

impl UnwindSafe for Socket

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.