wsrx/lib.rs
1//! WebSocket Reflector X
2//!
3//! A simple crate that proxies pure TCP connections to WebSocket connections
4//! and vice versa.
5
6pub mod proxy;
7
8#[cfg(feature = "client")]
9pub mod utils;
10
11#[cfg(feature = "client")]
12pub mod tunnel;
13
14pub use proxy::{Error, Message, WrappedWsStream, proxy};