X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FAGWConnect.pm;fp=perl%2FAGWConnect.pm;h=c19055ef4e731adbd2dde14b28eb594eeeb22938;hb=c644e2f01b7528fb3cd4666a552a5ee282462e88;hp=0000000000000000000000000000000000000000;hpb=4398f80612fe9b55fbbc3e62be7c03ffa59a9f2b;p=spider.git diff --git a/perl/AGWConnect.pm b/perl/AGWConnect.pm new file mode 100644 index 00000000..c19055ef --- /dev/null +++ b/perl/AGWConnect.pm @@ -0,0 +1,36 @@ +# +# Copy this file to /spider/local and modify it to your requirements +# +# +# This file specifies whether you want to connect to an AGW Engine +# You are only likely to want to do this in a Microsoft Windows +# environment +# + +package AGWMsg; + +use strict; +use vars qw($enable $login $passwd $addr $port $monitor); + +# set this to 1 to enable AGW Engine handling +$enable = 0; + +# user name you are logging in as +$login = ''; + +# password required +$passwd = ''; + +# +# -- don't change these unless you know what you are doing -- +# +# the ip address of the AGW engine you are connecting to +$addr = "localhost"; + +# the port number the AGW engine is listening to +$port = 8000; + +# default monitor status +$monitor = 0; + +1;