diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2016-09-29 18:06:03 +0300 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2016-09-29 18:06:03 +0300 |
| commit | e900019ac44fdac60c819e03508a50da5602a42c (patch) | |
| tree | df9a4ab05f03cbc9385f9ae08ea5196e69d9924a | |
| parent | 0ce82fc33a29426c7683cd58b0dd086bc980aec0 (diff) | |
| download | nginx-e900019ac44fdac60c819e03508a50da5602a42c.tar.gz nginx-e900019ac44fdac60c819e03508a50da5602a42c.tar.bz2 | |
Modules compatibility: status fields.
| -rw-r--r-- | src/http/ngx_http_request.h | 1 | ||||
| -rw-r--r-- | src/stream/ngx_stream.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index e0c987c38..e4a1cf059 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -541,6 +541,7 @@ struct ngx_http_request_s { unsigned disable_not_modified:1; unsigned stat_reading:1; unsigned stat_writing:1; + unsigned stat_processing:1; unsigned health_check:1; diff --git a/src/stream/ngx_stream.h b/src/stream/ngx_stream.h index c4bb61726..a2644a73a 100644 --- a/src/stream/ngx_stream.h +++ b/src/stream/ngx_stream.h @@ -229,6 +229,8 @@ struct ngx_stream_session_s { unsigned ssl:1; #endif + unsigned stat_processing:1; + unsigned health_check:1; }; |
