comparison src/event/ngx_event_proxy.h @ 78:9f81437e0ad3

nginx-0.0.1-2003-04-21-18:55:47 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 21 Apr 2003 14:55:47 +0000
parents 57c2e18d3572
children a7e45c45a95c
comparison
equal deleted inserted replaced
77:57c2e18d3572 78:9f81437e0ad3
19 19
20 struct ngx_event_proxy_s { 20 struct ngx_event_proxy_s {
21 ngx_chain_t *read_hunks; 21 ngx_chain_t *read_hunks;
22 ngx_chain_t *last_read_hunk; 22 ngx_chain_t *last_read_hunk;
23 23
24 ngx_chain_t *shadow_hunks; 24 ngx_chain_t *file_hunks;
25 25
26 ngx_chain_t *in_hunks; 26 ngx_chain_t *in_hunks;
27 ngx_chain_t *last_in_hunk; 27 ngx_chain_t *last_in_hunk;
28 28
29 ngx_chain_t *out_hunks; 29 ngx_chain_t *out_hunks;
41 41
42 ngx_event_proxy_output_filter_pt output_filter; 42 ngx_event_proxy_output_filter_pt output_filter;
43 void *output_data; 43 void *output_data;
44 44
45 unsigned cachable:1; 45 unsigned cachable:1;
46 unsigned fatal_error:1;
46 unsigned block_upstream:1; 47 unsigned block_upstream:1;
47 unsigned upstream_eof:1; 48 unsigned upstream_eof:1;
48 unsigned upstream_error:1; 49 unsigned upstream_error:1;
49 unsigned downstream_eof:1; 50 unsigned downstream_eof:1;
50 unsigned downstream_error:1; 51 unsigned downstream_error:1;
51 52
52 int level; 53 int upstream_level;
54 int downstream_level;
53 55
54 int allocated; 56 int allocated;
55 int block_size; 57 int block_size;
56 int max_block_size; 58 int max_block_size;
57 59