url-addr ( url -- addr )
Furnace framework ยป URL objects

Prev:set-query-param ( url value key -- url )
Next:URL encoding and decoding


Vocabulary
urls

Inputs
urlan url


Outputs
addran address specifier


Word description
Outputs an address specifier for use with Connection-oriented networking.

Examples
USING: 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