summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorFrederik Wedel-Heinen <frederik.wedel-heinen@dencrypt.dk>2023-08-22 09:19:32 +0200
committerTomas Mraz <tomas@openssl.org>2023-08-29 16:59:54 +0200
commit2de153dc5a2565bd922b9a15955f2abca02b215e (patch)
tree83c9d16a26f0722e06cb80243517b9fbe35f4faf /ssl
parent20a54aa21fc34ded577daf0bc91808b68a3b3c95 (diff)
Removed unused struct ssl3_comp_st
Fixes #21731 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21803)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_local.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h
index 96d2f30761..e2157ab687 100644
--- a/ssl/ssl_local.h
+++ b/ssl/ssl_local.h
@@ -2163,16 +2163,6 @@ typedef struct ssl3_enc_method {
*/
# define SSL_ENC_FLAG_TLS1_2_CIPHERS 0x10
-# ifndef OPENSSL_NO_COMP
-/* Used for holding the relevant compression methods loaded into SSL_CTX */
-typedef struct ssl3_comp_st {
- int comp_id; /* The identifier byte for this compression
- * type */
- char *name; /* Text name used for the compression type */
- COMP_METHOD *method; /* The method :-) */
-} SSL3_COMP;
-# endif
-
typedef enum downgrade_en {
DOWNGRADE_NONE,
DOWNGRADE_TO_1_2,