Hello,

while investigating #429, I've found some unused functions.
let us remove them.

Cheers,
Ilya Shipitcin
From 4b882141a1e8e364aa5339c5090bf40a673876aa Mon Sep 17 00:00:00 2001
From: Ilya Shipitsin <chipits...@gmail.com>
Date: Thu, 13 Feb 2020 14:07:36 +0500
Subject: [PATCH] CLEANUP: include/common/openssl-compat.h: remove unused
 functions

functions SSL_SESSION_get0_id_context, SSL_CTX_get_default_passwd_cb,
SSL_CTX_get_default_passwd_cb_userdata are not used anymore
---
 include/common/openssl-compat.h | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/include/common/openssl-compat.h b/include/common/openssl-compat.h
index cb9caa3e9..94633aa8c 100644
--- a/include/common/openssl-compat.h
+++ b/include/common/openssl-compat.h
@@ -181,12 +181,6 @@ static inline X509_CRL *X509_OBJECT_get0_X509_CRL(const X509_OBJECT *a)
     return a->data.crl;
 }
 
-static inline const unsigned char *SSL_SESSION_get0_id_context(const SSL_SESSION *sess, unsigned int *sid_ctx_length)
-{
-	*sid_ctx_length = sess->sid_ctx_length;
-	return sess->sid_ctx;
-}
-
 static inline int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid, unsigned int sid_len)
 {
 	s->session_id_length = sid_len;
@@ -206,16 +200,6 @@ static inline const OCSP_CERTID *OCSP_SINGLERESP_get0_id(const OCSP_SINGLERESP *
 }
 #endif
 
-static inline pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx)
-{
-	return ctx->default_passwd_callback;
-}
-
-static inline void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx)
-{
-	return ctx->default_passwd_callback_userdata;
-}
-
 #ifndef OPENSSL_NO_DH
 static inline int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g)
 {
-- 
2.24.1

Reply via email to