aboutsummaryrefslogtreecommitdiffstats
path: root/yt/yt/core/https/config.cpp
blob: 49c59d5258ec40a741925a8d267ac5d1bc168ded (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
#include "config.h"

namespace NYT::NHttps {

////////////////////////////////////////////////////////////////////////////////

void TServerCredentialsConfig::Register(TRegistrar registrar)
{
    registrar.Parameter("private_key", &TThis::PrivateKey)
        .Optional();
    registrar.Parameter("cert_chain", &TThis::CertChain)
        .Optional();
}

////////////////////////////////////////////////////////////////////////////////

void TServerConfig::Register(TRegistrar registrar)
{
    registrar.Parameter("credentials", &TThis::Credentials);
}

////////////////////////////////////////////////////////////////////////////////

void TClientCredentialsConfig::Register(TRegistrar registrar)
{
    registrar.Parameter("private_key", &TThis::PrivateKey)
        .Optional();
    registrar.Parameter("cert_chain", &TThis::CertChain)
        .Optional();
}

////////////////////////////////////////////////////////////////////////////////

void TClientConfig::Register(TRegistrar registrar)
{
    registrar.Parameter("credentials", &TThis::Credentials)
        .Optional();
}

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT::NHttps