| 244 | bool respond_over_; |
| 245 | |
| 246 | void report_error(ipc_client* ipc, http_status_t errnum) |
| 247 | { |
| 248 | data_.i_hdr_res = hdr_res_; |
| 249 | data_.i_error = errnum; |
| 250 | ipc->send_message(HTTP_MSG_ERR, &data_, sizeof(data_)); |
| 251 | } |
| 252 | |
| 253 | void report(ipc_client* ipc, unsigned int nMsg) |
| 254 | { |
nothing calls this directly
no test coverage detected