diff options
author | tb <> | 2021-09-10 14:57:31 +0000 |
---|---|---|
committer | tb <> | 2021-09-10 14:57:31 +0000 |
commit | 13d012a9b3925433e1365494474510752cfbe66b (patch) | |
tree | 54605c65b53919abee7349b3f45994ae19b8b557 /src/lib | |
parent | d43fdcce210505b7213dd1a537debe8b56226b35 (diff) | |
download | openbsd-13d012a9b3925433e1365494474510752cfbe66b.tar.gz openbsd-13d012a9b3925433e1365494474510752cfbe66b.tar.bz2 openbsd-13d012a9b3925433e1365494474510752cfbe66b.zip |
Expose SSL_get_tlext_status_type() in tls1.h
ok beck jsing
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/tls1.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/tls1.h b/src/lib/libssl/tls1.h index 80dc3d94c4..cb06a53969 100644 --- a/src/lib/libssl/tls1.h +++ b/src/lib/libssl/tls1.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls1.h,v 1.48 2021/09/10 14:50:19 tb Exp $ */ | 1 | /* $OpenBSD: tls1.h,v 1.49 2021/09/10 14:57:31 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -318,10 +318,8 @@ SSL_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_CB,(void (*)(void))cb) | |||
318 | #define SSL_set_tlsext_debug_arg(ssl, arg) \ | 318 | #define SSL_set_tlsext_debug_arg(ssl, arg) \ |
319 | SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_ARG,0, (void *)arg) | 319 | SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_ARG,0, (void *)arg) |
320 | 320 | ||
321 | #if defined(LIBRESSL_INTERNAL) | ||
322 | #define SSL_get_tlsext_status_type(ssl) \ | 321 | #define SSL_get_tlsext_status_type(ssl) \ |
323 | SSL_ctrl(ssl, SSL_CTRL_GET_TLSEXT_STATUS_REQ_TYPE, 0, NULL) | 322 | SSL_ctrl(ssl, SSL_CTRL_GET_TLSEXT_STATUS_REQ_TYPE, 0, NULL) |
324 | #endif | ||
325 | 323 | ||
326 | #define SSL_set_tlsext_status_type(ssl, type) \ | 324 | #define SSL_set_tlsext_status_type(ssl, type) \ |
327 | SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_TYPE,type, NULL) | 325 | SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_TYPE,type, NULL) |