NAME: sslcrtvalidator_children
TYPE: HelperChildConfig
IFDEF: USE_SSL
-DEFAULT: 32 startup=5 idle=1 concurrency=0
+DEFAULT: 32 startup=5 idle=1 concurrency=1
LOC: Ssl::TheConfig.ssl_crt_validator_Children
DOC_START
The maximum number of processes spawn to service ssl server.
setCert(old.cert.get());
}
-Ssl::CertValidationResponse::RecvdError::~RecvdError()
-{
-}
-
Ssl::CertValidationResponse::RecvdError & Ssl::CertValidationResponse::RecvdError::operator = (const RecvdError &old)
{
error_no = old.error_no;
return *this;
}
-Ssl::CertValidationMsg::CertItem::~CertItem()
-{
-}
-
void
Ssl::CertValidationMsg::CertItem::setCert(X509 *aCert)
{
public:
RecvdError(): id(0), error_no(SSL_ERROR_NONE), cert(NULL) {}
RecvdError(const RecvdError &);
- ~RecvdError();
RecvdError & operator = (const RecvdError &);
void setCert(X509 *); ///< Sets cert to the given certificate
int id; ///< The id of the error
CertItem(): cert(NULL) {}
CertItem(const CertItem &);
CertItem & operator = (const CertItem &);
- ~CertItem();
void setCert(X509 *); ///< Sets cert to the given certificate
};