sslproc: don't send updated config to dead/shutdown sslds
They might be running older versions of the SSL library that doesn't support the key type or ciphers being configured.
This commit is contained in:
parent
036cafaaaf
commit
1cdf323be9
1 changed files with 4 additions and 0 deletions
|
@ -772,6 +772,10 @@ ssld_update_config(void)
|
||||||
RB_DLINK_FOREACH(ptr, ssl_daemons.head)
|
RB_DLINK_FOREACH(ptr, ssl_daemons.head)
|
||||||
{
|
{
|
||||||
ssl_ctl_t *ctl = ptr->data;
|
ssl_ctl_t *ctl = ptr->data;
|
||||||
|
|
||||||
|
if (ctl->dead || ctl->shutdown)
|
||||||
|
continue;
|
||||||
|
|
||||||
ssld_update_config_one(ctl);
|
ssld_update_config_one(ctl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue