wsrx 0.5.16

Controlled TCP-over-WebSocket forwarding tunnel.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! WebSocket Reflector X
//!
//! A simple crate that proxies pure TCP connections to WebSocket connections
//! and vice versa.

pub mod proxy;

#[cfg(feature = "client")]
pub mod utils;

#[cfg(feature = "client")]
pub mod tunnel;

pub use proxy::{Error, Message, WrappedWsStream, proxy};