aboutsummaryrefslogtreecommitdiff
path: root/src/event/ngx_event_pipe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/event/ngx_event_pipe.h')
-rw-r--r--src/event/ngx_event_pipe.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/event/ngx_event_pipe.h b/src/event/ngx_event_pipe.h
index aef80de03..a928145f4 100644
--- a/src/event/ngx_event_pipe.h
+++ b/src/event/ngx_event_pipe.h
@@ -39,13 +39,16 @@ struct ngx_event_pipe_s {
unsigned read:1;
unsigned cachable:1;
unsigned upstream_done:1;
- unsigned upstream_eof:1;
unsigned upstream_error:1;
+ unsigned upstream_eof:1;
+ unsigned upstream_blocked:1;
unsigned downstream_done:1;
unsigned downstream_error:1;
+ unsigned cyclic_temp_file:1;
int hunks;
ngx_bufs_t bufs;
+ ngx_hunk_tag_t tag;
size_t max_busy_len;
@@ -65,6 +68,7 @@ struct ngx_event_pipe_s {
ngx_file_t *temp_file;
ngx_path_t *temp_path;
char *temp_file_warn;
+ /* STUB */ int num;
};