Any known problems with socket I/O in Perl?

2005-02-09 Thread Mark.Berryman
Here is the situation: I installed the packages authen::radius and apache::authenradius in order in to implement protecting some web pages using SecurID (using a RADIUS interface). According to the RADIUS log files the authentication is succeeding but the Perl module says it is not. If I test

Re: Any known problems with socket I/O in Perl?

2005-02-09 Thread Craig Berry
On Wednesday, February 09, 2005, at 02:16PM, [EMAIL PROTECTED] wrote: $self-{'sock'}-recv ($data, 65536) or return $self-set_error('ERECVFAIL'); Is that trying to transfer something one byte larger than the 64K I believe we're limited to in a single $QIO? Just a thought; I don't

Re: Any known problems with socket I/O in Perl?

2005-02-09 Thread Mark.Berryman
On Wednesday, February 09, 2005, at 02:16PM, [EMAIL PROTECTED] wrote: $self-{'sock'}-recv ($data, 65536) or return $self-set_error('ERECVFAIL'); Is that trying to transfer something one byte larger than the 64K I believe we're limited to in a single $QIO? Just a thought; I