mirror of
https://github.com/nginx/nginx.git
synced 2026-09-09 15:17:58 +00:00
Modules compatibility: slow start fields.
This commit is contained in:
parent
07c914c0cb
commit
f3ece60723
4 changed files with 6 additions and 0 deletions
|
|
@ -98,6 +98,7 @@ typedef struct {
|
|||
ngx_uint_t max_conns;
|
||||
ngx_uint_t max_fails;
|
||||
time_t fail_timeout;
|
||||
ngx_msec_t slow_start;
|
||||
|
||||
unsigned down:1;
|
||||
unsigned backup:1;
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ struct ngx_http_upstream_rr_peer_s {
|
|||
|
||||
ngx_uint_t max_fails;
|
||||
time_t fail_timeout;
|
||||
ngx_msec_t slow_start;
|
||||
ngx_msec_t start_time;
|
||||
|
||||
ngx_uint_t down; /* unsigned down:1; */
|
||||
|
||||
|
|
|
|||
|
|
@ -54,6 +54,7 @@ typedef struct {
|
|||
ngx_uint_t max_conns;
|
||||
ngx_uint_t max_fails;
|
||||
time_t fail_timeout;
|
||||
ngx_msec_t slow_start;
|
||||
|
||||
unsigned down:1;
|
||||
unsigned backup:1;
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ struct ngx_stream_upstream_rr_peer_s {
|
|||
|
||||
ngx_uint_t max_fails;
|
||||
time_t fail_timeout;
|
||||
ngx_msec_t slow_start;
|
||||
ngx_msec_t start_time;
|
||||
|
||||
ngx_uint_t down; /* unsigned down:1; */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue