rsclaw 2026.4.5

High-performance AI gateway with native OpenClaw A2A orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! OpenClaw WebSocket Gateway Protocol v3.
//!
//! Handles server-initiated handshake, device pairing, bidirectional
//! req/res RPC, and push events (tick, presence, session messages).

pub mod conn;
pub mod dispatch;
pub mod handshake;
pub mod methods;
pub mod rate_limit;
pub mod tick;
pub mod types;

pub use conn::{ConnHandle, ConnRegistry};
pub use handshake::{DeviceStore, root_handler, ws_handler};
pub use types::{ErrorShape, EventFrame};