diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-01-23 19:56:03 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-01-23 19:56:03 +0300 |
commit | de532922d9ab42aa15b40d47c8db53ac2af38500 (patch) | |
tree | d6b7c6b21c7a6e0e3620a3e0c7198e63454d05e3 /src/nxt_http_parse.h | |
parent | 16cbf3c076a0aca6d47adaf3f719493674cf2363 (diff) | |
download | unit-de532922d9ab42aa15b40d47c8db53ac2af38500.tar.gz unit-de532922d9ab42aa15b40d47c8db53ac2af38500.tar.bz2 |
Introducing tasks.
Diffstat (limited to 'src/nxt_http_parse.h')
-rw-r--r-- | src/nxt_http_parse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nxt_http_parse.h b/src/nxt_http_parse.h index e61aa16c..c62cde71 100644 --- a/src/nxt_http_parse.h +++ b/src/nxt_http_parse.h @@ -72,8 +72,8 @@ typedef struct { } nxt_http_chunk_parse_t; -NXT_EXPORT nxt_buf_t *nxt_http_chunk_parse(nxt_http_chunk_parse_t *hcp, - nxt_buf_t *in); +NXT_EXPORT nxt_buf_t *nxt_http_chunk_parse(nxt_task_t *task, + nxt_http_chunk_parse_t *hcp, nxt_buf_t *in); #endif /* _NXT_HTTP_PARSE_H_INCLUDED_ */ |