remove any leading ::ffff: on ipv4 addresses
[spider.git] / perl / BPQConnect.pm
1 #
2 # Copy this file to /spider/local and modify it to your requirements
3 #
4 #
5 # This file specifies whether you want to connect to a BPQ32 Switch
6 # You are only likely to want to do this in a Microsoft Windows
7 # environment
8 #
9
10 package BPQMsg;
11
12 use strict;
13 use vars qw($enable $ApplMask $BPQStreams);
14
15 # set this to 1 to enable BPQ handling
16
17 $enable = 0;
18
19 # Applmask is normally 1, unless you are already running another BPQ app such as a BBS
20
21 $ApplMask = 1;
22
23 # Streams to allocate - used both for incomming and outgoing connects
24
25 $BPQStreams = 10;
26
27 1;