Home
last modified time | relevance | path

Searched refs:SSL_write (Results 1 – 25 of 54) sorted by relevance

123

/third_party/openssl/doc/man3/
DSSL_CTX_set_mode.pod43 SSL_write(). When not set (the default), SSL_write_ex() or SSL_write() will only
45 SSL_write() returns successful, B<r> bytes have been written and the next call
46 to SSL_write_ex() or SSL_write() must only send the n-r bytes left, imitating
51 Make it possible to retry SSL_write_ex() or SSL_write() with changed buffer
53 avoid the misconception that nonblocking SSL_write() behaves like
132 L<SSL_write(3)>, L<SSL_get_error(3)>
DSSL_write.pod5 SSL_write_ex, SSL_write - write bytes to a TLS/SSL connection
12 int SSL_write(SSL *ssl, const void *buf, int num);
16 SSL_write_ex() and SSL_write() write B<num> bytes from the buffer B<buf> into
23 SSL_write_ex(), or SSL_write().
69 You should not call SSL_write() with num=0, it will return an error.
86 For SSL_write() the following return values can occur:
DSSL_CTX_set_split_send_fragment.pod67 amount of data provided to the SSL_write_ex() or SSL_write() call divided by
73 SSL_write/SSL_write_ex called with 0-2000 bytes == 1 pipeline used
75 SSL_write/SSL_write_ex called with 2001-4000 bytes == 2 pipelines used
77 SSL_write/SSL_write_ex called with 4001-6000 bytes == 3 pipelines used
79 SSL_write/SSL_write_ex called with 6001+ bytes == 4 pipelines used
DSSL_get_error.pod18 SSL_write_ex() or SSL_write() on B<ssl>. The value returned by that TLS/SSL I/O
74 even when the call that set this error was an SSL_write() or SSL_write_ex().
75 However, if the call was an SSL_write() or SSL_write_ex(), it should be called
86 and SSL_write() or SSL_write_ex() may want to read data.
90 SSL_peek(), SSL_write_ex(), and SSL_write() will handle any pending handshakes.
DSSL_set_connect_state.pod43 using L<SSL_write_ex(3)>, L<SSL_write(3)>, L<SSL_read_ex(3)>, or L<SSL_read(3)>,
64 L<SSL_write_ex(3)>, L<SSL_write(3)>, L<SSL_read_ex(3)>, L<SSL_read(3)>,
/third_party/openssl/apps/
Ds_time.c232 if (buf_len <= 0 || SSL_write(scon, buf, buf_len) <= 0) in s_time_main()
286 if (buf_len <= 0 || SSL_write(scon, buf, buf_len) <= 0) in s_time_main()
313 if (buf_len <= 0 || SSL_write(scon, buf, buf_len) <= 0) in s_time_main()
/third_party/openssl/test/
Dfatalerrtest.c72 if (!TEST_int_le(SSL_write(sssl, msg, strlen(msg)), 0)) in test_fatalerr()
Dsslbuffertest.c91 ret = SSL_write(clientssl, testdata + len, in test_func()
Ddtls_mtu_test.c103 if (!TEST_int_eq(SSL_write(clnt_ssl, buf, s), (int)s)) in mtu_test()
Dsslcorrupttest.c228 if (!TEST_int_ge(SSL_write(client, junk, sizeof(junk)), 0)) in test_ssl_corrupt()
Dasynciotest.c343 ret = SSL_write(clientssl, testdata + len, in test_asyncio()
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
Dio_openssl.c225 int n = SSL_write(session->io_context, in SPDYF_openssl_send()
/third_party/libwebsockets/lib/tls/mbedtls/
Dmbedtls-ssl.c180 n = SSL_write(wsi->tls.ssl, buf, (int)len); in lws_ssl_capable_write()
/third_party/node/src/
Dtls_wrap.cc602 int written = SSL_write(ssl_.get(), data.data(), data.size()); in ClearIn()
787 written = SSL_write(ssl_.get(), data.data(), length); in DoWrite()
792 written = SSL_write(ssl_.get(), buf->base, buf->len); in DoWrite()
/third_party/nghttp2/src/
Dshrpx_connection.cc701 rv = SSL_write(tls.ssl, data, len); in write_tls()
711 auto rv = SSL_write(tls.ssl, data, len); in write_tls()
/third_party/curl/lib/
Dsetup-vms.h310 #define SSL_write SSL_WRITE macro
/third_party/toybox/toys/pending/
Dwget.c212 if (len != SSL_write(TT.ssl, buf, (int) len)) in wget_write()
/third_party/ffmpeg/libavformat/
Dtls_openssl.c340 ret = SSL_write(c->ssl, buf, size); in tls_write()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/
Dssl.h140 int SSL_write(SSL *ssl, const void *buffer, int len);
/third_party/libwebsockets/lib/tls/openssl/
Dopenssl-ssl.c358 n = SSL_write(wsi->tls.ssl, buf, (int)(ssize_t)len); in lws_ssl_capable_write()
/third_party/curl/lib/vtls/
Dmesalink.c392 int rc = SSL_write(BACKEND->handle, mem, memlen); in mesalink_send()
/third_party/boost/boost/asio/ssl/detail/impl/
Dengine.ipp340 return ::SSL_write(ssl_, data,
/third_party/boost/libs/asio/include/boost/asio/ssl/detail/impl/
Dengine.ipp340 return ::SSL_write(ssl_, data,
/third_party/openssl/doc/man7/
Dssl.pod31 L<SSL_read_ex(3)>, L<SSL_read(3)>, L<SSL_write_ex(3)> and L<SSL_write(3)> are
727 =item int B<SSL_write>(SSL *ssl, const void *buf, int num);
817 L<SSL_write(3)>,
/third_party/nghttp2/examples/
Dclient.c172 rv = SSL_write(connection->ssl, data, (int)length); in send_callback()

123