specters 2.2.0

HTTP client with full TLS, HTTP/2, and HTTP/3 fingerprint control
Documentation
//! RFC 6455 WebSocket client support.

mod client;
mod connection;
mod error;
mod frame;
mod handshake;
mod message;

use std::time::Duration;

pub use client::WebSocketBuilder;
pub(crate) use client::WebSocketClientParts;
pub use connection::WebSocket;
pub use error::{WebSocketError, WebSocketResult};
pub use message::{CloseCode, CloseFrame, Message};

/// WebSocket frame/message limits and idle timeouts.
#[derive(Debug, Clone)]
pub struct WebSocketConfig {
    pub max_frame_size: usize,
    pub max_message_size: usize,
    pub read_timeout: Option<Duration>,
    pub write_timeout: Option<Duration>,
}

impl Default for WebSocketConfig {
    fn default() -> Self {
        Self {
            max_frame_size: 16 * 1024 * 1024,
            max_message_size: 16 * 1024 * 1024,
            read_timeout: None,
            write_timeout: None,
        }
    }
}