Method: OpenSSL::OCSP::Response#status

Defined in:
ossl_ocsp.c

#statusObject



333
334
335
336
337
338
339
340
341
342
343
# File 'ossl_ocsp.c', line 333

static VALUE
ossl_ocspres_status(VALUE self)
{
    OCSP_RESPONSE *res;
    int st;

    GetOCSPRes(self, res);
    st = OCSP_response_status(res);

    return INT2NUM(st);
}