flare-core 0.1.2

A high-performance, reliable long-connection communication toolkit for Rust, supporting WebSocket and QUIC protocols with features like authentication, device management, serialization negotiation, and protocol racing.
1
2
3
4
5
6
7
8
9
//! 客户端连接管理模块
//! 
//! 提供客户端连接相关的功能,包括:
//! - 连接状态管理:跟踪单个连接的状态变化

pub mod state;

// 重新导出常用类型
pub use state::{ConnectionState, ConnectionStateManager};