blob: 15facc693dc7b6da8e886be7ee6894327e9d13c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (C) Alejandro Colomar
* Copyright (C) NGINX, Inc.
*/
#ifndef NXT_HTTP_COMPRESS_GZIP_H_INCLUDED_
#define NXT_HTTP_COMPRESS_GZIP_H_INCLUDED_
#include "nxt_router.h"
#include "nxt_http.h"
#include "nxt_main.h"
#include "nxt_types.h"
nxt_int_t nxt_http_compress_gzip(nxt_task_t *task, nxt_http_request_t *r,
nxt_http_compress_conf_t *conf);
#endif /* NXT_HTTP_COMPRESS_GZIP_H_INCLUDED_ */
|