#endif
char *ssl_crt_validator;
HelperChildConfig ssl_crt_validator_Children;
- Config();
+ Config():
+#if USE_SSL_CRTD
+ ssl_crtd(NULL),
+#endif
+ ssl_crt_validator(NULL) {}
+
~Config();
private:
Config(const Config &); // not implemented
#define STUB_API "stub_DelayId.cc"
#include "tests/STUB.h"
-DelayId::DelayId() {}
+DelayId::DelayId(): pool_(0), compositeId(NULL), markedAsNoDelay(false) {}
DelayId::~DelayId() {}
void DelayId::delayRead(DeferredRead const&) STUB_NOP
#define STUB_API "HttpReply.cc"
#include "tests/STUB.h"
-HttpReply::HttpReply() : HttpMsg(hoReply)
-{
-// XXX: required by testStore
-// STUB
-}
+HttpReply::HttpReply() : HttpMsg(hoReply), date (0), last_modified (0),
+ expires (0), surrogate_control (NULL), content_range (NULL), keep_alive (0),
+ protoPrefix("HTTP/"), bodySizeMax(-2)
+STUB_NOP
HttpReply::~HttpReply() STUB
void HttpReply::setHeaders(http_status status, const char *reason, const char *ctype, int64_t clen, time_t lmt, time_t expires_) STUB
void HttpReply::packHeadersInto(Packer * p) const STUB
#include "tests/STUB.h"
#include "ssl/Config.h"
-Ssl::Config::Config() { printf("Ssl::Config::Config No implemented\n"); }
-Ssl::Config::~Config() { printf("Ssl::Config::Config No implemented\n"); }
+Ssl::Config::~Config() STUB_NOP
Ssl::Config Ssl::TheConfig;
#include "ssl/context_storage.h"