Lines Matching defs:tls_opt
299 struct tls_global_options_t tls_opt;
3080 FREEPTR(tls_opt.CAdir);
3081 FREEPTR(tls_opt.CAfile);
3082 FREEPTR(tls_opt.keyfile);
3083 FREEPTR(tls_opt.certfile);
3084 FREEPTR(tls_opt.x509verify);
3085 FREEPTR(tls_opt.bindhost);
3086 FREEPTR(tls_opt.bindport);
3087 FREEPTR(tls_opt.server);
3088 FREEPTR(tls_opt.gen_cert);
3089 free_cred_SLIST(&tls_opt.cert_head);
3090 free_cred_SLIST(&tls_opt.fprint_head);
3091 FREE_SSL_CTX(tls_opt.global_TLS_CTX);
3187 {"tls_ca", &tls_opt.CAfile},
3188 {"tls_cadir", &tls_opt.CAdir},
3189 {"tls_cert", &tls_opt.certfile},
3190 {"tls_key", &tls_opt.keyfile},
3191 {"tls_verify", &tls_opt.x509verify},
3192 {"tls_bindport", &tls_opt.bindport},
3193 {"tls_bindhost", &tls_opt.bindhost},
3194 {"tls_server", &tls_opt.server},
3195 {"tls_gen_cert", &tls_opt.gen_cert},
3270 credhead = &tls_opt.fprint_head;
3273 credhead = &tls_opt.cert_head;
3551 FREE_SSL_CTX(tls_opt.global_TLS_CTX);
3553 free_cred_SLIST(&tls_opt.cert_head);
3554 free_cred_SLIST(&tls_opt.fprint_head);
3680 tls_opt.CAfile, tls_opt.CAdir,
3681 tls_opt.certfile, tls_opt.keyfile, tls_opt.x509verify,
3682 tls_opt.bindhost, tls_opt.bindport,
3687 SLIST_FOREACH(cred, &tls_opt.cert_head, entries) {
3691 SLIST_FOREACH(cred, &tls_opt.fprint_head, entries) {
3709 if (tls_opt.server)
3740 socksetup_tls(PF_UNSPEC, tls_opt.bindhost, tls_opt.bindport);