Handbook Glossary
factorcode.org
set-verify-depth ( ctx -- )


Vocabulary
io.sockets.secure.openssl

Inputs
ctxan object


Outputs
None

Definition
USING: accessors kernel openssl.libssl ;

IN: io.sockets.secure.openssl

: set-verify-depth ( ctx -- )
dup config>> verify-depth>> [
[ handle>> ] [ config>> verify-depth>> ] bi
SSL_CTX_set_verify_depth
] [ drop ] if ;