Home
last modified time | relevance | path

Searched refs:listen (Results 1 – 4 of 4) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/tcp/
Dsocket.rs74 pub(crate) fn listen(self, backlog: u32) -> io::Result<()> { in listen() method
77 use WinSock::listen; in listen()
81 listen(self.socket as _, backlog), in listen()
Dlistener.rs48 socket.listen(1024)?; in bind()
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/linux/tcp/
Dsocket.rs73 pub(crate) fn listen(self, max_connect: c_int) -> io::Result<TcpListener> { in listen() method
74 syscall!(listen(self.socket, max_connect))?; in listen()
Dlistener.rs41 socket.listen(1024) in bind()