Home
last modified time | relevance | path

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

/DragonOS/tools/qemu/
H A Difup-nat53 --listen-address=$GATEWAY \
/DragonOS/user/apps/http_server/
H A Dmain.c209 if (listen(server_fd, 3) < 0) in main()
/DragonOS/user/apps/test_bind/
H A Dmain.c207 if (listen(server_fd, 3) < 0) in main()
/DragonOS/kernel/src/net/socket/
H A Dinet.rs546 socket.listen(local_endpoint.port) in do_listen()
548 socket.listen(local_endpoint) in do_listen()
803 fn listen(&mut self, backlog: usize) -> Result<(), SystemError> { in listen() method
H A Dmod.rs153 fn listen(&mut self, _backlog: usize) -> Result<(), SystemError> { in listen() method
/DragonOS/kernel/src/net/
H A Dsyscall.rs328 pub fn listen(fd: usize, backlog: usize) -> Result<usize, SystemError> { in listen() method
333 socket.listen(backlog)?; in listen()
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.8.md305 * 删除 listen 处的端口检测逻辑,延至实现端口复用时完成
/DragonOS/kernel/src/syscall/
H A Dmod.rs545 SYS_LISTEN => Self::listen(args[0], args[1]), in handle()