diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2003-11-17 16:15:03 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2003-11-17 16:15:03 +0000 |
| commit | d7fdb3535bc277d0bc16d31981bb84d30c45500f (patch) | |
| tree | 4ddeecc1f37dd3d2626b6a79806000a9466b3436 /src/event/ngx_event_pipe.h | |
| parent | f2e676aa1585de170b39cf3e9d71b88db47e4b1b (diff) | |
| download | nginx-d7fdb3535bc277d0bc16d31981bb84d30c45500f.tar.gz nginx-d7fdb3535bc277d0bc16d31981bb84d30c45500f.tar.bz2 | |
nginx-0.0.1-2003-11-17-19:15:03 import
Diffstat (limited to '')
| -rw-r--r-- | src/event/ngx_event_pipe.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/event/ngx_event_pipe.h b/src/event/ngx_event_pipe.h index f7cb6d00a..ce458d33d 100644 --- a/src/event/ngx_event_pipe.h +++ b/src/event/ngx_event_pipe.h @@ -15,6 +15,9 @@ typedef int (*ngx_event_pipe_output_filter_pt)(void *data, ngx_chain_t *chain); struct ngx_event_pipe_s { + ngx_connection_t *upstream; + ngx_connection_t *downstream; + ngx_chain_t *free_raw_hunks; ngx_chain_t *in; ngx_chain_t **last_in; @@ -59,9 +62,6 @@ struct ngx_event_pipe_s { off_t max_temp_file_size; int temp_file_write_size; - ngx_connection_t *upstream; - ngx_connection_t *downstream; - ngx_msec_t read_timeout; ngx_msec_t send_timeout; ssize_t send_lowat; @@ -71,6 +71,7 @@ struct ngx_event_pipe_s { ngx_chain_t *preread_hunks; int preread_size; + ngx_hunk_t *hunk_to_file; ngx_temp_file_t *temp_file; |
