X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=doc%2Fman3%2FBIO_new.pod;h=db1e06069d8937b342d9286e7f7c2f6a66cef38b;hb=ed57f7f93508776b898e4c23b65d67f3479edaf1;hp=55ed50bb950beb348ee7351aed0b6bd736c6201c;hpb=e9b77246879071308130cda42336338ddb63cbb4;p=openssl.git diff --git a/doc/man3/BIO_new.pod b/doc/man3/BIO_new.pod index 55ed50bb95..db1e06069d 100644 --- a/doc/man3/BIO_new.pod +++ b/doc/man3/BIO_new.pod @@ -2,19 +2,18 @@ =head1 NAME -BIO_new, BIO_up_ref, BIO_free, BIO_vfree, BIO_free_all, -BIO_set - BIO allocation and freeing functions +BIO_new, BIO_up_ref, BIO_free, BIO_vfree, BIO_free_all +- BIO allocation and freeing functions =head1 SYNOPSIS #include - BIO *BIO_new(const BIO_METHOD *type); - int BIO_set(BIO *a, const BIO_METHOD *type); - int BIO_up_ref(BIO *a); - int BIO_free(BIO *a); - void BIO_vfree(BIO *a); - void BIO_free_all(BIO *a); + BIO * BIO_new(const BIO_METHOD *type); + int BIO_up_ref(BIO *a); + int BIO_free(BIO *a); + void BIO_vfree(BIO *a); + void BIO_free_all(BIO *a); =head1 DESCRIPTION @@ -38,7 +37,7 @@ If B is NULL nothing is done. BIO_new() returns a newly created BIO or NULL if the call fails. -BIO_set(), BIO_up_ref() and BIO_free() return 1 for success and 0 for failure. +BIO_up_ref() and BIO_free() return 1 for success and 0 for failure. BIO_free_all() and BIO_vfree() do not return values. @@ -64,7 +63,7 @@ Create a memory BIO: Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. -Licensed under the OpenSSL license (the "License"). You may not use +Licensed under the Apache License 2.0 (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.