aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Common/EnvironmentProxyConfigurationResolver.h
blob: c0843f50c325753c2a8c960f03ecec39a1aae5d9 (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
#pragma once

#include <Common/ProxyConfigurationResolver.h>

namespace DB
{

/*
 * Grabs proxy configuration from environment variables (http_proxy and https_proxy).
 * */
class EnvironmentProxyConfigurationResolver : public ProxyConfigurationResolver
{
public:
    explicit EnvironmentProxyConfigurationResolver(Protocol protocol_);

    ProxyConfiguration resolve() override;
    void errorReport(const ProxyConfiguration &) override {}

private:
    Protocol protocol;
};

}