Expand description
§AeroSocket Core
Core WebSocket protocol implementation providing the foundation for AeroSocket Core Library
This is the core library that provides the fundamental WebSocket protocol implementation for AeroSocket. It includes:
- Error handling and types
- WebSocket frame parsing and generation
- Message handling and assembly
- Protocol constants and utilities
- Transport layer abstractions
Re-exports§
pub use error::Error;pub use error::Result;pub use frame::Frame;pub use frame::FrameKind;pub use handshake::HandshakeConfig;pub use handshake::HandshakeRequest;pub use handshake::HandshakeResponse;pub use message::Message;pub use message::MessageKind;pub use protocol::Opcode;pub use transport::Transport;