method

status

v1_9_2_180 - Show latest stable - Class: OpenSSL::OCSP::Response
status()
public

No documentation available.

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

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

    return INT2NUM(st);
}