docs.rs failed to build arcbox-transport-0.1.5
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
arcbox-transport-0.0.1-alpha.1
arcbox-transport
Transport abstractions for ArcBox host/guest communication.
Overview
This crate provides:
UnixTransportfor Unix domain socketsVsockTransportfor virtio-vsock endpoints (VsockAddr)Transport/TransportListenertraits for transport-agnostic code
Usage
use ;
use VsockAddr;
use Bytes;
let mut unix = new;
unix.connect.await?;
unix.send.await?;
let mut vsock = new;
vsock.connect.await?;
vsock.send.await?;
Port Notes
1024is the guest agent RPC port used byarcbox-agent.- Additional ports are protocol-specific (for example guest Docker API proxying) and are configured by higher-level runtime components.
License
MIT OR Apache-2.0