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