# Author: Ulli Horlacher <framstag@rus.uni-stuttgart.de>
#
-use CGI::Carp qw(fatalsToBrowser);
+BEGIN { ($ENV{PERLINIT}||'') =~ /(.+)/s and eval $1 }
# add fex lib
(our $FEXLIB) = $ENV{FEXLIB} =~ /(.+)/;
$to = normalize_email($vv);
}
}
-
-
-# read one line from STDIN (net socket) and assign it to $_
-# returns number of read bytes
-sub nvt_read {
- my $len = 0;
-
- if (defined ($_ = <STDIN>)) {
- debuglog($_);
- $len = length;
- s/\r?\n//;
- }
- return $len;
-}