aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/IO/UseSSL.cpp
blob: 7a2ff928e00e8570714daf280f30702644189c84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "UseSSL.h"

#include "clickhouse_config.h"

#if USE_SSL
#    include <Poco/Net/SSLManager.h>
#endif

namespace DB
{
UseSSL::UseSSL()
{
#if USE_SSL
    Poco::Net::initializeSSL();
#endif
}

UseSSL::~UseSSL()
{
#if USE_SSL
    Poco::Net::uninitializeSSL();
#endif
}
}