File tree Expand file tree Collapse file tree 3 files changed +1
-8
lines changed
Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,6 @@ http_response::http_response(const http_response_builder& builder):
5353 keepalive_msg (builder._keepalive_msg),
5454 send_topic (builder._send_topic),
5555 underlying_connection (0x0 ),
56- ca (0x0 ),
57- closure_data (0x0 ),
5856 ce (builder._ce),
5957 cycle_callback (builder._cycle_callback),
6058 get_raw_response (this , builder._get_raw_response),
Original file line number Diff line number Diff line change @@ -94,8 +94,6 @@ class http_response
9494 keepalive_msg (b.keepalive_msg),
9595 send_topic (b.send_topic),
9696 underlying_connection (b.underlying_connection),
97- ca (0x0 ),
98- closure_data (0x0 ),
9997 ce (b.ce),
10098 cycle_callback (b.cycle_callback),
10199 get_raw_response (b.get_raw_response),
@@ -256,8 +254,6 @@ class http_response
256254 std::string keepalive_msg;
257255 std::string send_topic;
258256 struct MHD_Connection * underlying_connection;
259- void (*ca)(void *);
260- void * closure_data;
261257 details::cache_entry* ce;
262258 cycle_callback_ptr cycle_callback;
263259
Original file line number Diff line number Diff line change @@ -217,8 +217,7 @@ void webserver::request_completed (
217217 {
218218 mr->ws ->internal_comet_manager ->complete_request (mr->dhrs ->connection_id );
219219 }
220- if (mr->dhrs .res != 0x0 && mr->dhrs ->ca != 0x0 )
221- mr->dhrs ->ca (mr->dhrs ->closure_data );
220+
222221 delete mr;
223222 mr = 0x0 ;
224223 }
You can’t perform that action at this time.
0 commit comments