summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-05-09 11:35:16 +0100
committerHugo Landau <hlandau@openssl.org>2023-05-12 14:47:15 +0100
commitde521629c1f296a6eb50a84ab2d2b200fc766bc6 (patch)
tree64effbd0fa8592a07cf7a322623c49697ab0c18f /ssl
parent5da3e02c5eaac2bec9c14165d62874b1232213fe (diff)
downloadopenssl-new-de521629c1f296a6eb50a84ab2d2b200fc766bc6.tar.gz
QUIC APL: De-publicise SSL_attach_stream/SSL_detach_stream
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20765)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_lib.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 4be70ce60f..567396caa4 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -7361,30 +7361,6 @@ int SSL_set_default_stream_mode(SSL *s, uint32_t mode)
#endif
}
-SSL *SSL_detach_stream(SSL *s)
-{
-#ifndef OPENSSL_NO_QUIC
- if (!IS_QUIC(s))
- return NULL;
-
- return ossl_quic_detach_stream(s);
-#else
- return NULL;
-#endif
-}
-
-int SSL_attach_stream(SSL *conn, SSL *stream)
-{
-#ifndef OPENSSL_NO_QUIC
- if (!IS_QUIC(conn))
- return 0;
-
- return ossl_quic_attach_stream(conn, stream);
-#else
- return 0;
-#endif
-}
-
int SSL_set_incoming_stream_policy(SSL *s, int policy, uint64_t aec)
{
#ifndef OPENSSL_NO_QUIC