From 8cd1627599f3591c3074690d9df1557850ecef58 Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Sat, 20 Mar 2021 22:30:59 +0500 Subject: [PATCH] CLEANUP: ssl: remove unused definitions not need since e7eb1fec2f2349359c752c8fbb82357b14c7e4cf --- include/haproxy/ssl_sock-t.h | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/include/haproxy/ssl_sock-t.h b/include/haproxy/ssl_sock-t.h index c0f47cbb6..991a08b3d 100644 --- a/include/haproxy/ssl_sock-t.h +++ b/include/haproxy/ssl_sock-t.h @@ -175,26 +175,6 @@ struct sh_ssl_sess_hdr { unsigned char key_data[SSL_MAX_SSL_SESSION_ID_LENGTH]; }; -#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL - -#define SSL_SOCK_POSSIBLE_KT_COMBOS (1<<(SSL_SOCK_NUM_KEYTYPES)) - -struct key_combo_ctx { - SSL_CTX *ctx; - int order; -}; - -/* Map used for processing multiple keypairs for a single purpose - * - * This maps CN/SNI name to certificate type - */ -struct sni_keytype { - int keytypes; /* BITMASK for keytypes */ - struct ebmb_node name; /* node holding the servername value */ -}; - -#endif - /* issuer chain store with hash of Subject Key Identifier certificate/issuer matching is verify with X509_check_issued */