ClickHouse/dbms/include/DB/IO/HTTPCommon.h
proller 57c336f267 HTTPDictionarySource support HTTPS (#510)
* https support in dictionaries

* Style
2017-02-28 01:07:57 +04:00

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();
}