> one way simplistic way to try the sysread() approach
> would be go with something like
> 
>       my $message;
> 
>       my $bytes=1;
>       while ($bytes)
>       {
>               $bytes = sysread(SOCK,$buf,4096);
>               $message .= $buf;
>               # or try say
>               # last if eof(SOCK);
>       }
> 

Yep, that worked. Thanks.  


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to