Skip to main content

Module ipc

Module ipc 

Source
Expand description

IPC module for CLI-to-daemon communication.

This module provides cross-platform IPC using local sockets:

  • Unix domain sockets on Linux/macOS
  • Named pipes on Windows

Follows the pattern from debugger-cli for reliable length-prefixed JSON message framing.

Re-exports§

pub use client::DaemonClient;
pub use protocol::Command;
pub use protocol::Request;
pub use protocol::Response;

Modules§

client
CLI-side IPC client for communicating with the daemon.
protocol
IPC protocol message types.
transport
Cross-platform IPC transport layer.