mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 17:52:38 +08:00
29 lines
514 B
C
29 lines
514 B
C
#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_ */
|