Code merge from latest ship-simu code
[mailer.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, 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 // Get the configuration instance
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', 9060);
32
33 // CFG: HUB-MAX-AUTH-TRIES
34 $cfg->setConfigEntry('hub_max_auth_tries', 3);
35
36 // CFG: HUB-MSG-AUTH-TRIES
37 $cfg->setConfigEntry('hub_msg_auth_tries', "AUTH_MAX_TRIES");
38
39 // CFG: HUB-MSG-SPOOFING
40 $cfg->setConfigEntry('hub_msg_spoofing', "SPOOFING");
41
42 // CFG: HUB-MSG-AUTH-REPLY
43 $cfg->setConfigEntry('hub_msg_auth_reply_timeout', "TIMEOUT_AUTH");
44
45 // CFG: HUB-MSG-BYE
46 $cfg->setConfigEntry('hub_msg_bye', "BYE");
47
48 // CFG: HUB-MASTER-IP
49 $cfg->setConfigEntry('hub_master_ip', "192.168.1.17");
50
51 // CFG: HUB-MASTER-PORT
52 $cfg->setConfigEntry('hub_master_port', 9060);
53
54 // CFG: HUB-AUTH-REQUEST
55 $cfg->setConfigEntry('hub_auth_request', "AUTH");
56
57 // CFG: HUB-AUTH-REQUEST-TIMEOUT (5 seconds for whole auth procedure shall be fine)
58 $cfg->setConfigEntry('hub_auth_request_timeout', 5);
59
60 // CFG: HUB-PEER-HELLO
61 $cfg->setConfigEntry('hub_peer_hello', "HELLO");
62
63 // CFG: HUB-HELLO-REPLY
64 $cfg->setConfigEntry('hub_hello_reply', "ELHO");
65
66 // CFG: HUB-HELLO-TIMEOUT
67 $cfg->setConfigEntry('hub_hello_timeout', 30);
68
69 // CFG: HUB-HELLO-RETRIES
70 $cfg->setConfigEntry('hub_hello_retires', 3);
71
72 // CFG: HUB-PEER-PING
73 $cfg->setConfigEntry('hub_peer_ping', "PING");
74
75 // CFG: HUB-PING-REPLY
76 $cfg->setConfigEntry('hub_ping_reply', "PONG");
77
78 // CFG: HUB-PING-TIMEOUT
79 $cfg->setConfigEntry('hub_ping_timeout', 10);
80
81 // CFG: HUB-PING-MAXDROPS
82 $cfg->setConfigEntry('hub_ping_maxdrops', 3);
83
84 // CFG: HUB-PEER-MISS-PONG
85 $cfg->setConfigEntry('hub_peer_miss_pong', "PONG_MISS");
86
87 // [EOF]
88 ?>