summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-08-09 17:46:32 +0100
committerHugo Landau <hlandau@openssl.org>2023-09-01 10:45:34 +0100
commitbe96180aa65fbf620eaf3ca8965a814b04e99130 (patch)
tree48526740c54a799696a8c4f069c87f04300edf70 /include
parent0b8b75e242e95db034e8026f462a799c0dafaefc (diff)
QUIC CHANNEL: Cleanup poll descriptor management
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21715)
Diffstat (limited to 'include')
-rw-r--r--include/internal/quic_channel.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/internal/quic_channel.h b/include/internal/quic_channel.h
index 44009d1c20..1624870865 100644
--- a/include/internal/quic_channel.h
+++ b/include/internal/quic_channel.h
@@ -304,6 +304,12 @@ int ossl_quic_channel_set_net_rbio(QUIC_CHANNEL *ch, BIO *net_rbio);
int ossl_quic_channel_set_net_wbio(QUIC_CHANNEL *ch, BIO *net_wbio);
/*
+ * Re-poll the network BIOs already set to determine if their support
+ * for polling has changed.
+ */
+int ossl_quic_channel_update_poll_descriptors(QUIC_CHANNEL *ch);
+
+/*
* Returns an existing stream by stream ID. Returns NULL if the stream does not
* exist.
*/