diff options
Diffstat (limited to 'src/http/ngx_http_upstream.h')
-rw-r--r-- | src/http/ngx_http_upstream.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/http/ngx_http_upstream.h b/src/http/ngx_http_upstream.h index a1780292c..117def185 100644 --- a/src/http/ngx_http_upstream.h +++ b/src/http/ngx_http_upstream.h @@ -16,13 +16,14 @@ #include <ngx_http.h> -#define NGX_HTTP_UPSTREAM_FT_ERROR 0x02 -#define NGX_HTTP_UPSTREAM_FT_TIMEOUT 0x04 -#define NGX_HTTP_UPSTREAM_FT_INVALID_HEADER 0x08 -#define NGX_HTTP_UPSTREAM_FT_HTTP_500 0x10 -#define NGX_HTTP_UPSTREAM_FT_HTTP_404 0x20 -#define NGX_HTTP_UPSTREAM_FT_BUSY_LOCK 0x40 -#define NGX_HTTP_UPSTREAM_FT_MAX_WAITING 0x80 +#define NGX_HTTP_UPSTREAM_FT_ERROR 0x002 +#define NGX_HTTP_UPSTREAM_FT_TIMEOUT 0x004 +#define NGX_HTTP_UPSTREAM_FT_INVALID_HEADER 0x008 +#define NGX_HTTP_UPSTREAM_FT_HTTP_500 0x010 +#define NGX_HTTP_UPSTREAM_FT_HTTP_503 0x020 +#define NGX_HTTP_UPSTREAM_FT_HTTP_404 0x040 +#define NGX_HTTP_UPSTREAM_FT_BUSY_LOCK 0x080 +#define NGX_HTTP_UPSTREAM_FT_MAX_WAITING 0x100 #define NGX_HTTP_UPSTREAM_INVALID_HEADER 40 |