Skip to main content

walrus_socket/
lib.rs

1//! Unix domain socket transport for the walrus protocol.
2//!
3//! Provides both client ([`Connection`], [`WalrusClient`]) and server
4//! ([`accept_loop`]) sides of the UDS transport, plus the length-prefixed
5//! framing [`codec`].
6
7pub mod client;
8pub mod codec;
9pub mod server;
10
11pub use client::{ClientConfig, Connection, WalrusClient};