Changeset 9ee0464 in mod_gnutls
- Timestamp:
- Nov 10, 2012, 9:06:32 PM (10 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
- Children:
- 14d718f
- Parents:
- 694fc04
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
r694fc04 r9ee0464 111 111 int tickets; /* whether session tickets are allowed */ 112 112 int proxy_enabled; 113 int non_ssl_request; 113 114 } mgs_srvconf_rec; 114 115 … … 137 138 apr_size_t output_length; 138 139 int status; 139 int non_ssl_request;140 140 } mgs_handle_t; 141 141 -
src/gnutls_hooks.c
r694fc04 r9ee0464 672 672 gnutls_transport_set_push_function(ctxt->session, 673 673 mgs_transport_write); 674 gnutls_transport_set_ptr 2(ctxt->session, ctxt);674 gnutls_transport_set_ptr(ctxt->session, ctxt); 675 675 /* Add IO filters */ 676 676 ctxt->input_filter = ap_add_input_filter(GNUTLS_INPUT_FILTER_NAME, -
src/gnutls_io.c
r694fc04 r9ee0464 48 48 "trying to send HTML error page"); 49 49 50 mgs_srvconf_rec *sc = (mgs_srvconf_rec *) ap_get_module_config( 51 f->c->base_server->module_config, 52 &gnutls_module 53 ); 50 54 ctxt->status = -1; 51 ctxt->non_ssl_request = 1;55 sc->non_ssl_request = 1; 52 56 53 57 /* fake the request line */
Note: See TracChangeset
for help on using the changeset viewer.