I don't know if either of these really address the performance issue, but ...
$REC=""; $REC=<CXIBIO>;
the first assignment serves no purpose since you are immediately overwriting it.
# Contruct Host Response String $RECIN="$RECIN"."$REC";
Would the Perl compiler generate better code for
$RECIN .= $REC
?
_______________________________________________ Boston-pm mailing list [EMAIL PROTECTED] http://mail.pm.org/mailman/listinfo/boston-pm

