diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-07-09 09:52:19 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-07-09 09:52:19 +0000 |
commit | e8df4e7145e1e1449cfeffd4c6ab41baad775390 (patch) | |
tree | 43e62d4358ce4b2fa34737811e2340c505492e4b /lib/libcrypto/man | |
parent | 0b984a805e544aa51bc52a252b7373184b7aa7d1 (diff) |
sync with const changes in bio.h r1.45.
Diffstat (limited to 'lib/libcrypto/man')
-rw-r--r-- | lib/libcrypto/man/BIO_meth_new.3 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libcrypto/man/BIO_meth_new.3 b/lib/libcrypto/man/BIO_meth_new.3 index 75d5ff23dbb..2159560596a 100644 --- a/lib/libcrypto/man/BIO_meth_new.3 +++ b/lib/libcrypto/man/BIO_meth_new.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: BIO_meth_new.3,v 1.4 2018/03/23 23:18:17 schwarze Exp $ +.\" $OpenBSD: BIO_meth_new.3,v 1.5 2018/07/09 09:52:18 tb Exp $ .\" full merge up to: OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 .\" selective merge up to: OpenSSL 61f805c1 Jan 16 01:01:46 2018 +0800 .\" @@ -66,7 +66,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED .\" OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: March 23 2018 $ +.Dd $Mdocdate: July 9 2018 $ .Dt BIO_METH_NEW 3 .Os .Sh NAME @@ -104,56 +104,56 @@ .Fa "BIO_METHOD *biom" .Fc .Ft int -.Fn "(*BIO_meth_get_write(BIO_METHOD *biom))" "BIO *" "const char *" int +.Fn "(*BIO_meth_get_write(const BIO_METHOD *biom))" "BIO *" "const char *" int .Ft int .Fo BIO_meth_set_write .Fa "BIO_METHOD *biom" .Fa "int (*write)(BIO *, const char *, int)" .Fc .Ft int -.Fn "(*BIO_meth_get_read(BIO_METHOD *biom))" "BIO *" "char *" int +.Fn "(*BIO_meth_get_read(const BIO_METHOD *biom))" "BIO *" "char *" int .Ft int .Fo BIO_meth_set_read .Fa "BIO_METHOD *biom" .Fa "int (*read)(BIO *, char *, int)" .Fc .Ft int -.Fn "(*BIO_meth_get_puts(BIO_METHOD *biom))" "BIO *" "const char *" +.Fn "(*BIO_meth_get_puts(const BIO_METHOD *biom))" "BIO *" "const char *" .Ft int .Fo BIO_meth_set_puts .Fa "BIO_METHOD *biom" .Fa "int (*puts)(BIO *, const char *)" .Fc .Ft int -.Fn "(*BIO_meth_get_gets(BIO_METHOD *biom))" "BIO *" "char *" int +.Fn "(*BIO_meth_get_gets(const BIO_METHOD *biom))" "BIO *" "char *" int .Ft int .Fo BIO_meth_set_gets .Fa "BIO_METHOD *biom" .Fa "int (*gets)(BIO *, char *, int)" .Fc .Ft long -.Fn "(*BIO_meth_get_ctrl(BIO_METHOD *biom))" "BIO *" int long "void *" +.Fn "(*BIO_meth_get_ctrl(const BIO_METHOD *biom))" "BIO *" int long "void *" .Ft int .Fo BIO_meth_set_ctrl .Fa "BIO_METHOD *biom" .Fa "long (*ctrl)(BIO *, int, long, void *)" .Fc .Ft int -.Fn "(*BIO_meth_get_create(BIO_METHOD *biom))" "BIO *" +.Fn "(*BIO_meth_get_create(const BIO_METHOD *biom))" "BIO *" .Ft int .Fo BIO_meth_set_create .Fa "BIO_METHOD *biom" .Fa "int (*create)(BIO *)" .Fc .Ft int -.Fn "(*BIO_meth_get_destroy(BIO_METHOD *biom))" "BIO *" +.Fn "(*BIO_meth_get_destroy(const BIO_METHOD *biom))" "BIO *" .Ft int .Fo BIO_meth_set_destroy .Fa "BIO_METHOD *biom" .Fa "int (*destroy)(BIO *)" .Fc .Ft long -.Fo "(*BIO_meth_get_callback_ctrl(BIO_METHOD *biom))" +.Fo "(*BIO_meth_get_callback_ctrl(const BIO_METHOD *biom))" .Fa "BIO *" .Fa int .Fa "BIO_info_cb *" |