Skip to main content

Module local_socket

Module local_socket 

Source
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 async feature)

Structs§

LocalSocketListener
A local socket listener that accepts incoming connections.
LocalSocketStream
A local socket stream for bidirectional communication.