1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//! IPC forwarding of QUIC primitives via RPC + per-stream socketpairs.
//!
//! Parallel to [`crate::rpc::quic`] which bridges QUIC operations via pure
//! RPC, this module bridges them over IPC with dedicated Unix socketpairs
//! for stream-level data, avoiding per-read/write serialization overhead.
//!
//! # Public API
//!
//! ## RTC traits (define the IPC RPC interface)
//!
//! - [`IpcConnection`] — connection-level stream management
//! - [`IpcConnect`] — connector capability (initiate outgoing connections)
//! - [`IpcListen`] — listener capability (accept incoming connections)
//!
//! ## Server-side adapters (wrap real QUIC types, implement RTC traits)
//!
//! - [`ConnectionAdapter`] — wraps `quic::Connection`, implements [`IpcConnection`]
//! - [`ConnectAdapter`] — wraps `quic::Connect`, implements [`IpcConnect`]
//! - [`ListenAdapter`] — wraps `quic::Listen`, implements [`IpcListen`]
//!
//! ## Client-side wrappers (wrap RTC clients, implement `quic::*` traits)
//!
//! - [`IpcConnectionHandle`] — wraps [`IpcConnectionClient`], implements `quic::Connection`
//! - [`IpcConnector`] — wraps [`IpcConnectClient`], implements `quic::Connect`
//! - [`IpcListener`] — wraps [`IpcListenClient`], implements `quic::Listen`
//!
//! ## Bootstrap
//!
//! - [`ConnectionBootstrap`] — one-shot value sent when a connection is established
//!
//! ## Bridge helpers
//!
//! - [`bridge_reader`] — run a QUIC read stream through IPC read frame IO
//! - [`bridge_writer`] — run IPC write frame IO into a QUIC write stream
pub
pub
pub
pub
pub use ;