]> git.sesse.net Git - mbd/blob - access_list.pl
Initial checkin for move to Git (no prior version history available).
[mbd] / access_list.pl
1
2 package Config;
3
4 our @access_list = (
5         # half-life - untested (packet dump only)
6         {
7                 ports => [ 27015 ],
8                 sizes => [ 16 ]
9         },
10
11         # cs 1.6 - verified
12         # (funker muligens for _alle_ source-spill inkl. hl2/cs:s)
13         {
14                 ports => [ 4242, "26900..26905", "27015..27020" ],
15                 sizes => [ 25 ]
16         },
17
18         # doom 3 - verified
19         {
20                 ports => [ "27666..27673" ],
21                 sizes => [ 14 ]
22         },
23
24         # quake 1 - verified
25         {
26                 ports => [ 26000 ],
27                 sizes => [ 12 ]
28         },
29
30         # q3a - tested with demo only
31         # rtcw: enemy territory - untested (packet dump only)
32         {
33                 ports => [ "27960..27969" ],
34                 sizes => [ 15 ]
35         },
36         
37         # bf2 - tested with demo only
38         # bf2142 reportedly uses same engine
39         {
40                 ports => [ "29900..29950" ],
41                 sizes => [ 8 ]
42         },
43
44         # bf1942 - unverified (packet dump only)
45         {
46                 ports => [ "22000..22010" ],
47                 sizes => [ 8 ]
48         },
49         
50         # quake 4 - tested with demo only, MUST select "internet"
51         {
52                 ports => [ 27950, 28004 ],
53                 sizes => [ 14 ]
54         },
55
56         # quake 2 - untested (packet dump only)
57         {
58                 ports => [ 27910 ],
59                 sizes => [ 11 ]
60         },
61
62         # warcraft 3 - untested (packet dump only)
63         {
64                 ports => [ 6112 ],
65                 sizes => [ 16 ]
66         },
67
68         # ut2003/ut2004 - untested (packet dump only)
69         {
70                 ports => [ 10777 ],
71                 sizes => [ 5 ]
72         },
73
74         # soldat - untested (packet dump only)
75         {
76                 ports => [ 23073 ],
77                 sizes => [ 8 ]
78         },
79
80         # starcraft - untested (packet dump only)
81         {
82                 ports => [ 6111, 6112 ],
83                 sizes => [ 8, 20 ]
84         },
85
86         # trackmania nations - untested (packet dump only)
87         {
88                 ports => [ "2350..2370" ],
89                 sizes => [ 42 ]
90         },
91
92         # company of heroes - untested (packet dump only)
93         {
94                 ports => [ 9100 ],
95                 sizes => [ 39 ]
96         },
97
98         # command & conquer 3 - untested (packet dump only, reported to have some kind
99         # of chat functionality)
100         {
101                 ports => [ "8086..8093" ],
102                 sizes => [ 476 ]
103         },
104
105         # unreal tournament, port 9777?
106 )