Crate aerosocket_core

Crate aerosocket_core 

Source
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;

Modules§

error
Error types for AeroSocket
frame
WebSocket frame parsing and serialization
handshake
WebSocket handshake implementation
message
Message handling for AeroSocket
prelude
Prelude module for AeroSocket Core
protocol
WebSocket protocol constants and utilities
transport
Transport layer abstraction