VocabularyurlsInputsOutputsWord descriptionOutputs an address specifier for use with
Connection-oriented networking.
ExamplesUSING: prettyprint urls ;
URL" ftp://ftp.cdrom.com" url-addr .
T{ inet { host "ftp.cdrom.com" } { port 21 } }
USING: io.sockets.secure prettyprint urls ;
URL" https://google.com/" url-addr .
T{ secure
{ addrspec T{ inet { host "google.com" } { port 443 } } }
{ hostname "google.com" }
}
Definition