Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-04 16:53:37 +0300
committerMatt Caswell <matt@openssl.org>2016-04-13 10:52:33 +0300
commit62d876ad1784bce2feb1b95cfff8aca0fbc3e1e2 (patch)
tree18db51c88bbdf8774ec6d6e19fe414cba212bc78 /include/internal
parenta5e3ac13d602173e2820e7f4399fa89e25db7821 (diff)
Deprecate BIO_sock_cleanup() and make it a no-op
BIO_sock_cleanup() should not be called expicitly - we should leave auto-deinit to clean this up instead. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'include/internal')
-rw-r--r--include/internal/bio.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/internal/bio.h b/include/internal/bio.h
index b3352ce80f..bf5bc18c7a 100644
--- a/include/internal/bio.h
+++ b/include/internal/bio.h
@@ -67,5 +67,4 @@ struct bio_method_st {
long (*callback_ctrl) (BIO *, int, bio_info_cb *);
};
-
-
+void bio_sock_cleanup_intern(void);