Home
last modified time | relevance | path

Searched refs:TcpIO (Results 1 – 5 of 5) sorted by relevance

/xiu/library/bytesio/src/
H A Dbytesio.rs92 pub struct TcpIO { struct
97 impl TcpIO { argument
107 impl TNetIO for TcpIO { implementation
/xiu/protocol/webrtc/src/session/
H A Dmod.rs16 use bytesio::bytesio::TcpIO;
53 let net_io: Box<dyn TNetIO + Send + Sync> = Box::new(TcpIO::new(stream)); in new()
/xiu/protocol/rtmp/src/session/
H A Dclient_session.rs27 bytesio::{TNetIO, TcpIO},
110 let tcp_io: Box<dyn TNetIO + Send + Sync> = Box::new(TcpIO::new(stream)); in new()
H A Dserver_session.rs28 bytesio::{TNetIO, TcpIO},
78 let tcp_io: Box<dyn TNetIO + Send + Sync> = Box::new(TcpIO::new(stream)); in new()
/xiu/protocol/rtsp/src/session/
H A Dmod.rs42 use bytesio::bytesio::TcpIO;
113 let net_io: Box<dyn TNetIO + Send + Sync> = Box::new(TcpIO::new(stream)); in new()