Expand description

tokio-unix-ipc

This crate implements a minimal abstraction over UNIX domain sockets for the purpose of IPC on top of tokio. It lets you send both file handles and rust objects between processes. This is a replacement for my earlier unix-ipc crate.

How it works

This uses serde to serialize data over unix sockets via bincode. Thanks to the Handle abstraction you can also send any object across that is convertable into a unix file handle.

The way this works under the hood is that during serialization and deserialization encountered file descriptors are tracked. They are then sent over the unix socket separately. This lets unassociated processes share file handles.

If you only want the unix socket abstraction you can disable all default features and use the raw channels.

Features

  • serde: enables support for the non raw types
  • serde-structural: enables support for structural data passing
  • bootstrap: adds support for boostrapping
  • panic-support: adds support for IPC panic catching
  • backtrace: adds support for backtraces to panics

Modules

Support for cross-process panic handling.
This module provides extensions to serde for IPC.

Structs

A bootstrap helper.
Data received via SCM_CREDENTIALS from a remote process.
An async raw receiver.
An async raw sender.
A typed receiver.
A typed sender.

Functions

Creates a typed connected channel.
Creates a raw connected channel.