File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
boost/network/protocol/http/server Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,6 @@ struct server_options {
112
112
boost::shared_ptr<utils::thread_pool> thread_pool () const { return thread_pool_; }
113
113
boost::shared_ptr<boost::asio::ssl::context> context () const { return context_; }
114
114
private:
115
- boost::shared_ptr<boost::asio::ssl::context> context_;
116
115
boost::shared_ptr<boost::asio::io_service> io_service_;
117
116
Handler &handler_;
118
117
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
127
boost::optional<boost::asio::socket_base::send_low_watermark> send_low_watermark_;
129
128
boost::shared_ptr<utils::thread_pool> thread_pool_;
129
+ boost::shared_ptr<boost::asio::ssl::context> context_;
130
130
};
131
131
132
132
template <class Tag , class Handler >
You can’t perform that action at this time.
0 commit comments