blob: 5dfd46733d87a66569a6b969101dc45a58646f98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_
#define _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_array.h>
#include <ngx_http.h>
typedef struct {
int dummy;
} ngx_http_proxy_header_in_t;
typedef struct {
ngx_chain_t *out;
ngx_hunk_t *hunk;
int last_hunk;
ngx_array_t *hunks;
ngx_http_proxy_header_in_t *header_in;
} ngx_http_proxy_ctx_t;
extern ngx_http_module_t ngx_http_proxy_module;
#endif /* _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_ */
|