Expand description
Thin wrapper around POSIX sockets.
The standard library sockets are good for dealing with TCP, UDP and Unix streaming and datagram sockets. However, for other sockets, you will get no help from the standard library.
Additionally, the standard library sockets don’t always expose all underlying features of the sockets.
For example, you can not send file descriptors over the standard library sockets without resorting to libc
.
This library intends to expose the POSIX socket API to Rust without cutting features. It is currently still a work in progress.
Modules§
Structs§
- Inet4
Socket Address - IPv4 socket address.
- Inet6
Socket Address - IPv6 socket address.
- Socket
- A POSIX socket.
- Socket
Address - Generic socket address, large enough to hold any valid address.
- Unix
Socket Address - Unix socket address.
Traits§
- AsSocket
Address - A type that is binary compatible with a socket address.
- Generic
Socket Address - A socket address that supports multiple address families at runtime.
- Specific
Socket Address - A socket address that only supports one specific family.
Functions§
- disable_
sigpipe - Disable SIGPIPE for the current process.