remove any leading ::ffff: on ipv4 addresses
[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],
18 # ^
19 # |
20 # This one!!!!!
21 );
22  
23 1;