summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/bio/bio.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libcrypto/bio/bio.h')
-rw-r--r--lib/libcrypto/bio/bio.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libcrypto/bio/bio.h b/lib/libcrypto/bio/bio.h
index 3a1577ab37c..c60ab389a04 100644
--- a/lib/libcrypto/bio/bio.h
+++ b/lib/libcrypto/bio/bio.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bio.h,v 1.31 2018/02/17 13:57:14 tb Exp $ */
+/* $OpenBSD: bio.h,v 1.32 2018/02/18 12:58:25 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -586,6 +586,9 @@ BIO *BIO_new_fp(FILE *stream, int close_flag);
BIO * BIO_new(BIO_METHOD *type);
int BIO_set(BIO *a, BIO_METHOD *type);
int BIO_free(BIO *a);
+void *BIO_get_data(BIO *a);
+void BIO_set_data(BIO *a, void *ptr);
+void BIO_set_init(BIO *a, int init);
void BIO_vfree(BIO *a);
int BIO_read(BIO *b, void *data, int len)
__attribute__((__bounded__(__buffer__,2,3)));