Changeset a14cf5c in mod_gnutls
- Timestamp:
- Oct 26, 2018, 2:37:35 PM (2 years ago)
- Branches:
- asyncio, debian/master, master, proxy-ticket
- Children:
- 04753db8
- Parents:
- 20c3f7b
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
r20c3f7b ra14cf5c 216 216 /* GnuTLS Session handle */ 217 217 gnutls_session_t session; 218 /** Server name requested via SNI if any, or NULL. */ 219 const char *sni_name; 218 220 /* module input status */ 219 221 apr_status_t input_rc; -
src/gnutls_hooks.c
r20c3f7b ra14cf5c 1012 1012 "%s: client requested server '%s'.", 1013 1013 __func__, sni_name); 1014 ctxt->sni_name = sni_name; 1014 1015 1015 1016 /* Search for vhosts matching connection parameters and the -
src/gnutls_util.c
r20c3f7b ra14cf5c 148 148 /* Default, unconditionally changed in proxy setup functions */ 149 149 ctxt->is_proxy = GNUTLS_ENABLED_FALSE; 150 /* Other default values */ 151 ctxt->sni_name = NULL; 150 152 } 151 153 return ctxt;
Note: See TracChangeset
for help on using the changeset viewer.