1
0
mirror of https://github.com/moparisthebest/spdylay synced 2024-12-22 07:38:52 -05:00

spdyd: Initialize Config::on_request_recv_callback

This commit is contained in:
Tatsuhiro Tsujikawa 2013-01-25 21:37:43 +09:00
parent 6732219dc7
commit 9f28b3056f

View File

@ -59,7 +59,8 @@ const std::string DEFAULT_HTML = "index.html";
const std::string SPDYD_SERVER = "spdyd spdylay/" SPDYLAY_VERSION;
} // namespace
Config::Config(): verbose(false), daemon(false), port(0), data_ptr(0),
Config::Config(): verbose(false), daemon(false), port(0),
on_request_recv_callback(0), data_ptr(0),
version(0), verify_client(false), no_tls(false)
{}