Deleted Added
sdiff udiff text old ( 76866 ) new ( 79998 )
full compact
1=pod
2
3=head1 NAME
4
5SSL_write - write bytes to a TLS/SSL connection.
6
7=head1 SYNOPSIS
8

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

45B<SSL_ERROR_WANT_WRITE>. As at any time a re-negotiation is possible, a
46call to SSL_write() can also cause read operations! The calling process
47then must repeat the call after taking appropriate action to satisfy the
48needs of SSL_write(). The action depends on the underlying BIO. When using a
49non-blocking socket, nothing is to be done, but select() can be used to check
50for the required condition. When using a buffering BIO, like a BIO pair, data
51must be written into or retrieved out of the BIO before being able to continue.
52
53=head1 WARNING
54
55When an SSL_write() operation has to be repeated because of
56B<SSL_ERROR_WANT_READ> or B<SSL_ERROR_WANT_WRITE>, it must be repeated
57with the same arguments.
58
59=head1 RETURN VALUES
60

--- 31 unchanged lines hidden ---