Deleted Added
sdiff udiff text old ( 76866 ) new ( 89837 )
full compact
1=pod
2
3=head1 NAME
4
5SSL_connect - initiate the TLS/SSL handshake with an TLS/SSL server
6
7=head1 SYNOPSIS
8

--- 20 unchanged lines hidden (view full) ---

29return value of SSL_connect() will yield B<SSL_ERROR_WANT_READ> or
30B<SSL_ERROR_WANT_WRITE>. The calling process then must repeat the call after
31taking appropriate action to satisfy the needs of SSL_connect().
32The action depends on the underlying BIO. When using a non-blocking socket,
33nothing is to be done, but select() can be used to check for the required
34condition. When using a buffering BIO, like a BIO pair, data must be written
35into or retrieved out of the BIO before being able to continue.
36
37=head1 RETURN VALUES
38
39The following return values can occur:
40
41=over 4
42
43=item 1
44

--- 27 unchanged lines hidden ---