[#SSL_accept_stream] = SSL_accept_stream :mrdocs: Dequeue an incoming remotely initiated QUIC stream from a connection. == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:SSL.adoc[SSL]* SSL_accept_stream( xref:SSL.adoc[SSL]* s, uint64_t flags); ---- == Return Value New QUIC stream SSL (caller frees), or NULL if none are available / on error. == Parameters [cols="1,4"] |=== | Name| Description | *s* | QUIC connection SSL object (may wait in blocking mode unless SSL_ACCEPT_STREAM_NO_BLOCK). | *flags* | Bitwise OR of SSL_ACCEPT_STREAM_* flags; SSL_ACCEPT_STREAM_NO_BLOCK never blocks. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#