secure-protocol? ( protocol -- ? )
Furnace framework » URL objects » URL implementation utilities

Prev:parse-host ( string -- host/f port/f )
Next:url-append-path ( path1 path2 -- path )


Vocabulary
urls

Inputs
protocola string


Outputs
?a boolean


Word description
Tests if protocol connections must be made with secure sockets (SSL/TLS).

Examples
USING: prettyprint urls ; "https" secure-protocol? .
t


Definition


: secure-protocol? ( protocol -- ? ) "https" = ;