- Timestamp:
- Oct 4, 2011, 7:01:32 AM (11 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, msva, proxy-ticket, upstream
- Children:
- 37f8282
- Parents:
- a4feefc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
ra4feefc r33826c5 110 110 apr_time_t last_cache_check; 111 111 int tickets; /* whether session tickets are allowed */ 112 int proxy_enabled; 113 int non_ssl_request; 112 114 } mgs_srvconf_rec; 113 115 … … 122 124 conn_rec* c; 123 125 gnutls_session_t session; 124 125 126 apr_status_t input_rc; 126 127 ap_filter_t *input_filter; … … 130 131 mgs_char_buffer_t input_cbuf; 131 132 char input_buffer[AP_IOBUFSIZE]; 132 133 133 apr_status_t output_rc; 134 134 ap_filter_t *output_filter; … … 137 137 apr_size_t output_blen; 138 138 apr_size_t output_length; 139 140 139 int status; 141 int non_https;142 140 } mgs_handle_t; 143 141 … … 146 144 /* apr_signal_block() for blocking SIGPIPE */ 147 145 apr_status_t apr_signal_block(int signum); 146 147 /* Proxy Support */ 148 int ssl_proxy_enable(conn_rec *c); 149 int ssl_engine_disable(conn_rec *c); 148 150 149 151 /**
Note: See TracChangeset
for help on using the changeset viewer.