aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Common/ProxyConfiguration.h
blob: cc951c004bc85a97a8a1edb86bbe4215ac9627d6 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once

#include <string>

namespace DB
{

struct ProxyConfiguration
{
    enum class Protocol
    {
        HTTP,
        HTTPS,
        ANY
    };

    static auto protocolFromString(const std::string & str)
    {
        if (str == "http")
        {
            return Protocol::HTTP;
        }
        else if (str == "https")
        {
            return Protocol::HTTPS;
        }
        else
        {
            return Protocol::ANY;
        }
    }

    static auto protocolToString(Protocol protocol)
    {
        switch (protocol)
        {
            case Protocol::HTTP:
                return "http";
            case Protocol::HTTPS:
                return "https";
            case Protocol::ANY:
                return "any";
        }
    }

    std::string host;
    Protocol protocol;
    uint16_t port;
};

}