Ring Daemon 16.0.0
Loading...
Searching...
No Matches
configkeys.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2004-2025 Savoir-faire Linux Inc.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17#pragma once
18
19namespace jami {
20
21namespace Conf {
22constexpr const char* const DHT_PORT_KEY = "dhtPort";
23constexpr const char* const DHT_VALUES_PATH_KEY = "dhtValuesPath";
24constexpr const char* const DHT_CONTACTS = "dhtContacts";
25constexpr const char* const DHT_PUBLIC_PROFILE = "dhtPublicProfile";
26constexpr const char* const DHT_PUBLIC_IN_CALLS = "dhtPublicInCalls";
27constexpr const char* const DHT_ALLOW_PEERS_FROM_HISTORY = "allowPeersFromHistory";
28constexpr const char* const DHT_ALLOW_PEERS_FROM_CONTACT = "allowPeersFromContact";
29constexpr const char* const DHT_ALLOW_PEERS_FROM_TRUSTED = "allowPeersFromTrusted";
30constexpr const char* const ETH_KEY = "ethKey";
31constexpr const char* const ETH_PATH = "ethPath";
32constexpr const char* const ETH_ACCOUNT = "ethAccount";
33constexpr const char* const RING_CA_KEY = "ringCaKey";
34constexpr const char* const RING_ACCOUNT_KEY = "ringAccountKey";
35constexpr const char* const RING_ACCOUNT_CERT = "ringAccountCert";
36constexpr const char* const RING_ACCOUNT_RECEIPT = "ringAccountReceipt";
37constexpr const char* const RING_ACCOUNT_RECEIPT_SIG = "ringAccountReceiptSignature";
38constexpr const char* const RING_ACCOUNT_CRL = "ringAccountCRL";
39constexpr const char* const RING_ACCOUNT_CONTACTS = "ringAccountContacts";
40constexpr const char* const CONVERSATIONS_KEY = "conversations";
41constexpr const char* const CONVERSATIONS_REQUESTS_KEY = "conversationsRequests";
42constexpr const char* const PROXY_ENABLED_KEY = "proxyEnabled";
43constexpr const char* const PROXY_SERVER_KEY = "proxyServer";
44
45} // namespace Conf
46
47} // namespace jami
constexpr const char *const DHT_PUBLIC_IN_CALLS
Definition configkeys.h:26
constexpr const char *const RING_ACCOUNT_RECEIPT
Definition configkeys.h:36
constexpr const char *const PROXY_ENABLED_KEY
Definition configkeys.h:42
constexpr const char *const RING_ACCOUNT_CRL
Definition configkeys.h:38
constexpr const char *const RING_ACCOUNT_KEY
Definition configkeys.h:34
constexpr const char *const DHT_CONTACTS
Definition configkeys.h:24
constexpr const char *const DHT_ALLOW_PEERS_FROM_TRUSTED
Definition configkeys.h:29
constexpr const char *const RING_ACCOUNT_CONTACTS
Definition configkeys.h:39
constexpr const char *const DHT_PUBLIC_PROFILE
Definition configkeys.h:25
constexpr const char *const RING_CA_KEY
Definition configkeys.h:33
constexpr const char *const ETH_PATH
Definition configkeys.h:31
constexpr const char *const DHT_ALLOW_PEERS_FROM_CONTACT
Definition configkeys.h:28
constexpr const char *const ETH_ACCOUNT
Definition configkeys.h:32
constexpr const char *const PROXY_SERVER_KEY
Definition configkeys.h:43
constexpr const char *const DHT_VALUES_PATH_KEY
Definition configkeys.h:23
constexpr const char *const RING_ACCOUNT_RECEIPT_SIG
Definition configkeys.h:37
constexpr const char *const ETH_KEY
Definition configkeys.h:30
constexpr const char *const DHT_PORT_KEY
Definition configkeys.h:22
constexpr const char *const DHT_ALLOW_PEERS_FROM_HISTORY
Definition configkeys.h:27
constexpr const char *const CONVERSATIONS_KEY
Definition configkeys.h:40
constexpr const char *const RING_ACCOUNT_CERT
Definition configkeys.h:35
constexpr const char *const CONVERSATIONS_REQUESTS_KEY
Definition configkeys.h:41