spider/perl/Listeners.pm
2005-01-10 18:34:53 +00:00

24 lines
375 B
Perl

#
# Copy this file to /spider/local and modify it to your requirements
#
#
# This file specifies which local interfaces and ports you will be
# listening on
#
# You can add as many as you like
#
package main;
use vars qw(@listen);
@listen = (
# remove the '#' character from the next line to enable the listener!
# ["0.0.0.0", 7300],
# ^
# |
# This one!!!!!
);
1;