mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-23 05:07:13 +01:00
38 lines
668 B
C++
38 lines
668 B
C++
//
|
|
// InvalidCertificateHandler.cpp
|
|
//
|
|
// Library: NetSSL_OpenSSL
|
|
// Package: SSLCore
|
|
// Module: InvalidCertificateHandler
|
|
//
|
|
// Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Net/InvalidCertificateHandler.h"
|
|
#include "Poco/Net/SSLManager.h"
|
|
#include "Poco/Delegate.h"
|
|
|
|
|
|
using Poco::Delegate;
|
|
|
|
|
|
namespace Poco {
|
|
namespace Net {
|
|
|
|
|
|
InvalidCertificateHandler::InvalidCertificateHandler(bool handleErrorsOnServerSide): _handleErrorsOnServerSide(handleErrorsOnServerSide)
|
|
{
|
|
}
|
|
|
|
|
|
InvalidCertificateHandler::~InvalidCertificateHandler()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Net
|