diff options
Diffstat (limited to 'src/transport/mod.rs')
-rw-r--r-- | src/transport/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/transport/mod.rs b/src/transport/mod.rs index 452da1a..38682a6 100644 --- a/src/transport/mod.rs +++ b/src/transport/mod.rs @@ -79,6 +79,11 @@ mod noise; #[cfg(feature = "noise")] pub use noise::NoiseTransport; +#[cfg(feature = "websocket")] +mod websocket; +#[cfg(feature = "websocket")] +pub use websocket::WebsocketTransport; + #[derive(Debug, Clone, Copy)] struct Keepalive { // tcp_keepalive_time if the underlying protocol is TCP |