From 27521bdf4da99b5034be720ec1518610a9a00031 Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 10 Sep 2021 14:57:31 +0000 Subject: [PATCH] Expose SSL_get_tlext_status_type() in tls1.h ok beck jsing --- lib/libssl/tls1.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/libssl/tls1.h b/lib/libssl/tls1.h index 80dc3d94c48..cb06a539699 100644 --- a/lib/libssl/tls1.h +++ b/lib/libssl/tls1.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tls1.h,v 1.48 2021/09/10 14:50:19 tb Exp $ */ +/* $OpenBSD: tls1.h,v 1.49 2021/09/10 14:57:31 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -318,10 +318,8 @@ SSL_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_CB,(void (*)(void))cb) #define SSL_set_tlsext_debug_arg(ssl, arg) \ SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_ARG,0, (void *)arg) -#if defined(LIBRESSL_INTERNAL) #define SSL_get_tlsext_status_type(ssl) \ SSL_ctrl(ssl, SSL_CTRL_GET_TLSEXT_STATUS_REQ_TYPE, 0, NULL) -#endif #define SSL_set_tlsext_status_type(ssl, type) \ SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_TYPE,type, NULL) -- 2.20.1