1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

Change GnuTLS "slot handling" messages to debug level

Those messages are about an internal implementation detail, not relevant
for an administrator of ngIRCd.
This commit is contained in:
Alexander Barton 2024-01-05 22:22:20 +01:00
parent 7c90264f1f
commit f96966a62f

View File

@ -280,7 +280,7 @@ void ConnSSL_Free(CONNECTION *c)
assert(slot->x509_cred != NULL); assert(slot->x509_cred != NULL);
slot->refcnt--; slot->refcnt--;
if ((c->ssl_state.x509_cred_idx != x509_cred_idx) && (slot->refcnt <= 0)) { if ((c->ssl_state.x509_cred_idx != x509_cred_idx) && (slot->refcnt <= 0)) {
Log(LOG_INFO, "Discarding X509 certificate credentials from slot %zd.", LogDebug("Discarding X509 certificate credentials from slot %zd.",
c->ssl_state.x509_cred_idx); c->ssl_state.x509_cred_idx);
gnutls_certificate_free_keys(slot->x509_cred); gnutls_certificate_free_keys(slot->x509_cred);
gnutls_certificate_free_credentials(slot->x509_cred); gnutls_certificate_free_credentials(slot->x509_cred);
@ -448,7 +448,8 @@ ConnSSL_LoadServerKey_gnutls(void)
/* Free currently active x509 context (if any) unless it is still in use */ /* Free currently active x509 context (if any) unless it is still in use */
slot = array_get(&x509_creds, sizeof(x509_cred_slot), x509_cred_idx); slot = array_get(&x509_creds, sizeof(x509_cred_slot), x509_cred_idx);
if ((slot != NULL) && (slot->refcnt <= 0) && (slot->x509_cred != NULL)) { if ((slot != NULL) && (slot->refcnt <= 0) && (slot->x509_cred != NULL)) {
Log(LOG_INFO, "Discarding X509 certificate credentials from slot %zd.", x509_cred_idx); LogDebug("Discarding X509 certificate credentials from slot %zd.",
x509_cred_idx);
gnutls_certificate_free_keys(slot->x509_cred); gnutls_certificate_free_keys(slot->x509_cred);
gnutls_certificate_free_credentials(slot->x509_cred); gnutls_certificate_free_credentials(slot->x509_cred);
slot->x509_cred = NULL; slot->x509_cred = NULL;
@ -583,7 +584,7 @@ ConnSSL_Init_SSL(CONNECTION *c)
gnutls_certificate_server_set_request(c->ssl_state.gnutls_session, gnutls_certificate_server_set_request(c->ssl_state.gnutls_session,
GNUTLS_CERT_REQUEST); GNUTLS_CERT_REQUEST);
Log(LOG_INFO, "Using X509 credentials from slot %zd", x509_cred_idx); LogDebug("Using X509 credentials from slot %zd.", x509_cred_idx);
c->ssl_state.x509_cred_idx = x509_cred_idx; c->ssl_state.x509_cred_idx = x509_cred_idx;
x509_cred_slot *slot = array_get(&x509_creds, sizeof(x509_cred_slot), x509_cred_idx); x509_cred_slot *slot = array_get(&x509_creds, sizeof(x509_cred_slot), x509_cred_idx);
slot->refcnt++; slot->refcnt++;