mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
57c336f267
* https support in dictionaries * Style
23 lines
262 B
C++
23 lines
262 B
C++
#pragma once
|
|
|
|
#include <mutex>
|
|
|
|
namespace Poco
|
|
{
|
|
namespace Net
|
|
{
|
|
class HTTPServerResponse;
|
|
}
|
|
}
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void setResponseDefaultHeaders(Poco::Net::HTTPServerResponse & response);
|
|
|
|
extern std::once_flag client_ssl_init_once;
|
|
void clientSSLInit();
|
|
|
|
}
|