mirror of
https://github.com/pissnet/pissircd.git
synced 2025-07-29 14:32:25 +01:00
Fix warning about certificate expiry appearing every 43 seconds
rather than twice a day. Reported by PeGaSuS in https://bugs.unrealircd.org/view.php?id=5797
This commit is contained in:
parent
9d88bb6fe9
commit
b2ceb9c825
1 changed files with 1 additions and 1 deletions
|
@ -240,5 +240,5 @@ void SetupEvents(void)
|
|||
EventAdd(NULL, "check_deadsockets", check_deadsockets, NULL, 1000, 0);
|
||||
EventAdd(NULL, "handshake_timeout", handshake_timeout, NULL, 1000, 0);
|
||||
EventAdd(NULL, "try_connections", try_connections, NULL, 2000, 0);
|
||||
EventAdd(NULL, "tls_check_expiry", tls_check_expiry, NULL, 86400/2, 0);
|
||||
EventAdd(NULL, "tls_check_expiry", tls_check_expiry, NULL, (86400/2)*1000, 0);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue