summaryrefslogtreecommitdiff
path: root/scheduler
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2021-04-07 17:58:29 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2021-04-07 17:58:29 -0400
commit461bd4e50142b2928a0d164bd1aae274e4d34da5 (patch)
tree767c99344ae0cd4311f85e1ece6896207879c641 /scheduler
parentebb7488a6b47e05a3da48e1cc0d097da3c8800ca (diff)
downloadcups-461bd4e50142b2928a0d164bd1aae274e4d34da5.tar.gz
Remove unused KeepAliveTimeout directive (Issue #5733)
Diffstat (limited to 'scheduler')
-rw-r--r--scheduler/conf.c2
-rw-r--r--scheduler/conf.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/scheduler/conf.c b/scheduler/conf.c
index bb6049b2c..1180ac9b8 100644
--- a/scheduler/conf.c
+++ b/scheduler/conf.c
@@ -95,7 +95,6 @@ static const cupsd_var_t cupsd_vars[] =
{ "JobKillDelay", &JobKillDelay, CUPSD_VARTYPE_TIME },
{ "JobRetryLimit", &JobRetryLimit, CUPSD_VARTYPE_INTEGER },
{ "JobRetryInterval", &JobRetryInterval, CUPSD_VARTYPE_TIME },
- { "KeepAliveTimeout", &KeepAliveTimeout, CUPSD_VARTYPE_TIME },
{ "KeepAlive", &KeepAlive, CUPSD_VARTYPE_BOOLEAN },
#ifdef HAVE_LAUNCHD
{ "LaunchdTimeout", &IdleExitTimeout, CUPSD_VARTYPE_TIME },
@@ -719,7 +718,6 @@ cupsdReadConfiguration(void)
FilterNice = 0;
HostNameLookups = FALSE;
KeepAlive = TRUE;
- KeepAliveTimeout = DEFAULT_KEEPALIVE;
ListenBackLog = SOMAXCONN;
LogDebugHistory = 200;
LogFilePerm = CUPS_DEFAULT_LOG_FILE_PERM;
diff --git a/scheduler/conf.h b/scheduler/conf.h
index b4e14eed9..791c0d360 100644
--- a/scheduler/conf.h
+++ b/scheduler/conf.h
@@ -199,8 +199,6 @@ VAR int MaxClients VALUE(100),
/* Timeout during requests */
KeepAlive VALUE(TRUE),
/* Support the Keep-Alive option? */
- KeepAliveTimeout VALUE(DEFAULT_KEEPALIVE),
- /* Timeout between requests */
FileDevice VALUE(FALSE),
/* Allow file: devices? */
FilterLimit VALUE(0),