From: eldy <> Date: Tue, 13 Jan 2004 13:20:27 +0000 (+0000) Subject: Remove unused file. X-Git-Tag: AWSTATS_6_0_RELEASE~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b66dddf98092a5db16e1edc8698de5d8bfc10eb;p=thirdparty%2FAWStats.git Remove unused file. --- diff --git a/wwwroot/cgi-bin/plugins/detectworms.pm b/wwwroot/cgi-bin/plugins/detectworms.pm deleted file mode 100644 index 95b6c4b2..00000000 --- a/wwwroot/cgi-bin/plugins/detectworms.pm +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/perl -#----------------------------------------------------------------------------- -# detectworms AWStats plugin -#----------------------------------------------------------------------------- -# Perl Required Modules: None -#----------------------------------------------------------------------------- -# $Revision$ - $Author$ - $Date$ - -# <----- -# ENTER HERE THE USE COMMAND FOR ALL REQUIRED PERL MODULES -# -----> -use strict;no strict "refs"; - - - -#----------------------------------------------------------------------------- -# PLUGIN VARIABLES -#----------------------------------------------------------------------------- -my $PluginNeedAWStatsVersion="5.6"; -my $PluginHooksFunctions="ScanForWorms"; - -# <----- -# IF YOUR PLUGIN NEED GLOBAL VARIABLES, THEY MUST BE DECLARED HERE -use vars qw/ -/; -# -----> - - -#----------------------------------------------------------------------------- -# PLUGIN Init_pluginname FUNCTION -#----------------------------------------------------------------------------- -sub Init_detectworms { - my $InitParams=shift; - my $checkversion=&Check_Plugin_Version($PluginNeedAWStatsVersion); - - # <----- - # YOU CAN ENTER HERE CODE TO INIT PLUGIN GLOBAL VARIABLES - my @param=split(/\s+/,$InitParams); - # -----> - - return ($checkversion?$checkversion:"$PluginHooksFunctions"); -} - - - -#-------------------------------------------------------------------- -# Function: Return true if record is a worm hit -# Input: -# Output: -# UNIQUE: YES (Only one plugin using this function can be loaded) -#-------------------------------------------------------------------- -sub ScanForWorms_detectworms -{ - debug("Call to ScanForWorms",5); - -} - - - -1; # Ne pas effacer cette ligne