Lines Matching defs:OcspCertStatus
61 pub struct OcspCertStatus(c_int);
63 impl OcspCertStatus {
64 pub const GOOD: OcspCertStatus = OcspCertStatus(ffi::V_OCSP_CERTSTATUS_GOOD);
65 pub const REVOKED: OcspCertStatus = OcspCertStatus(ffi::V_OCSP_CERTSTATUS_REVOKED);
66 pub const UNKNOWN: OcspCertStatus = OcspCertStatus(ffi::V_OCSP_CERTSTATUS_UNKNOWN);
68 pub fn from_raw(raw: c_int) -> OcspCertStatus {
69 OcspCertStatus(raw)
112 pub status: OcspCertStatus,
199 status: OcspCertStatus(status),