f1c3ebf675958f00d0d82412c4e54dcb5100f147
[core.git] / inc / config / config-hubmaster.php
1 <?php
2 /**
3  * Configuration entries for connecting to the hub
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
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 ///////////////////////////////////////////////////////////////////////////////
25 /// DO NOT RELY ON THIS CONFIG ENTRIES! THEY ARE SUBJECT OF BEING REPLACED. ///
26 ///////////////////////////////////////////////////////////////////////////////
27
28 // Get the configuration instance
29 $cfg = FrameworkConfiguration::getInstance();
30
31 // CFG: HUB-LISTEN-ADDR
32 $cfg->setConfigEntry('hub_listen_addr', "0.0.0.0");
33
34 // CFG: HUB-LISTEN-PORT (zero = auto-choose)
35 $cfg->setConfigEntry('hub_listen_port', 9060);
36
37 // CFG: HUB-MAX-AUTH-TRIES
38 $cfg->setConfigEntry('hub_max_auth_tries', 3);
39
40 // CFG: HUB-MSG-AUTH-TRIES
41 $cfg->setConfigEntry('hub_msg_auth_tries', "AUTH_MAX_TRIES");
42
43 // CFG: HUB-MSG-SPOOFING
44 $cfg->setConfigEntry('hub_msg_spoofing', "SPOOFING");
45
46 // CFG: HUB-MSG-AUTH-REPLY
47 $cfg->setConfigEntry('hub_msg_auth_reply_timeout', "TIMEOUT_AUTH");
48
49 // CFG: HUB-MSG-BYE
50 $cfg->setConfigEntry('hub_msg_bye', "BYE");
51
52 // CFG: HUB-MASTER-IP
53 $cfg->setConfigEntry('hub_master_ip', "192.168.1.1");
54
55 // CFG: HUB-MASTER-PORT
56 $cfg->setConfigEntry('hub_master_port', 9060);
57
58 // CFG: HUB-AUTH-REQUEST
59 $cfg->setConfigEntry('hub_auth_request', "AUTH");
60
61 // CFG: HUB-AUTH-REQUEST-TIMEOUT (5 seconds for whole auth procedure shall be fine)
62 $cfg->setConfigEntry('hub_auth_request_timeout', 5);
63
64 // CFG: HUB-PEER-HELLO
65 $cfg->setConfigEntry('hub_peer_hello', "HELLO");
66
67 // CFG: HUB-HELLO-REPLY
68 $cfg->setConfigEntry('hub_hello_reply', "ELHO");
69
70 // CFG: HUB-HELLO-TIMEOUT
71 $cfg->setConfigEntry('hub_hello_timeout', 30);
72
73 // CFG: HUB-HELLO-RETRIES
74 $cfg->setConfigEntry('hub_hello_retires', 3);
75
76 // CFG: HUB-PEER-PING
77 $cfg->setConfigEntry('hub_peer_ping', "PING");
78
79 // CFG: HUB-PING-REPLY
80 $cfg->setConfigEntry('hub_ping_reply', "PONG");
81
82 // CFG: HUB-PING-TIMEOUT
83 $cfg->setConfigEntry('hub_ping_timeout', 10);
84
85 // CFG: HUB-PING-MAXDROPS
86 $cfg->setConfigEntry('hub_ping_maxdrops', 3);
87
88 // CFG: HUB-PEER-MISS-PONG
89 $cfg->setConfigEntry('hub_peer_miss_pong', "PONG_MISS");
90
91 // CFG: HUB-INTRO-ENABLED
92 $cfg->setConfigEntry('hub_intro_enabled', "Y");
93
94 // [EOF]
95 ?>