File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -167,13 +167,13 @@ class webserver {
167
167
const std::string file_upload_dir;
168
168
const bool generate_random_filename_on_upload;
169
169
const bool deferred_enabled;
170
- bool single_resource;
171
- bool tcp_nodelay;
170
+ const bool single_resource;
171
+ const bool tcp_nodelay;
172
172
pthread_mutex_t mutexwait;
173
173
pthread_cond_t mutexcond;
174
- render_ptr not_found_resource;
175
- render_ptr method_not_allowed_resource;
176
- render_ptr internal_error_resource;
174
+ const render_ptr not_found_resource;
175
+ const render_ptr method_not_allowed_resource;
176
+ const render_ptr internal_error_resource;
177
177
std::map<details::http_endpoint, http_resource*> registered_resources;
178
178
std::map<std::string, http_resource*> registered_resources_str;
179
179
You can’t perform that action at this time.
0 commit comments