Signature
u64 socket_connect(String host, u16 port)
Parameters
host : host name
port : port number
return value : the socket handle
Opens a socket connection to the given host and port.
The returned socket handle is then used with socket_read(), socket_write(), and socket_close().
Example
u64 fd = socket_connect("127.0.0.1", 80);
print(fd != 0 ? "connected to the local server" : "connect failed", "\n");
socket_close(fd);
Output
connected to the local server