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
//! ATP Protocol Layer - Binary frames, session negotiation, and transport.
//!
//! # Resource Management
//!
//! The `resource_manager` module provides Byzantine-resistant per-peer resource
//! limits to prevent resource exhaustion attacks. Integration points:
//!
//! - Session establishment: Check session limits before accepting new connections
//! - Frame processing: Validate frame rates and memory usage per peer
//! - Object requests: Limit concurrent requests per peer to prevent amplification
//! - Memory allocation: Track and limit per-peer memory usage for large objects
//!
//! The Byzantine defense processor wires `ResourceManager` into frame handling,
//! object requests, and session lifecycle accounting; transport adapters should
//! route inbound peer traffic through that processor before dispatching payloads.
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
/// Compatibility name for adapter code that treats ATP frames abstractly.
pub type AtpFrame = Frame;