_io_connect

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

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

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