Searched defs:TcpStream (Results 1 – 9 of 9) sorted by relevance
| /commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/tcp/ |
| D | stream.rs | 26 pub struct TcpStream { struct 28 pub(crate) inner: net::TcpStream, argument 33 impl TcpStream { impl 42 pub fn connect(addr: SocketAddr) -> io::Result<TcpStream> { in connect() 51 pub fn from_std(stream: net::TcpStream) -> TcpStream { in from_std() 223 impl fmt::Debug for TcpStream { implementation 261 impl IntoRawSocket for TcpStream { implementation 267 impl AsRawSocket for TcpStream { implementation 273 impl FromRawSocket for TcpStream { implementation 280 impl Source for TcpStream { implementation
|
| D | listener.rs | 72 pub fn accept(&self) -> io::Result<(TcpStream, SocketAddr)> { in accept()
|
| /commonlibrary/rust/ylong_runtime/ylong_io/src/sys/linux/tcp/ |
| D | stream.rs | 23 pub struct TcpStream { struct 25 pub inner: net::TcpStream, argument 28 impl TcpStream { implementation 31 pub fn connect(addr: SocketAddr) -> io::Result<TcpStream> { in connect() 37 pub fn from_std(stream: net::TcpStream) -> TcpStream { in from_std() 181 impl Read for TcpStream { implementation 191 impl Write for TcpStream { implementation 205 impl Read for &TcpStream { implementation 217 impl Write for &TcpStream { implementation 234 impl std::fmt::Debug for TcpStream { implementation [all …]
|
| D | socket.rs | 85 pub(crate) fn connect(self, addr: SocketAddr) -> io::Result<TcpStream> { in connect()
|
| D | listener.rs | 52 pub fn accept(&self) -> io::Result<(TcpStream, SocketAddr)> { in accept()
|
| /commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/tcp/ |
| D | stream.rs | 60 pub struct TcpStream { struct 61 pub(crate) source: AsyncSource<ylong_io::TcpStream>, argument 64 impl Debug for TcpStream { implementation 70 impl TcpStream { impl 513 impl AsyncRead for TcpStream { implementation 523 impl AsyncWrite for TcpStream { implementation 558 impl AsRawSocket for TcpStream { implementation 571 impl AsRawFd for TcpStream { implementation
|
| D | listener.rs | 99 pub async fn accept(&self) -> io::Result<(TcpStream, SocketAddr)> { in accept()
|
| /commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ |
| D | connector.rs | 55 async fn tcp_stream(addr: &str) -> io::Result<TcpStream> { in tcp_stream() 173 mut conn: TcpStream, in tunnel() 177 ) -> Result<TcpStream, Error> { in tunnel()
|
| /commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/ |
| D | connector.rs | 143 mut conn: TcpStream, in tunnel() 147 ) -> Result<TcpStream, HttpClientError> { in tunnel()
|