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
{{ message }}
This repository was archived by the owner on Jul 1, 2021. It is now read-only.
The linking order seems to be incorrect when instantiating an object from PocoNetSSL (for example HTTPSClient).
I have added another test case to the test_case package and it fails when linking.
`#include "Poco/Net/Context.h"
#include "Poco/URI.h"
#include "Poco/Net/HTTPSClientSession.h"
using Poco::Net::Context;
using Poco::Net::HTTPSClientSession;
using Poco::URI;
The linking order seems to be incorrect when instantiating an object from PocoNetSSL (for example HTTPSClient).
I have added another test case to the test_case package and it fails when linking.
`#include "Poco/Net/Context.h"
#include "Poco/URI.h"
#include "Poco/Net/HTTPSClientSession.h"
using Poco::Net::Context;
using Poco::Net::HTTPSClientSession;
using Poco::URI;
int main()
{
URI uri("https://pocoproject.org/");
const Context::Ptr context = new Context(Context::CLIENT_USE, "", "", "", Context::VERIFY_NONE, 9, false, "ALL:!ADH:!LOW:!EXP:!MD5:@strength");
HTTPSClientSession session(uri.getHost(), uri.getPort(), context);
}`
The text was updated successfully, but these errors were encountered: