- Timestamp:
- Dec 7, 2011, 12:22:48 AM (11 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
- Children:
- 694fc04
- Parents:
- 33826c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
r33826c5 r37f8282 111 111 int tickets; /* whether session tickets are allowed */ 112 112 int proxy_enabled; 113 int non_ssl_request;114 113 } mgs_srvconf_rec; 115 114 … … 138 137 apr_size_t output_length; 139 138 int status; 139 int non_ssl_request; 140 140 } mgs_handle_t; 141 141 … … 146 146 147 147 /* Proxy Support */ 148 /* An optional function which returns non-zero if the given connection 149 is using SSL/TLS. */ 150 APR_DECLARE_OPTIONAL_FN(int, ssl_is_https, (conn_rec *)); 151 /* The ssl_proxy_enable() and ssl_engine_disable() optional functions 152 * are used by mod_proxy to enable use of SSL for outgoing 153 * connections. */ 154 APR_DECLARE_OPTIONAL_FN(int, ssl_proxy_enable, (conn_rec *)); 155 APR_DECLARE_OPTIONAL_FN(int, ssl_engine_disable, (conn_rec *)); 156 int ssl_is_https(conn_rec *c); 148 157 int ssl_proxy_enable(conn_rec *c); 149 158 int ssl_engine_disable(conn_rec *c); 159 const char *mgs_set_proxy_engine(cmd_parms * parms, void *dummy, 160 const char *arg); 161 apr_status_t mgs_cleanup_pre_config(void *data); 150 162 151 163 /**
Note: See TracChangeset
for help on using the changeset viewer.