openssl: add more stubs for openssl 3.2.x

openssl-3.2.2 got a few more tls config hooks, add stubs for them.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
Gerd Hoffmann 2024-05-22 13:21:18 +02:00 committed by mergify[bot]
parent 53cea8efd1
commit 005f4c6b5e

View File

@ -515,3 +515,51 @@ tls_construct_stoc_psk (
{
return EXT_RETURN_FAIL;
}
EXT_RETURN
tls_construct_stoc_client_cert_type (
SSL_CONNECTION *sc,
WPACKET *pkt,
unsigned int context,
X509 *x,
size_t chainidx
)
{
return EXT_RETURN_FAIL;
}
int
tls_parse_ctos_client_cert_type (
SSL_CONNECTION *sc,
PACKET *pkt,
unsigned int context,
X509 *x,
size_t chainidx
)
{
return 0;
}
EXT_RETURN
tls_construct_stoc_server_cert_type (
SSL_CONNECTION *sc,
WPACKET *pkt,
unsigned int context,
X509 *x,
size_t chainidx
)
{
return EXT_RETURN_FAIL;
}
int
tls_parse_ctos_server_cert_type (
SSL_CONNECTION *sc,
PACKET *pkt,
unsigned int context,
X509 *x,
size_t chainidx
)
{
return 0;
}