Searched refs:SSL_new_stream (Results 1 – 22 of 22) sorted by relevance
/openssl/doc/man3/ |
H A D | SSL_new_stream.pod | 5 SSL_new_stream, SSL_STREAM_FLAG_UNI, SSL_STREAM_FLAG_NO_BLOCK, 15 SSL *SSL_new_stream(SSL *ssl, uint64_t flags); 19 The SSL_new_stream() function, when passed a QUIC connection SSL object, creates 34 Once a stream has been created using SSL_new_stream(), it may be used in the 41 Calling SSL_new_stream() if there is no default stream already present 46 specified type, a call to SSL_new_stream() will either block (if the connection 67 SSL_new_stream() returns a new stream object, or NULL on error. 78 SSL_new_stream() was added in OpenSSL 3.2.
|
H A D | SSL_get0_connection.pod | 39 L<SSL_new(3)>, L<SSL_new_stream(3)>, L<SSL_accept_stream(3)>
|
H A D | SSL_set_default_stream_mode.pod | 88 SSL object directly. You must obtain streams using L<SSL_new_stream(3)> or 111 L<SSL_new_stream(3)>, L<SSL_accept_stream(3)>, L<SSL_free(3)>,
|
H A D | SSL_accept_stream.pod | 64 L<openssl-quic(7)/MODES OF OPERATION>, L<SSL_new_stream(3)>,
|
H A D | SSL_get_stream_id.pod | 95 L<SSL_new_stream(3)>, L<SSL_accept_stream(3)>
|
H A D | SSL_get_stream_read_state.pod | 146 L<SSL_stream_conclude(3)>, L<SSL_stream_reset(3)>, L<SSL_new_stream(3)>,
|
H A D | SSL_get_value_uint.pod | 175 example, a value of 100 would mean that L<SSL_new_stream(3)> could be called 100 176 times to create 100 bidirectional streams before L<SSL_new_stream(3)> would
|
/openssl/demos/guide/ |
H A D | quic-multi-stream.c | 270 stream1 = SSL_new_stream(ssl, 0); in main() 271 stream2 = SSL_new_stream(ssl, SSL_STREAM_FLAG_UNI); in main()
|
H A D | quic-hq-interop.c | 616 new_stream = SSL_new_stream(ssl, 0); in build_request_set()
|
/openssl/fuzz/ |
H A D | quic-client.c | 195 stream = SSL_new_stream(client, 0); in FuzzerTestOneInput()
|
/openssl/doc/man7/ |
H A D | ossl-guide-quic-multi-stream.pod | 44 application calling L<SSL_new_stream(3)> or L<SSL_accept_stream(3)> (see 79 An endpoint can create a new stream by calling L<SSL_new_stream(3)>. This 206 stream1 = SSL_new_stream(ssl, 0); 207 stream2 = SSL_new_stream(ssl, SSL_STREAM_FLAG_UNI);
|
H A D | openssl-quic.pod | 94 L<SSL_new_stream(3)> and L<SSL_accept_stream(3)>; note that the default incoming 100 Calling L<SSL_new_stream(3)> or L<SSL_accept_stream(3)> before a default stream 109 SSL object fail. Instead, an application calls L<SSL_new_stream(3)> or 613 =item L<SSL_new_stream(3)> 834 L<SSL_new_stream(3)>, L<SSL_accept_stream(3)>,
|
/openssl/demos/http3/ |
H A D | ossl-nghttp3.c | 109 if ((s->s = SSL_new_stream(conn->qconn, flags)) == NULL) { in h3_conn_create_stream()
|
/openssl/doc/designs/quic-design/ |
H A D | glossary.md | 171 given QCSO, obtained using (for example) `SSL_new_stream` or
|
H A D | quic-api.md | 55 - [`SSL_new_stream`](#-ssl-new-stream-) 1001 #### `SSL_new_stream` 1026 SSL *SSL_new_stream(SSL *ssl, uint64_t flags);
|
H A D | quic-api-ssl-funcs.md | 650 | `SSL_new_stream` | CSSM | N | A | QSA | Done …
|
/openssl/util/ |
H A D | libssl.num | 561 SSL_new_stream 562 3_2_0 EXIST::FUNCTION:
|
/openssl/doc/ |
H A D | build.info | 2714 DEPEND[html/man3/SSL_new_stream.html]=man3/SSL_new_stream.pod 2715 GENERATE[html/man3/SSL_new_stream.html]=man3/SSL_new_stream.pod 2716 DEPEND[man/man3/SSL_new_stream.3]=man3/SSL_new_stream.pod 2717 GENERATE[man/man3/SSL_new_stream.3]=man3/SSL_new_stream.pod 3688 html/man3/SSL_new_stream.html \ 4352 man/man3/SSL_new_stream.3 \
|
/openssl/test/ |
H A D | quicapitest.c | 934 stream = SSL_new_stream(clientquic, 0); in test_bio_ssl()
|
H A D | quic_multistream_test.c | 1508 c_stream = SSL_new_stream(h->c_conn, flags); in run_script_worker()
|
/openssl/include/openssl/ |
H A D | ssl.h.in | 2312 __owur SSL *SSL_new_stream(SSL *s, uint64_t flags);
|
/openssl/ssl/ |
H A D | ssl_lib.c | 7650 SSL *SSL_new_stream(SSL *s, uint64_t flags) in SSL_new_stream() function
|
Completed in 99 milliseconds