Method: OpenSSL::X509::StoreContext#error_depth
- Defined in:
- ossl_x509store.c
#error_depth ⇒ Integer
653 654 655 656 657 658 659 660 661 |
# File 'ossl_x509store.c', line 653
static VALUE
ossl_x509stctx_get_err_depth(VALUE self)
{
X509_STORE_CTX *ctx;
GetX509StCtx(self, ctx);
return INT2NUM(X509_STORE_CTX_get_error_depth(ctx));
}
|