tcp_listen
tcp_listen — creates a server-side TCP socket connection.
tcp_listen (port, backlog?)
portThe port to connect to.
backlogThe IP address of the host machine.
A file descriptor for a new, connected socket.
This function creates a connected socket. This can be accessed with Gamma
fd_* functions such as fd_write and fd_read.
See the example for tcp_accept.