From e23e7dd83a75b073773c3bc1e57bdb36c27bcc3f Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Tue, 10 Mar 2026 16:43:41 +0400 Subject: Proxy authentication definitions. --- src/http/ngx_http_request.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/http/ngx_http_request.h') diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 1b012f810..7a77498eb 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -95,6 +95,7 @@ #define NGX_HTTP_FORBIDDEN 403 #define NGX_HTTP_NOT_FOUND 404 #define NGX_HTTP_NOT_ALLOWED 405 +#define NGX_HTTP_PROXY_AUTH_REQUIRED 407 #define NGX_HTTP_REQUEST_TIME_OUT 408 #define NGX_HTTP_CONFLICT 409 #define NGX_HTTP_LENGTH_REQUIRED 411 @@ -210,6 +211,7 @@ typedef struct { #endif ngx_table_elt_t *authorization; + ngx_table_elt_t *proxy_authorization; ngx_table_elt_t *keep_alive; @@ -273,6 +275,7 @@ typedef struct { ngx_table_elt_t *content_range; ngx_table_elt_t *accept_ranges; ngx_table_elt_t *www_authenticate; + ngx_table_elt_t *proxy_authenticate; ngx_table_elt_t *expires; ngx_table_elt_t *etag; -- cgit