Changeset a2368a4 in mod_gnutls
- Timestamp:
- Nov 20, 2015, 7:44:24 PM (7 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- 73b0bf0
- Parents:
- 2ceb836
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
r2ceb836 ra2368a4 781 781 "gnutls_session_ticket_enable_client failed: %s (%d)", 782 782 gnutls_strerror(err), err); 783 /* Try to close and deinit the session when the connection784 * pool is cleared. Note that mod_proxy might not close785 * connections immediately, if you need that, look at the786 * "proxy-nokeepalive" environment variable for787 * mod_proxy_http. */788 apr_pool_pre_cleanup_register(c->pool, ctxt, cleanup_gnutls_session);789 783 } 790 784 else … … 806 800 } 807 801 } 802 803 /* Ensure TLS session resources are released when the connection 804 * pool is cleared, if the filters haven't done that already. */ 805 apr_pool_pre_cleanup_register(c->pool, ctxt, cleanup_gnutls_session); 808 806 809 807 /* Set Default Priority */
Note: See TracChangeset
for help on using the changeset viewer.