X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=project.h;h=ec3c1559043d0484b1fe223d0798a531511fd71a;hp=7918780f2e389a7e8a48c4de5de3437a3d4d4646;hb=17c37afb9f8d994810a5d2d75c9da070e83301ad;hpb=01f1bf28d61df7ae3ef376ca6ae4432d68cddd24 diff --git a/project.h b/project.h index 7918780f..ec3c1559 100644 --- a/project.h +++ b/project.h @@ -311,6 +311,7 @@ typedef struct { mbedtls_x509_crt server_cert; mbedtls_x509_crt ca_cert; mbedtls_pk_context prim_key; + int *ciphersuites_list; #if defined(MBEDTLS_SSL_CACHE_C) mbedtls_ssl_cache_context cache; @@ -323,7 +324,7 @@ typedef struct { * Struct of attributes necessary for TLS/SSL connection */ typedef struct { - SSL_CTX* ctx; + SSL_CTX *ctx; BIO *bio; } openssl_connection_attr; #endif /* FEATURE_HTTPS_INSPECTION_OPENSSL */ @@ -1588,6 +1589,9 @@ struct configuration_spec /** Directory for saving certificates and keys for each webpage **/ char *certificate_directory; + /** Cipher list to use **/ + char *cipher_list; + /** Filename of trusted CAs certificates **/ char * trusted_cas_file; #endif