ClickHouse/dbms/src/Common/OpenSSLHelpers.h
2019-05-26 22:30:23 +03:00

13 lines
197 B
C++

#pragma once
#include <Core/Types.h>
namespace DB
{
/// Returns concatenation of error strings for all errors that OpenSSL has recorded, emptying the error queue.
String getOpenSSLErrors();
}