dstar_gateway_server/client_pool/
mod.rs

1//! Client pool — concurrent `SocketAddr` → `ClientHandle` map.
2
3pub mod handle;
4pub mod pool;
5
6pub use handle::{
7    ClientHandle, DEFAULT_TX_BUDGET_MAX_TOKENS, DEFAULT_TX_BUDGET_REFILL_PER_SEC, TokenBucket,
8};
9pub use pool::{ClientPool, DEFAULT_UNHEALTHY_THRESHOLD, UnhealthyOutcome};