Crate unix
Expand description
Unix (Domain) socket support for Rama.
§Rama
Crate used by the end-user rama
crate and rama
crate authors alike.
Learn more about rama
:
- Github: https://github.com/plabayo/rama
- Book: https://ramaproxy.org/book/
Modules§
- client
- Unix (domain) socket client (connector) module for Rama.
- codec
- Adaptors from
AsyncRead
/AsyncWrite
to Stream/Sink - server
- Unix (domain) socket server module for Rama.
Structs§
- Client
Unix Socket Info - Information about the socket on the egress end.
- Tokio
Socket Address - An address associated with a Tokio Unix socket.
- Unix
Datagram - An I/O object representing a Unix datagram socket.
- Unix
Datagram Framed - A unified
Stream
andSink
interface to an underlyingUnixDatagram
, using theEncoder
andDecoder
traits to encode and decode frames. - Unix
Socket - A Unix socket that has not yet been converted to a
UnixStream
,UnixDatagram
, or [UnixListener
]. - Unix
Socket Address - An address associated with a Unix socket.
- Unix
Socket Info - Connected unix socket information.
- Unix
Stream - A structure representing a connected Unix socket.