You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
783 B
35 lines
783 B
//! Lightweight, flexible WebSockets for Rust.
|
|
#![deny(
|
|
missing_docs,
|
|
missing_copy_implementations,
|
|
missing_debug_implementations,
|
|
trivial_casts,
|
|
trivial_numeric_casts,
|
|
unstable_features,
|
|
unused_must_use,
|
|
unused_mut,
|
|
unused_imports,
|
|
unused_import_braces
|
|
)]
|
|
|
|
pub use http;
|
|
|
|
pub mod buffer;
|
|
pub mod client;
|
|
pub mod error;
|
|
pub mod handshake;
|
|
pub mod protocol;
|
|
pub mod server;
|
|
pub mod stream;
|
|
pub mod util;
|
|
|
|
const READ_BUFFER_CHUNK_SIZE: usize = 4096;
|
|
type ReadBuffer = buffer::ReadBuffer<READ_BUFFER_CHUNK_SIZE>;
|
|
|
|
pub use crate::{
|
|
client::{client, connect},
|
|
error::{Error, Result},
|
|
handshake::{client::ClientHandshake, server::ServerHandshake, HandshakeError},
|
|
protocol::{Message, WebSocket},
|
|
server::{accept, accept_hdr},
|
|
};
|
|
|