]> git.mxchange.org Git - hub.git/blob - ship-simu/application/hub/config.php
Required files added
[hub.git] / ship-simu / application / hub / config.php
1 <?php
2 /**
3  * Configuration entries for the hub only
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0
7  * @copyright   Copyright(c) 2007, 2008 Roland Haeder, this is free software
8  * @license             GNU GPL 3.0 or any newer version
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24 // Some hub-specific configuration like port hostname where we will listen, etc.
25 $cfg = FrameworkConfiguration::getInstance();
26
27 // CFG: HUB-LISTEN-ADDR
28 $cfg->setConfigEntry("hub_listen_addr", "0.0.0.0");
29
30 // CFG: HUB-LISTEN-PORT (zero = auto-choose)
31 $cfg->setConfigEntry("hub_listen_port", 9050);
32
33 // CFG: TEMPLATE-ENGINE
34 $cfg->setConfigEntry("tpl_engine", "ConsoleOutput");
35
36 // CFG: WEB-ENGINE
37 $cfg->setConfigEntry("web_engine", "DebugConsoleOutput");
38
39 // CFG: DEBUG-ENGINE
40 $cfg->setConfigEntry("debug_engine", "DebugErrorLogOutput");
41
42 // CFG: WEB-CONTENT-TYPE
43 $cfg->setConfigEntry("web_content_type", "");
44
45 // CFG: HUB-INTRO-ENABLED
46 $cfg->setConfigEntry("hub_intro_enabled", "Y");
47
48 // CFG: HUB-MAX-AUTH-TRIES
49 $cfg->setConfigEntry("hub_max_auth_tries", 3);
50
51 // CFG: HUB-MSG-AUTH-TRIES
52 $cfg->setConfigEntry("hub_msg_auth_tries", "AUTH_MAX_TRIES");
53
54 // CFG: HUB-MSG-SPOOFING
55 $cfg->setConfigEntry("hub_msg_spoofing", "SPOOFING");
56
57 // CFG: HUB-MSG-AUTH-REPLY
58 $cfg->setConfigEntry("hub_msg_auth_reply_timeout", "TIMEOUT_AUTH");
59
60 // CFG: HUB-MSG-BYE
61 $cfg->setConfigEntry("hub_msg_bye", "BYE");
62
63 // CFG: HUB-MASTER-IP
64 $cfg->setConfigEntry("hub_master_ip", "192.168.1.17");
65
66 // CFG: HUB-MASTER-PORT
67 $cfg->setConfigEntry("hub_master_port", 9050);
68
69 // CFG: HUB-AUTH-REQUEST
70 $cfg->setConfigEntry("hub_auth_request", "AUTH");
71
72 // CFG: HUB-AUTH-REQUEST-TIMEOUT (5 seconds for whole auth procedure shall be fine)
73 $cfg->setConfigEntry("hub_auth_request_timeout", 5);
74
75 // CFG: HUB-PEER-HELLO
76 $cfg->setConfigEntry("hub_peer_hello", "HELLO");
77
78 // CFG: HUB-HELLO-REPLY
79 $cfg->setConfigEntry("hub_hello_reply", "ELHO");
80
81 // CFG: HUB-HELLO-TIMEOUT
82 $cfg->setConfigEntry("hub_hello_timeout", 30);
83
84 // CFG: HUB-HELLO-RETRIES
85 $cfg->setConfigEntry("hub_hello_retires", 3);
86
87 // CFG: HUB-PEER-PING
88 $cfg->setConfigEntry("hub_peer_ping", "PING");
89
90 // CFG: HUB-PING-REPLY
91 $cfg->setConfigEntry("hub_ping_reply", "PONG");
92
93 // CFG: HUB-PING-TIMEOUT
94 $cfg->setConfigEntry("hub_ping_timeout", 10);
95
96 // CFG: HUB-PING-MAXDROPS
97 $cfg->setConfigEntry("hub_ping_maxdrops", 3);
98
99 // CFG: HUB-PEER-MISS-PONG
100 $cfg->setConfigEntry("hub_peer_miss_pong", "PONG_MISS");
101
102 // [EOF]
103 ?>