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
Fabulous library.
After defining the necessary macros for asio-standalone compilation, I had two issues:
transport/asio/security/tls.hpp still referred to the boost-specific error code:
'lib::error_code translate_ec(boost::system::error_code ec) {'
Changing 'boost::system::error_code' to 'lib::asio::error_code' resolves this for me.
common/asio_ssl.hpp refers to 'asio/asio/ssl.hpp':
ifdef ASIO_STANDALONE
#include <asio/asio/ssl.hpp>
but I believe this needs to be 'asio/ssl.hpp', consistent with everywhere else.
The text was updated successfully, but these errors were encountered:
Fabulous library.
After defining the necessary macros for asio-standalone compilation, I had two issues:
transport/asio/security/tls.hpp still referred to the boost-specific error code:
'lib::error_code translate_ec(boost::system::error_code ec) {'
Changing 'boost::system::error_code' to 'lib::asio::error_code' resolves this for me.
common/asio_ssl.hpp refers to 'asio/asio/ssl.hpp':
ifdef ASIO_STANDALONE
but I believe this needs to be 'asio/ssl.hpp', consistent with everywhere else.
The text was updated successfully, but these errors were encountered: