summaryrefslogtreecommitdiff
path: root/include/openssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-04-18 19:30:55 +0100
committerHugo Landau <hlandau@openssl.org>2023-05-12 14:47:11 +0100
commit19cb0887722b66e5db7ec0d339526608444a11ef (patch)
tree8a7f8eb3a2215a319b009199d6680484a0f62900 /include/openssl
parent1bca3f1b2d139c2306fd65d23583e4d16bdc11f9 (diff)
downloadopenssl-new-19cb0887722b66e5db7ec0d339526608444a11ef.tar.gz
QUIC DISPATCH/APL: Implement SSL_get_stream_id
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 'include/openssl')
-rw-r--r--include/openssl/ssl.h.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/openssl/ssl.h.in b/include/openssl/ssl.h.in
index 25208ca294..8d82bf6b5a 100644
--- a/include/openssl/ssl.h.in
+++ b/include/openssl/ssl.h.in
@@ -2275,6 +2275,8 @@ __owur int SSL_is_connection(SSL *s);
#define SSL_STREAM_TYPE_BIDI (SSL_STREAM_TYPE_READ | SSL_STREAM_TYPE_WRITE)
__owur int SSL_get_stream_type(SSL *s);
+__owur uint64_t SSL_get_stream_id(SSL *s);
+
#define SSL_STREAM_FLAG_UNI (1U << 0)
__owur SSL *SSL_new_stream(SSL *s, uint64_t flags);