Changeset 4d38cbd in mod_gnutls
- Timestamp:
- Jan 3, 2019, 7:24:47 AM (2 years ago)
- Branches:
- asyncio, debian/master, master, proxy-ticket
- Children:
- a900948
- Parents:
- 08c48d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_io.c
r08c48d7 r4d38cbd 682 682 "%s: TLS %sconnection opened.", 683 683 __func__, IS_PROXY_STR(ctxt)); 684 } 685 686 if (ctxt->status < 0) 687 { 688 ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, ctxt->c, 689 "%s: %sconnection failed, refusing to send.", 690 __func__, IS_PROXY_STR(ctxt)); 691 if (ctxt->is_proxy) 684 else if (ctxt->is_proxy) 692 685 { 693 686 /* If mod_proxy receives an error while trying to send its … … 700 693 return APR_SUCCESS; 701 694 } 702 else 703 return APR_ECONNABORTED; 695 /* No final else here, the "ctxt->status < 0" check below will 696 * catch that. */ 697 } 698 699 if (ctxt->status < 0) 700 { 701 ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, ctxt->c, 702 "%s: %sconnection failed, refusing to send.", 703 __func__, IS_PROXY_STR(ctxt)); 704 return APR_ECONNABORTED; 704 705 } 705 706
Note: See TracChangeset
for help on using the changeset viewer.