SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
config.hpp
1//
2// config.hpp
3// skyway
4//
5// Created by sandabu on 2022/02/14.
6// Copyright © 2022 NTT DOCOMO BUSINESS, Inc. All rights reserved.
7//
8
9#ifndef SKYWAY_CORE_CONFIG_HPP_
10#define SKYWAY_CORE_CONFIG_HPP_
11
12#include <string>
13
14namespace skyway {
15namespace core {
16namespace config {
17
18namespace ice {
19extern const std::string kDefaultParamsServerDomain;
20extern const int kDefaultParamsServerVersion;
21extern const bool kDefaultUseSecureProtocol;
22extern const int kTtl;
23
24} // namespace ice
25
26namespace channel {
27extern const int kLocalPersonCreationTimeoutSec;
28}
29
30namespace member {
32extern const int kDefaultKeepAliveIntervalGapSec;
33extern const int kDefaultKeepAliveIntervalSec;
34extern const int kInfiniteKeepAliveInterval;
35} // namespace member
36
37extern const std::string kLocalDataStreamLabel;
39extern const std::string kRemoteDataStreamJsObjectFlag;
40
41} // namespace config
42} // namespace core
43} // namespace skyway
44
45#endif /* SKYWAY_CORE_CONFIG_HPP_ */