Home
last modified time | relevance | path

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

/onnv-gate/usr/src/common/openssl/doc/ssl/
H A DSSL_write.pod5 SSL_write - write bytes to a TLS/SSL connection.
11 int SSL_write(SSL *ssl, const void *buf, int num);
15 SSL_write() writes B<num> bytes from the buffer B<buf> into the specified
20 If necessary, SSL_write() will negotiate a TLS/SSL session, if
24 the SSL_write() operation. The behaviour of SSL_write() depends on the
30 before the first call to an L<SSL_read(3)|SSL_read(3)> or SSL_write() function.
32 If the underlying BIO is B<blocking>, SSL_write() will only return, once the
38 If the underlying BIO is B<non-blocking>, SSL_write() will also return,
39 when the underlying BIO could not satisfy the needs of SSL_write()
42 return value of SSL_write() will yield B<SSL_ERROR_WANT_READ> or
[all …]
H A DSSL_CTX_set_mode.pod37 Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success
39 SSL_write() will only report success once the complete chunk was written.
40 Once SSL_write() returns with r, r bytes have been successfully written
41 and the next call to SSL_write() must only send the n-r bytes left,
46 Make it possible to retry SSL_write() with changed buffer location
48 the misconception that non-blocking SSL_write() behaves like
55 L<SSL_read(3)|SSL_read(3)> or L<SSL_write(3)|SSL_write(3)> would return
75 L<ssl(3)|ssl(3)>, L<SSL_read(3)|SSL_read(3)>, L<SSL_write(3)|SSL_write(3)>
H A DSSL_set_connect_state.pod38 using L<SSL_write(3)|SSL_write(3)> or L<SSL_read(3)|SSL_read(3)>, the
51 L<SSL_write(3)|SSL_write(3)>, L<SSL_read(3)|SSL_read(3)>,
H A DSSL_read.pod30 before the first call to an SSL_read() or L<SSL_write(3)|SSL_write(3)>
111 L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_write(3)|SSL_write(3)>,
H A DSSL_get_error.pod17 SSL_read(), SSL_peek(), or SSL_write() on B<ssl>. The value returned by
67 SSL_read() or SSL_peek() may want to write data and SSL_write() may want
70 SSL_read(), SSL_peek(), and SSL_write() will handle any pending handshakes.
H A Dssl.pod33 L<SSL_read(3)|SSL_read(3)> and L<SSL_write(3)|SSL_write(3)> are used
651 =item int B<SSL_write>(SSL *ssl, const void *buf, int num);
725 L<SSL_write(3)|SSL_write(3)>,
/onnv-gate/usr/src/lib/libldap4/include/
H A Dssl.h23 int SSL_write(SSL s, u_char *buf, u_int len);
/onnv-gate/usr/src/common/openssl/apps/
H A Ds_time.c520 SSL_write(scon,buf,strlen(buf)); in MAIN()
575 SSL_write(scon,buf,strlen(buf)); in MAIN()
613 SSL_write(scon,buf,strlen(buf)); in MAIN()
H A Ds_server.c1375 k=SSL_write(con,&(buf[l]),(unsigned int)i); in sv_body()
1673 SSL_write(con,NULL,0); in www_body()
H A Ds_client.c852 k=SSL_write(con,&(cbuf[cbuf_off]), in MAIN()
/onnv-gate/usr/src/common/openssl/ssl/
H A Ds23_lib.c191 return(SSL_write(s,buf,len)); in ssl23_write()
H A Dbio_ssl.c243 ret=SSL_write(ssl,out,outl); in ssl_write()
H A Dssl.h1364 int SSL_write(SSL *ssl,const void *buf,int num);
H A Dssl_lib.c889 int SSL_write(SSL *s,const void *buf,int num) in SSL_write() function
/onnv-gate/usr/src/lib/libldap4/ber/
H A Dio.c358 rc = SSL_write( sb->sb_ssl, (u_char *)ber->ber_buf, towrite ); in ber_flush()
395 if ( (rc = SSL_write( sb->sb_ssl, (u_char *)ber->ber_rwptr, in ber_flush()
/onnv-gate/usr/src/cmd/sendmail/src/
H A Dsfsasl.c840 r = SSL_write(so->con, (char *) buf, size);
/onnv-gate/usr/src/common/openssl/
H A DFAQ795 the underlying transport or that SSL_write() will just write to it --
796 it is also possible that SSL_write() cannot do any useful work until
801 SSL_write() will try to continue any pending handshake.
H A DCHANGES6112 SSL_MODE_ENABLE_PARTIAL_WRITE Allow SSL_write to report success when
6114 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER Don't insist that SSL_write
7247 *) Add prototypes to SSL methods. Make SSL_write's buffer const, at last.
/onnv-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp.c2494 return (SSL_write((SSL *)(http->tls), buf, len)); in http_write_ssl()
/onnv-gate/usr/src/common/net/wanboot/
H A Dboot_http.c2786 if ((retval = SSL_write(c_id->ssl, buf, nbyte)) <= 0) { in http_srv_send()
/onnv-gate/usr/src/lib/libkmsagent/common/SOAP/
H A Dstdsoap2.cpp610 nwritten = SSL_write(soap->ssl, s, (int)n); in fsend()