We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6142536 commit 18cd804Copy full SHA for 18cd804
src/conf.c
@@ -84,8 +84,11 @@ bool conf_check(const struct config *restrict conf)
84
LOGE("incompatible flags are specified");
85
return false;
86
}
87
+ const bool auth_supported =
88
+ (conf->forward == NULL && !conf->transparent);
89
+#else
90
+ const bool auth_supported = (conf->forward == NULL);
91
#endif
- const bool auth_supported = conf->http_listen != NULL;
92
if (conf->block_global && conf->block_local) {
93
LOGE("incompatible outbound policies are specified");
94
0 commit comments