Discard BIO_set(BIO* bio) method
[openssl.git] / doc / crypto / BIO_meth_new.pod
index de6ce6628ed58c4974bf2adc93a10ef678dacdb2..65e48cb24fcba9e32bf2db56660b2441a46f2f24 100644 (file)
@@ -75,7 +75,7 @@ called in response to the application calling BIO_puts(). The parameters for
 the function have the same meaning as for BIO_puts().
 
 BIO_meth_get_gets() and BIO_meth_set_gets() get and set the function typically
-used for reading a line of data from the BIO respectively (see the L<BIO_gets>
+used for reading a line of data from the BIO respectively (see the L<BIO_gets(3)>
 page for more information). This function will be called in response to the
 application calling BIO_gets(). The parameters for the function have the same
 meaning as for BIO_gets().
@@ -88,7 +88,7 @@ BIO_ctrl().
 
 BIO_meth_get_create() and BIO_meth_set_create() get and set the function used
 for creating a new instance of the BIO respectively. This function will be
-called in response to the application calling BIO_new() or BIO_set() and passing
+called in response to the application calling BIO_new() and passing
 in a pointer to the current BIO_METHOD. The BIO_new() function will allocate the
 memory for the new BIO, and a pointer to this newly allocated structure will
 be passed as a parameter to the function.
@@ -102,7 +102,7 @@ this function.
 
 BIO_meth_get_callback_ctrl() and BIO_meth_set_callback_ctrl() get and set the
 function used for processing callback ctrl messages in the BIO respectively. See
-the L<BIO_callback_ctrl> page for more information. This function will be called
+the L<BIO_callback_ctrl(3)> page for more information. This function will be called
 in response to the application calling BIO_callback_ctrl(). The parameters for
 the function have the same meaning as for BIO_callback_ctrl().
 
@@ -114,4 +114,13 @@ L<bio>, L<BIO_find_type>, L<BIO_ctrl>, L<BIO_read>, L<BIO_new>
 
 The functions described here were added in OpenSSL version 1.1.0.
 
+=head1 COPYRIGHT
+
+Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
+
+Licensed under the OpenSSL license (the "License").  You may not use
+this file except in compliance with the License.  You can obtain a copy
+in the file LICENSE in the source distribution or at
+L<https://www.openssl.org/source/license.html>.
+
 =cut