add localhost client aliasing on spots and PC92A
[spider.git] / perl / Listeners.pm
1 #
2 # Copy this file to /spider/local and modify it to your requirements
3 #
4 #
5 # This file specifies which local interfaces and ports you will be
6 # listening on
7 #
8 # You can add as many as you like
9 #
10
11 package main;
12
13 use vars qw(@listen);
14
15 @listen = (
16 # remove the '#' character from the next line to enable the listener!
17   #                ["0.0.0.0", 7300],     # IPV4 only
18 # ^
19 # |
20 #                  
21 # OR (IF you listen on IPV6 as well) This one!!!!!
22   #                ["::", 7300],     # IPV4 and IPV6
23 # ^
24 # |
25 # This one!!!!!
26 );
27
28 $
29 1;