Changeset 272833c in mod_gnutls
- Timestamp:
- Aug 13, 2021, 4:16:53 PM (20 months ago)
- Branches:
- main, master
- Children:
- 7677448
- Parents:
- ac49b95
- git-author:
- Fiona Klute <fiona.klute@…> (08/13/21 16:12:34)
- git-committer:
- Fiona Klute <fiona.klute@…> (08/13/21 16:16:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_io.c
rac49b95 r272833c 254 254 } else if (rc == GNUTLS_E_REHANDSHAKE) { 255 255 /* A client has asked for a new Hankshake. Currently, we don't do it */ 256 ap_log_cerror(APLOG_MARK, APLOG_ INFO,256 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 257 257 ctxt->input_rc, 258 258 ctxt->c, … … 262 262 } else if (rc == GNUTLS_E_WARNING_ALERT_RECEIVED) { 263 263 rc = gnutls_alert_get(ctxt->session); 264 ap_log_cerror(APLOG_MARK, APLOG_ INFO,264 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 265 265 ctxt->input_rc, 266 266 ctxt->c, … … 270 270 } else if (rc == GNUTLS_E_FATAL_ALERT_RECEIVED) { 271 271 rc = gnutls_alert_get(ctxt->session); 272 ap_log_cerror(APLOG_MARK, APLOG_ INFO,272 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 273 273 ctxt->input_rc, 274 274 ctxt->c, … … 281 281 /* Some Other Error. Report it. Die. */ 282 282 if (gnutls_error_is_fatal(rc)) { 283 ap_log_cerror(APLOG_MARK, 284 APLOG_INFO, 285 ctxt->input_rc, 286 ctxt->c, 287 "GnuTLS: Error reading data. (%d) '%s'", 288 rc, 289 gnutls_strerror(rc)); 283 ap_log_cerror( 284 APLOG_MARK, APLOG_DEBUG, 285 ctxt->input_rc, 286 ctxt->c, 287 "GnuTLS: Error reading data. (%d) '%s'", 288 rc, gnutls_strerror(rc)); 290 289 } else if (*len > 0) { 291 290 ctxt->input_rc = APR_SUCCESS;
Note: See TracChangeset
for help on using the changeset viewer.