Changeset 7677448 in mod_gnutls for src/gnutls_io.c
- Timestamp:
- Aug 13, 2021, 4:25:50 PM (12 months ago)
- Branches:
- master
- Children:
- b6ce8ad
- Parents:
- e809a17a (diff), 272833c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Airtower <fiona.klute@…> (08/13/21 16:25:50)
- git-committer:
- GitHub <noreply@…> (08/13/21 16:25:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_io.c
re809a17a r7677448 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; … … 778 777 if (ret < 0) { 779 778 /* error sending output */ 780 ap_log_cerror(APLOG_MARK, APLOG_ INFO, ctxt->output_rc,779 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, ctxt->output_rc, 781 780 ctxt->c, 782 781 "GnuTLS: Error writing data. (%d) '%s'",
Note: See TracChangeset
for help on using the changeset viewer.