]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
minor changes
authorChristos Tsantilas <chtsanti@users.sourceforge.net>
Sat, 24 Nov 2012 14:27:56 +0000 (16:27 +0200)
committerChristos Tsantilas <chtsanti@users.sourceforge.net>
Sat, 24 Nov 2012 14:27:56 +0000 (16:27 +0200)
src/cf.data.pre
src/ssl/cert_validate_message.cc
src/ssl/cert_validate_message.h

index 987d534dc70927ee9036012ce408f1395398c7a5..c5108d25bf6e2f87a910cd0a1da827d7fb1cbcd4 100644 (file)
@@ -2366,7 +2366,7 @@ DOC_END
 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.
index c2e0c9931865246783b0ffa33906677db1b332be..93c1072f010d5ec792ecbaa37eb8ca713a4df6d5 100644 (file)
@@ -166,10 +166,6 @@ Ssl::CertValidationResponse::RecvdError::RecvdError(const RecvdError &old)
     setCert(old.cert.get());
 }
 
-Ssl::CertValidationResponse::RecvdError::~RecvdError()
-{
-}
-
 Ssl::CertValidationResponse::RecvdError & Ssl::CertValidationResponse::RecvdError::operator = (const RecvdError &old)
 {
     error_no = old.error_no;
@@ -197,10 +193,6 @@ Ssl::CertValidationMsg::CertItem & Ssl::CertValidationMsg::CertItem::operator =
     return *this;
 }
 
-Ssl::CertValidationMsg::CertItem::~CertItem()
-{
-}
-
 void
 Ssl::CertValidationMsg::CertItem::setCert(X509 *aCert)
 {
index e4b73190535a4c0f8a56d0984363c3c6cadfa3e1..b5d4f191545293f0d93e87597f9ae6fec0fdf4bc 100644 (file)
@@ -40,7 +40,6 @@ public:
     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
@@ -78,7 +77,6 @@ private:
         CertItem(): cert(NULL) {}
         CertItem(const CertItem &);
         CertItem & operator = (const CertItem &);
-        ~CertItem();
         void setCert(X509 *); ///< Sets cert to the given certificate
     };