| 1 | #pragma once |
|---|---|
| 2 | #include <Common/config.h> |
| 3 | #if USE_SSL |
| 4 | |
| 5 | #include <Core/Types.h> |
| 6 | |
| 7 | |
| 8 | namespace DB |
| 9 | { |
| 10 | |
| 11 | /// Returns concatenation of error strings for all errors that OpenSSL has recorded, emptying the error queue. |
| 12 | String getOpenSSLErrors(); |
| 13 | |
| 14 | } |
| 15 | #endif |
| 16 |