method
status_string
v1_9_3_125 -
Show latest stable
- Class:
OpenSSL::OCSP::Response
status_string()public
No documentation available.
static VALUE
ossl_ocspres_status_string(VALUE self)
{
OCSP_RESPONSE *res;
int st;
GetOCSPRes(self, res);
st = OCSP_response_status(res);
return rb_str_new2(OCSP_response_status_str(st));
}