We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent770858b commit4b6ea5aCopy full SHA for 4b6ea5a
boost/network/protocol/http/server/options.hpp
@@ -112,7 +112,6 @@ struct server_options {
112
boost::shared_ptr<utils::thread_pool>thread_pool()const {return thread_pool_; }
113
boost::shared_ptr<boost::asio::ssl::context>context()const {return context_; }
114
private:
115
- boost::shared_ptr<boost::asio::ssl::context> context_;
116
boost::shared_ptr<boost::asio::io_service> io_service_;
117
Handler &handler_;
118
string_type address_;
@@ -127,6 +126,7 @@ struct server_options {
127
126
boost::optional<boost::asio::socket_base::receive_low_watermark> receive_low_watermark_;
128
boost::optional<boost::asio::socket_base::send_low_watermark> send_low_watermark_;
129
boost::shared_ptr<utils::thread_pool> thread_pool_;
+ boost::shared_ptr<boost::asio::ssl::context> context_;
130
};
131
132
template<classTag,classHandler>