mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-15 19:42:09 +02:00
23 lines
457 B
C++
23 lines
457 B
C++
//
|
|
// SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "asio/detail/config.hpp"
|
|
#include "asio/ssl/detail/openssl_init.hpp"
|
|
|
|
namespace asio {
|
|
namespace ssl {
|
|
namespace detail {
|
|
|
|
// No OpenSSL in this implementation, instance is nullptr
|
|
asio::detail::shared_ptr<openssl_init_base::do_init> openssl_init_base::instance()
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
}
|
|
}
|
|
} // namespace asio::ssl::detail
|