52477433c531adefb96c416bc8de6f30498c6c9e
[spider.git] / perl / DXProtVars.pm
1 #
2 #
3 # These are various values used by the AK1A protocol stack
4 #
5 # Change these at your peril (or if you know what you are doing)!
6 #
7 # Copyright (c) 1998 - Dirk Koopman G1TLH
8 #
9 # $Id$
10 #
11
12 package DXProt;
13
14 # maximum number of users in a PC16 message
15 $pc16_max_users = 5;
16
17 # maximum number of nodes in a PC19 message
18 $pc19_max_nodes = 5;
19
20 # the interval between pc50s (in seconds)
21 $pc50_interval = 14*60;
22
23 # the version of DX cluster (tm) software I am masquerading as
24 $myprot_version = "5447";
25
26 # default hopcount to use
27 $def_hopcount = 15;
28
29 # some variable hop counts based on message type
30 %hopcount = (
31   11 => 25,
32   16 => 10,
33   17 => 10,
34   19 => 10,
35   21 => 10,
36 );
37
38