aboutsummaryrefslogtreecommitdiffstats
path: root/src/tipideed/tipideed-internal.h
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2026-06-26 01:26:17 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2026-06-26 01:26:17 +0000
commit45808dbc6dc1b90fa512add692252bc15760a214 (patch)
treedbba94778b4ba346fdcee373ce163e2f4dd43d79 /src/tipideed/tipideed-internal.h
parent7c5d186df1f7f00567660354905435cedffc3e20 (diff)
downloadtipidee-45808dbc6dc1b90fa512add692252bc15760a214.tar.gz
Add cgi_pass_authorization
Diffstat (limited to 'src/tipideed/tipideed-internal.h')
-rw-r--r--src/tipideed/tipideed-internal.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tipideed/tipideed-internal.h b/src/tipideed/tipideed-internal.h
index 2cc8186..5d72cd6 100644
--- a/src/tipideed/tipideed-internal.h
+++ b/src/tipideed/tipideed-internal.h
@@ -43,6 +43,7 @@ struct global_s
uint16_t ssl : 1 ;
uint16_t xiscgi : 1 ;
uint8_t flagnoxlate : 1 ;
+ uint8_t flagcgipassauth : 1 ;
} ;
#define GLOBAL_ZERO \
{ \
@@ -68,7 +69,8 @@ struct global_s
.cont = 1, \
.ssl = 0, \
.xiscgi = 0, \
- .flagnoxlate = 0 \
+ .flagnoxlate = 0, \
+ .flagcgipassauth = 0 \
}
extern struct global_s g ;