mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
1af6311a99
* https support in dictionaries * Style * Update README.md * https server wip * wip * cf * wip * add test * wip * wip * wip * wip * clean * cmt
23 lines
249 B
C++
23 lines
249 B
C++
#pragma once
|
|
|
|
#include <mutex>
|
|
|
|
namespace Poco
|
|
{
|
|
namespace Net
|
|
{
|
|
class HTTPServerResponse;
|
|
}
|
|
}
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void setResponseDefaultHeaders(Poco::Net::HTTPServerResponse & response);
|
|
|
|
extern std::once_flag ssl_init_once;
|
|
void SSLInit();
|
|
|
|
}
|