mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 02:26:38 -04:00
o) update sticky-module-ng to it's recent snapshot by changing provider; o) add http-auth-jwt module. Bump PORTREVISION.
20 lines
723 B
C
20 lines
723 B
C
--- ../ngx-http-auth-jwt-module-2.3.0/src/ngx_http_auth_jwt_module.c.orig 2025-02-04 20:24:57.122767000 -0500
|
|
+++ ../ngx-http-auth-jwt-module-2.3.0/src/ngx_http_auth_jwt_module.c 2025-02-04 20:25:14.922658000 -0500
|
|
@@ -866,17 +866,10 @@
|
|
jwt_location.data += strlen(COOKIE_PREFIX);
|
|
jwt_location.len -= strlen(COOKIE_PREFIX);
|
|
|
|
-#ifndef NGX_LINKED_LIST_COOKIES
|
|
- if (ngx_http_parse_multi_header_lines(&r->headers_in.cookies, &jwt_location, &jwtCookieVal) != NGX_DECLINED)
|
|
- {
|
|
- has_cookie = true;
|
|
- }
|
|
-#else
|
|
if (ngx_http_parse_multi_header_lines(r, r->headers_in.cookie, &jwt_location, &jwtCookieVal) != NULL)
|
|
{
|
|
has_cookie = true;
|
|
}
|
|
-#endif
|
|
|
|
if (has_cookie == true)
|
|
{
|