You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
435 B
C
21 lines
435 B
C
// Copyright 2007 - 2021, Alan Antonuk and the rabbitmq-c contributors.
|
|
// SPDX-License-Identifier: mit
|
|
|
|
#ifndef AMQP_OPENSSL_BIO
|
|
#define AMQP_OPENSSL_BIO
|
|
|
|
// Use OpenSSL v1.1.1 API.
|
|
#define OPENSSL_API_COMPAT 10101
|
|
|
|
#include <openssl/bio.h>
|
|
|
|
int amqp_openssl_bio_init(void);
|
|
|
|
void amqp_openssl_bio_destroy(void);
|
|
|
|
typedef const BIO_METHOD *BIO_METHOD_PTR;
|
|
|
|
BIO_METHOD_PTR amqp_openssl_bio(void);
|
|
|
|
#endif /* ifndef AMQP_OPENSSL_BIO */
|