diff options
author | jsing <> | 2018-02-22 16:38:43 +0000 |
---|---|---|
committer | jsing <> | 2018-02-22 16:38:43 +0000 |
commit | 0bf6ecbe2d20b398c509a2a122cd7821dca2f0b9 (patch) | |
tree | 4912c378e520c4e2d926bd8d2da57d3503f15530 /src/lib/libcrypto/bio/bio.h | |
parent | 39a7cf3424b8ebbc14c69503e50b84fd0fd598ce (diff) | |
download | openbsd-0bf6ecbe2d20b398c509a2a122cd7821dca2f0b9.tar.gz openbsd-0bf6ecbe2d20b398c509a2a122cd7821dca2f0b9.tar.bz2 openbsd-0bf6ecbe2d20b398c509a2a122cd7821dca2f0b9.zip |
Provide BIO_up_ref().
Diffstat (limited to 'src/lib/libcrypto/bio/bio.h')
-rw-r--r-- | src/lib/libcrypto/bio/bio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bio/bio.h b/src/lib/libcrypto/bio/bio.h index 0a05d64929..b85f7181bc 100644 --- a/src/lib/libcrypto/bio/bio.h +++ b/src/lib/libcrypto/bio/bio.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bio.h,v 1.38 2018/02/20 18:17:17 tb Exp $ */ | 1 | /* $OpenBSD: bio.h,v 1.39 2018/02/22 16:38:43 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -603,6 +603,7 @@ BIO *BIO_new_fp(FILE *stream, int close_flag); | |||
603 | BIO * BIO_new(BIO_METHOD *type); | 603 | BIO * BIO_new(BIO_METHOD *type); |
604 | int BIO_set(BIO *a, BIO_METHOD *type); | 604 | int BIO_set(BIO *a, BIO_METHOD *type); |
605 | int BIO_free(BIO *a); | 605 | int BIO_free(BIO *a); |
606 | int BIO_up_ref(BIO *bio); | ||
606 | void *BIO_get_data(BIO *a); | 607 | void *BIO_get_data(BIO *a); |
607 | void BIO_set_data(BIO *a, void *ptr); | 608 | void BIO_set_data(BIO *a, void *ptr); |
608 | void BIO_set_init(BIO *a, int init); | 609 | void BIO_set_init(BIO *a, int init); |