You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the CMakeLists.txt file currently looks for OpenSSL if TLS is enabled
IF (MQTT_USE_TLS)
FIND_PACKAGE (OpenSSL REQUIRED)
IF (MQTT_USE_STATIC_OPENSSL)
FIND_PACKAGE (ZLIB REQUIRED)
ENDIF ()
ENDIF ()
Now that it's possible to compile Boost Asio with WolfSSL, can mqtt_cpp also support WolfSSL as the TLS library instead of OpenSSL? From what I can see, mqtt_cpp currently only depends on boost::asio::ssl and not OpenSSL directly. Is that correct?
The text was updated successfully, but these errors were encountered:
I noticed that the
CMakeLists.txt
file currently looks for OpenSSL if TLS is enabledNow that it's possible to compile Boost Asio with WolfSSL, can mqtt_cpp also support WolfSSL as the TLS library instead of OpenSSL? From what I can see, mqtt_cpp currently only depends on
boost::asio::ssl
and not OpenSSL directly. Is that correct?The text was updated successfully, but these errors were encountered: