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
auto config = oatpp::libressl::Config::createDefaultServerConfig(pemFile, crtFile);
auto connectionProvider = oatpp::libressl::server::ConnectionProvider::createShared(config, 8443);
However, the code in libressl-example looks to works fine.
auto config = oatpp::libressl::Config::createDefaultServerConfigShared(pemFile, crtFile /* private key */);
auto connectionProvider = oatpp::libressl::server::ConnectionProvider::createShared(config, {"0.0.0.0", 8443, oatpp::network::Address::IP_4});
It is either something I don't understand, or something not updated from previous versions
Sincerely,
The text was updated successfully, but these errors were encountered:
I found some code not working on 1.3.0
However, the code in libressl-example looks to works fine.
It is either something I don't understand, or something not updated from previous versions
Sincerely,
The text was updated successfully, but these errors were encountered: