aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDominic Chen <1108560+ddcc@users.noreply.github.com>2019-05-06 07:47:02 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2019-05-06 07:47:02 -0400
commitacada96664f0b226b8fa3e7192eb0d008367e1f1 (patch)
tree77758575aa3b943e8c506b35d4f26540d0abfa83 /src
parenta4d272a54e85bdca8f9dfdea9c03b16a701e1a93 (diff)
downloadcryptography-acada96664f0b226b8fa3e7192eb0d008367e1f1.tar.gz
cryptography-acada96664f0b226b8fa3e7192eb0d008367e1f1.tar.bz2
cryptography-acada96664f0b226b8fa3e7192eb0d008367e1f1.zip
add BIO_free_all (#4874)
Diffstat (limited to 'src')
-rw-r--r--src/_cffi_src/openssl/bio.py1
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 *);