diff options
author | Dominic Chen <1108560+ddcc@users.noreply.github.com> | 2019-05-06 07:47:02 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2019-05-06 07:47:02 -0400 |
commit | acada96664f0b226b8fa3e7192eb0d008367e1f1 (patch) | |
tree | 77758575aa3b943e8c506b35d4f26540d0abfa83 | |
parent | a4d272a54e85bdca8f9dfdea9c03b16a701e1a93 (diff) | |
download | cryptography-acada96664f0b226b8fa3e7192eb0d008367e1f1.tar.gz cryptography-acada96664f0b226b8fa3e7192eb0d008367e1f1.tar.bz2 cryptography-acada96664f0b226b8fa3e7192eb0d008367e1f1.zip |
add BIO_free_all (#4874)
-rw-r--r-- | src/_cffi_src/openssl/bio.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/bio.py b/src/_cffi_src/openssl/bio.py index d65775a0..0e6cb38c 100644 --- a/src/_cffi_src/openssl/bio.py +++ b/src/_cffi_src/openssl/bio.py @@ -15,6 +15,7 @@ typedef ... BIO_METHOD; FUNCTIONS = """ int BIO_free(BIO *); +void BIO_free_all(BIO *); BIO *BIO_new_file(const char *, const char *); BIO *BIO_new_dgram(int, int); size_t BIO_ctrl_pending(BIO *); |