BIO_s_mem
BIO_s_null
BIO_s_socket
-BIO_set
BIO_set_callback
BIO_set_callback_arg
BIO_set_callback_ex
_libre_BIO_new_file
_libre_BIO_new_fp
_libre_BIO_new
-_libre_BIO_set
_libre_BIO_free
_libre_BIO_up_ref
_libre_BIO_get_data
-/* $OpenBSD: bio.h,v 1.62 2024/03/02 09:21:24 tb Exp $ */
+/* $OpenBSD: bio.h,v 1.63 2024/03/02 09:22:41 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
BIO *BIO_new_file(const char *filename, const char *mode);
BIO *BIO_new_fp(FILE *stream, int close_flag);
BIO *BIO_new(const BIO_METHOD *type);
-int BIO_set(BIO *a, const BIO_METHOD *type);
int BIO_free(BIO *a);
int BIO_up_ref(BIO *bio);
void *BIO_get_data(BIO *a);
-/* $OpenBSD: bio_lib.c,v 1.51 2024/02/17 14:29:07 jsing Exp $ */
+/* $OpenBSD: bio_lib.c,v 1.52 2024/03/02 09:22:41 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
}
LCRYPTO_ALIAS(BIO_new);
-int
-BIO_set(BIO *bio, const BIO_METHOD *method)
-{
- BIOerror(ERR_R_DISABLED);
- return 0;
-}
-LCRYPTO_ALIAS(BIO_set);
-
int
BIO_free(BIO *bio)
{
-/* $OpenBSD: bio.h,v 1.6 2024/03/02 09:21:24 tb Exp $ */
+/* $OpenBSD: bio.h,v 1.7 2024/03/02 09:22:41 tb Exp $ */
/*
* Copyright (c) 2023 Bob Beck <beck@openbsd.org>
*
LCRYPTO_USED(BIO_new_file);
LCRYPTO_USED(BIO_new_fp);
LCRYPTO_USED(BIO_new);
-LCRYPTO_USED(BIO_set);
LCRYPTO_USED(BIO_free);
LCRYPTO_USED(BIO_up_ref);
LCRYPTO_USED(BIO_get_data);