diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-18 16:27:25 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-22 10:57:29 +0100 |
commit | d5a36f4f750e63294cefed10f55b29fe7409bba6 (patch) | |
tree | 0cebfb90d8a004a6e5d261077f72be05a32101a7 /src/libserver/protocol.c | |
parent | 4b75d23d067118e2874ec3b8726d49e3f185b811 (diff) | |
download | rspamd-d5a36f4f750e63294cefed10f55b29fe7409bba6.tar.gz rspamd-d5a36f4f750e63294cefed10f55b29fe7409bba6.zip |
[Project] Another iteration
Diffstat (limited to 'src/libserver/protocol.c')
-rw-r--r-- | src/libserver/protocol.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libserver/protocol.c b/src/libserver/protocol.c index 7df5b27c5..f2827828b 100644 --- a/src/libserver/protocol.c +++ b/src/libserver/protocol.c @@ -1766,7 +1766,7 @@ rspamd_protocol_write_log_pipe (struct rspamd_task *task) } void -rspamd_protocol_write_reply (struct rspamd_task *task) +rspamd_protocol_write_reply (struct rspamd_task *task, ev_tstamp timeout) { struct rspamd_http_message *msg; const gchar *ctype = "application/json"; @@ -1786,7 +1786,7 @@ rspamd_protocol_write_reply (struct rspamd_task *task) msg->flags |= RSPAMD_HTTP_FLAG_SPAMC; } - msg->date = time (NULL); + msg->date = ev_time (); msg_debug_protocol ("writing reply to client"); if (task->err != NULL) { @@ -1832,7 +1832,7 @@ rspamd_protocol_write_reply (struct rspamd_task *task) rspamd_http_connection_reset (task->http_conn); rspamd_http_connection_write_message (task->http_conn, msg, NULL, - ctype, task, &task->tv); + ctype, task, timeout); task->processed_stages |= RSPAMD_TASK_STAGE_REPLIED; } |