_io_bind

func _io_bind(fd: Int, addr: Int, port: Int) 'io -> Int

Binds fd to an IPv4 address and port; returns zero or a negative errno.

View Source
pub func _io_bind(fd: Int, addr: Int, port: Int) 'io -> Int {
	'io(request: .bind(fd, addr, port))
}