rename to transportread/transportwrite/transportreadext/transportext

This commit is contained in:
Toshit Chawda 2025-01-29 13:25:20 -08:00
parent 3f381d6b39
commit a986fc07c4
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
16 changed files with 96 additions and 96 deletions

View file

@ -34,7 +34,7 @@ use wisp_mux::{
AnyProtocolExtensionBuilder, ProtocolExtensionListExt,
},
packet::StreamType,
ws::{TokioWebsocketsTransport, WebSocketWrite, WebSocketExt},
ws::{TokioWebsocketsTransport, TransportWrite, TransportExt},
ClientMux, WispError, WispV2Handshake,
};
@ -98,7 +98,7 @@ async fn create_mux(
opts: &Cli,
) -> Result<
(
ClientMux<impl WebSocketWrite>,
ClientMux<impl TransportWrite>,
impl Future<Output = Result<(), WispError>> + Send,
),
Box<dyn Error + Send + Sync>,