spider/perl/Filter.pm

44 lines
516 B
Perl
Raw Normal View History

#
# The User/Sysop Filter module
#
# The way this works is that the filter routine is actually
# a predefined function that returns 0 if it is OK and 1 if it
# is not when presented with a list of things.
#
# This set of routines provide a means of maintaining the filter
# scripts which are compiled in when an entity connects.
#
# Copyright (c) 1999 Dirk Koopman G1TLH
#
# $Id$
#
package Filter;
use DXVars;
use DXUtils;
use DXDebug;
# initial filter system
sub init
{
}
sub compile
{
}
1;
__END__