summaryrefslogtreecommitdiff
path: root/apps/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-11-27 16:13:12 +0100
committerRichard Levitte <levitte@openssl.org>2019-12-18 19:42:44 +0100
commite79ae962fbed99cf80feb32b326f701778ca7434 (patch)
treeb7b117e30ec2cb5c44c71d67ba88455047757c2b /apps/include
parent319cee9e2fc6fcf6ad865564eccdac4c55e92c0a (diff)
downloadopenssl-new-e79ae962fbed99cf80feb32b326f701778ca7434.tar.gz
APPS & TEST: Adapt to use the new BIO_f_prefix()
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10531)
Diffstat (limited to 'apps/include')
-rw-r--r--apps/include/apps.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/include/apps.h b/apps/include/apps.h
index 21a2a90544..c33a98772b 100644
--- a/apps/include/apps.h
+++ b/apps/include/apps.h
@@ -58,20 +58,6 @@ extern const unsigned char tls13_aes128gcmsha256_id[];
extern const unsigned char tls13_aes256gcmsha384_id[];
extern BIO_ADDR *ourpeer;
-BIO_METHOD *apps_bf_prefix(void);
-/*
- * The control used to set the prefix with BIO_ctrl()
- * We make it high enough so the chance of ever clashing with the BIO library
- * remains unlikely for the foreseeable future and beyond.
- */
-#define PREFIX_CTRL_SET_PREFIX (1 << 15)
-/*
- * apps_bf_prefix() returns a dynamically created BIO_METHOD, which we
- * need to destroy at some point. When created internally, it's stored
- * in an internal pointer which can be freed with the following function
- */
-void destroy_prefix_method(void);
-
BIO *dup_bio_in(int format);
BIO *dup_bio_out(int format);
BIO *dup_bio_err(int format);