Changeset c3ad933 in mod_gnutls for src/gnutls_io.c
- Timestamp:
- Jun 3, 2016, 2:31:56 PM (5 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, master, proxy-ticket, upstream
- Children:
- 8913410
- Parents:
- fd6bb19
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_io.c
rfd6bb19 rc3ad933 401 401 if (maxtries < 1) { 402 402 ctxt->status = -1; 403 #if USING_2_1_RECENT404 403 ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, ctxt->c, 405 404 "GnuTLS: Handshake Failed. Hit Maximum Attempts"); 406 #else407 ap_log_error(APLOG_MARK, APLOG_ERR, 0,408 ctxt->c->base_server,409 "GnuTLS: Handshake Failed. Hit Maximum Attempts");410 #endif411 405 if (ctxt->session) { 412 406 gnutls_alert_send(ctxt->session, GNUTLS_AL_FATAL, … … 437 431 goto tryagain; 438 432 } 439 #if USING_2_1_RECENT440 433 ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, ctxt->c, 441 434 "GnuTLS: Handshake Failed (%d) '%s'", ret, 442 435 gnutls_strerror(ret)); 443 #else444 ap_log_error(APLOG_MARK, APLOG_INFO, 0,445 ctxt->c->base_server,446 "GnuTLS: Handshake Failed (%d) '%s'", ret,447 gnutls_strerror(ret));448 #endif449 436 ctxt->status = -1; 450 437 if (ctxt->session) {
Note: See TracChangeset
for help on using the changeset viewer.