Changeset 8df5b25 in mod_gnutls for src/gnutls_hooks.c
- Timestamp:
- Jan 11, 2013, 12:56:26 AM (8 years ago)
- Branches:
- debian/master, debian/stretch-backports, jessie-backports, upstream
- Children:
- 15ffe0b, 9d9b093
- Parents:
- dc1e7e6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
rdc1e7e6 r8df5b25 116 116 gnutls_credentials_set(session, GNUTLS_CRD_ANON, ctxt->sc->anon_creds); 117 117 118 #ifdef ENABLE_SRP 118 119 if (ctxt->sc->srp_tpasswd_conf_file != NULL 119 120 && ctxt->sc->srp_tpasswd_file != NULL) { … … 121 122 ctxt->sc->srp_creds); 122 123 } 124 #endif 123 125 124 126 /* update the priorities - to avoid negotiating a ciphersuite that is not … … 314 316 cert_retrieve_fn); 315 317 318 #ifdef ENABLE_SRP 316 319 if (sc->srp_tpasswd_conf_file != NULL 317 320 && sc->srp_tpasswd_file != NULL) { … … 330 333 } 331 334 } 335 #endif 332 336 333 337 if (sc->certs_x509[0] == NULL … … 663 667 (ctxt->session))); 664 668 669 #ifdef ENABLE_SRP 665 670 apr_table_setn(env, "SSL_SRP_USER", 666 671 gnutls_srp_server_get_username(ctxt->session)); 672 #endif 667 673 668 674 if (apr_table_get(env, "SSL_CLIENT_VERIFY") == NULL) … … 795 801 apr_table_setn(env, 796 802 apr_pstrcat(r->pool, MGS_SIDE, "_CERT_TYPE", NULL), "X.509"); 797 #ifdef COMPAT798 apr_table_setn(env,799 apr_pstrcat(r->pool, MGS_SIDE, "_S_TYPE", NULL), "X.509");800 #endif801 803 802 804 tmp =
Note: See TracChangeset
for help on using the changeset viewer.