Make the s_server command listen on IPv6 only when requested
[openssl.git] / doc / man3 / SSL_CTX_set_mode.pod
index 270a71301ced950da1b2abf50ea85b4a0e92c14f..e83b591887d12954dea0d4ba72eda8c936e12a5e 100644 (file)
@@ -38,9 +38,9 @@ Allow SSL_write_ex(..., n, &r) to return with 0 < r < n (i.e. report success
 when just a single record has been written). This works in a similar way for
 SSL_write(). When not set (the default), SSL_write_ex() or SSL_write() will only
 report success once the complete chunk was written. Once SSL_write_ex() or
-SSL_write() returns successful, r bytes have been written and the next call to
-SSL_write_ex() or SSL_write() must only send the n-r bytes left, imitating the
-behaviour of write().
+SSL_write() returns successful, B<r> bytes have been written and the next call
+to SSL_write_ex() or SSL_write() must only send the n-r bytes left, imitating
+the behaviour of write().
 
 =item SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER
 
@@ -97,7 +97,7 @@ SSL_CTX_get_mode() and SSL_get_mode() return the current bitmask.
 
 =head1 SEE ALSO
 
-L<ssl(3)>, L<SSL_read_ex(3)>, L<SSL_read(3)>, L<SSL_write_ex(3)> or
+L<ssl(7)>, L<SSL_read_ex(3)>, L<SSL_read(3)>, L<SSL_write_ex(3)> or
 L<SSL_write(3)>, L<SSL_get_error(3)>
 
 =head1 HISTORY