(tcp-connect string integer) -> stream
(tcp-connect integer integer) -> stream
Creates a connection to the address given in string, on the port defined by integer.
Alternatively, it will accept a numeric address in place of the string.
Example:
>>(tcp-connect "www.ephemeralsecurity.com" 80) :: [stream] >> (resolve-addr "www.ephemeralsecurity.com") :: -660069061 >> (tcp-connect -660069061 80) :: [stream 55A3C0]