ClickHouse/dbms/src/Common/OpenSSLHelpers.h

16 lines
243 B
C++
Raw Normal View History

2019-05-26 06:52:29 +00:00
#pragma once
2019-09-11 11:21:54 +00:00
#include <Common/config.h>
#if USE_SSL
2019-05-26 06:52:29 +00:00
#include <Core/Types.h>
namespace DB
{
2019-05-26 19:30:23 +00:00
/// Returns concatenation of error strings for all errors that OpenSSL has recorded, emptying the error queue.
2019-05-26 06:52:29 +00:00
String getOpenSSLErrors();
}
2019-09-11 11:21:54 +00:00
#endif