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
//! Unix domain socket IPC server for local SDK-to-runtime communication.
pub use ;
pub use IpcServer;
use HashMap;
use Arc;
use ;
/// Shared map from connection ID to the per-connection outbound response sender.
///
/// The IPC server inserts an entry when a connection is accepted and removes it
/// when the connection closes. The pipeline reads from this map to route
/// `IpcResponse::ViolationAlert` back to the originating SDK client.
pub type ResponseRouter = ;
/// Create an empty [`ResponseRouter`].
/// Shared map from connection ID to the SDK identity the AAASM-3569 session
/// handshake *verified* for that connection.
///
/// Populated by the IPC server when a connection completes the authenticated
/// handshake (the peer proved possession of the agent's Ed25519 key) and
/// removed when the connection closes — the same lifecycle as
/// [`ResponseRouter`]. The pipeline reads it by `connection_id` to recompute
/// the SDK-identity verdict (AAASM-3640) against a trusted reference instead of
/// the attacker-controlled observed claim. When a connection has no entry (no
/// handshake / unsupported), the classifier falls back to `Unverifiable`.
pub type VerifiedIdentityStore = ;
/// Create an empty [`VerifiedIdentityStore`].