Expand description
Local Socket implementation for IPC
This module provides a cross-platform local socket abstraction for IPC.
When the backend-interprocess feature is enabled, it uses the interprocess crate
for a more robust implementation. Otherwise, it falls back to the native implementation.
§Features
- Unix Domain Sockets on Unix systems
- Named Pipes on Windows
- Server/Client architecture
- Async support (with
asyncfeature)
Structs§
- Local
Socket Listener - A local socket listener that accepts incoming connections.
- Local
Socket Stream - A local socket stream for bidirectional communication.