Changeset 0378c22 in mod_gnutls
- Timestamp:
- Dec 17, 2018, 1:19:48 PM (4 years ago)
- Branches:
- asyncio, debian/master, main, master, proxy-ticket
- Children:
- 564f33f
- Parents:
- 68b5156
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
r68b5156 r0378c22 263 263 264 264 /* Proxy Support */ 265 /** mod_proxy adds a note with this key to the connection->notes table266 * for client connections */267 #define PROXY_SNI_NOTE "proxy-request-hostname"268 265 /* An optional function which returns non-zero if the given connection 269 266 is using SSL/TLS. */ -
src/gnutls_io.c
r68b5156 r0378c22 19 19 20 20 #include "mod_gnutls.h" 21 #include "gnutls_proxy.h" 21 22 #include <apr_strings.h> 22 23 … … 408 409 409 410 const char *proxy_alpn = 410 apr_table_get(ctxt->c->notes, "proxy-request-alpn-protos");411 apr_table_get(ctxt->c->notes, PROXY_ALPN_NOTE); 411 412 if (proxy_alpn != NULL) 412 413 { -
src/gnutls_proxy.h
r68b5156 r0378c22 22 22 #include <httpd.h> 23 23 24 /** proxy modules may add a note with this key to the 25 * connection->notes table for client connections to indicate the 26 * server hostname */ 27 #define PROXY_SNI_NOTE "proxy-request-hostname" 28 29 /** proxy modules may add a note with this key to the connection->notes 30 * table for client connections to indicate supported protocols */ 31 #define PROXY_ALPN_NOTE "proxy-request-alpn-protos" 32 24 33 apr_status_t load_proxy_x509_credentials(apr_pool_t *pconf, 25 34 apr_pool_t *ptemp,
Note: See TracChangeset
for help on using the changeset viewer.