Handbook
Glossary
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
protocol
a
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
USING:
kernel
;
IN:
urls
:
secure-protocol?
( protocol -- ? )
"https"
=
;