summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_request.h
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2026-03-10 16:43:41 +0400
committerRoman Arutyunyan <arutyunyan.roman@gmail.com>2026-03-11 19:33:12 +0400
commite23e7dd83a75b073773c3bc1e57bdb36c27bcc3f (patch)
tree84e017ebeb710d77877f51ca956699159b5afbe9 /src/http/ngx_http_request.h
parent60d0329a20d17e278f4837a5ab18eb8083db8b3f (diff)
downloadnginx-e23e7dd83a75b073773c3bc1e57bdb36c27bcc3f.tar.gz
nginx-e23e7dd83a75b073773c3bc1e57bdb36c27bcc3f.tar.bz2
Proxy authentication definitions.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r--src/http/ngx_http_request.h3
1 files changed, 3 insertions, 0 deletions
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;