conf.h 467 B

123456789101112131415161718
  1. /*
  2. * SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef _ESP_ASIO_OPENSSL_CONF_H
  7. #define _ESP_ASIO_OPENSSL_CONF_H
  8. #include "esp_asio_config.h"
  9. #include "openssl/esp_asio_openssl_stubs.h"
  10. #if defined(ASIO_USE_WOLFSSL)
  11. // SSLv3 Methods not present in current wolfSSL library
  12. #define OPENSSL_NO_SSL3
  13. #include_next "openssl/conf.h"
  14. #endif // ASIO_USE_WOLFSSL
  15. #endif // _ESP_ASIO_OPENSSL_CONF_H