_io_listen

func _io_listen(fd: Int, backlog: Int) 'io -> Int

Starts listening on fd with the requested pending-connection backlog.

View Source
pub func _io_listen(fd: Int, backlog: Int) 'io -> Int {
	'io(request: .listen(fd, backlog))
}