Modules compatibility: down flag promoted to a bitmask.

It is to be used as a bitmask with various bits set/reset when appropriate.
63b8b157b776 made a similar change to ngx_http_upstream_rr_peer_t.down and
ngx_stream_upstream_rr_peer_t.down.
This commit is contained in:
Ruslan Ermilov 2017-09-22 22:49:42 +03:00
parent ccd7e1037e
commit e7738ce82d
2 changed files with 2 additions and 2 deletions

View File

@ -98,8 +98,8 @@ typedef struct {
ngx_uint_t max_fails;
time_t fail_timeout;
ngx_msec_t slow_start;
ngx_uint_t down;
unsigned down:1;
unsigned backup:1;
NGX_COMPAT_BEGIN(6)

View File

@ -58,8 +58,8 @@ typedef struct {
ngx_uint_t max_fails;
time_t fail_timeout;
ngx_msec_t slow_start;
ngx_uint_t down;
unsigned down:1;
unsigned backup:1;
NGX_COMPAT_BEGIN(4)