/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_write.pod | 5 SSL_write_ex2, SSL_write_ex, SSL_write, SSL_sendfile, SSL_WRITE_FLAG_CONCLUDE - 15 int SSL_write_ex2(SSL *s, const void *buf, size_t num, 27 SSL_write_ex2() functions similarly to SSL_write_ex() but can also accept 28 optional flags which modify its behaviour. Calling SSL_write_ex2() with a 39 The I<flags> argument to SSL_write_ex2() can accept zero or more of the 50 If this flag is set, and the call to SSL_write_ex2() succeeds, and all of the 67 A call to SSL_write_ex2() fails if a flag is passed which is not supported or 135 SSL_write_ex() and SSL_write_ex2() return 1 for success or 0 for failure. 198 The SSL_write_ex2() function was added in OpenSSL 3.3.
|
/freebsd/crypto/openssl/demos/quic/server/ |
H A D | server.c | 122 if (!SSL_write_ex2(conn, "hello\n", 6, SSL_WRITE_FLAG_CONCLUDE, &written) in run_quic_conn()
|
/freebsd/crypto/openssl/demos/guide/ |
H A D | quic-client-block.c | 246 if (!SSL_write_ex2(ssl, request_end, strlen(request_end), in main()
|
H A D | quic-client-non-block.c | 364 while (!SSL_write_ex2(ssl, request_end, strlen(request_end), in main()
|
H A D | quic-server-non-block.c | 416 while (!SSL_write_ex2(conn, buf, in run_quic_server()
|
/freebsd/secure/lib/libssl/ |
H A D | Version.map | 629 SSL_write_ex2;
|
/freebsd/crypto/openssl/test/quic-openssl-docker/hq-interop/ |
H A D | quic-hq-interop.c | 652 while (!SSL_write_ex2(poll_list[poll_idx].desc.value.ssl, in build_request_set()
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | ossl-guide-quic-server-non-block.pod | 313 L<SSL_write_ex2(3)> to pass in a special flag SSL_WRITE_FLAG_CONCLUDE that will 318 while (!SSL_write_ex2(conn, buf,
|
H A D | ossl-guide-quic-client-block.pod | 255 the SSL_WRITE_FLAG_CONCLUDE flag to L<SSL_write_ex2(3)> or by calling 268 if (!SSL_write_ex2(ssl, request_end, strlen(request_end),
|
H A D | ossl-guide-quic-client-non-block.pod | 349 the SSL_WRITE_FLAG_CONCLUDE flag to L<SSL_write_ex2(3)> or by calling 366 while (!SSL_write_ex2(ssl, request_end, strlen(request_end),
|
/freebsd/crypto/openssl/demos/http3/ |
H A D | ossl-nghttp3.c | 641 } else if (!SSL_write_ex2(s->s, vecs[i].base, vecs[i].len, flags, &written)) { in OSSL_DEMO_H3_CONN_handle_events()
|
H A D | ossl-nghttp3-demo-server.c | 862 if (!SSL_write_ex2(ssl_ids[i].s, buff, len, flags, written) || in quic_server_write()
|
/freebsd/crypto/openssl/test/radix/ |
H A D | quic_ops.c | 615 r = SSL_write_ex2(ssl, buf, buf_len, flags, &bytes_written); in DEF_FUNC()
|
/freebsd/crypto/openssl/util/ |
H A D | libssl.num | 580 SSL_write_ex2 581 3_3_0 EXIST::FUNCTION:
|
/freebsd/crypto/openssl/ssl/ |
H A D | ssl_lib.c | 2701 return SSL_write_ex2(s, buf, num, 0, written); in SSL_write_ex() 2704 int SSL_write_ex2(SSL *s, const void *buf, size_t num, uint64_t flags, in SSL_write_ex2() function
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | ssl.h | 2020 __owur int SSL_write_ex2(SSL *s, const void *buf, size_t num,
|
H A D | ssl.h.in | 1973 __owur int SSL_write_ex2(SSL *s, const void *buf, size_t num,
|
/freebsd/crypto/openssl/test/ |
H A D | quic_multistream_test.c | 1325 r = SSL_write_ex2(c_tgt, op->arg0, op->arg1, op->arg2, in run_script_worker()
|
/freebsd/crypto/openssl/ |
H A D | NEWS.md | 226 * New API `SSL_write_ex2`, which can be used to send an end-of-stream (FIN)
|
H A D | CHANGES.md | 735 * New API `SSL_write_ex2`, which can be used to send an end-of-stream (FIN)
|