- auth-load-thread, auth-task-threads: num config option that enables and

disables the auth load thread.
This commit is contained in:
W.C.A. Wijngaards
2026-07-03 14:03:15 +02:00
parent 58ede90fdb
commit 0a5cde80f1
8 changed files with 24 additions and 1 deletions
+3
View File
@@ -264,6 +264,9 @@ setup_config(FILE* in, int* lineno, int* pass_argc, char* pass_argv[])
fprintf(cfg, " pidfile: \"\"\n");
fprintf(cfg, " val-log-level: 2\n");
fprintf(cfg, " log-servfail: yes\n");
/* the extra thread needs pipe communication that is not available
* from fake_event calls. So auth-task-threads: 0 disables them. */
fprintf(cfg, " auth-task-threads: 0\n");
fprintf(cfg, "remote-control: control-enable: no\n");
while(fgets(line, MAX_LINE_LEN-1, in)) {
parse = line;