From: <jgr...@us...> - 2003-02-17 22:40:11
|
Update of /cvsroot/popfile/engine/Proxy In directory sc8-pr-cvs1:/tmp/cvs-serv16699/Proxy Modified Files: POP3.pm Log Message: I removed a comment that didn't need removing to IT'S BACK Index: POP3.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** POP3.pm 17 Feb 2003 22:36:27 -0000 1.33 --- POP3.pm 17 Feb 2003 22:40:06 -0000 1.34 *************** *** 270,274 **** } ! # Accept a connection from a client trying to use us as the mail server. if ( ( defined( $self->{selector}->can_read(0) ) ) && ( $self->{alive} ) ) { --- 270,277 ---- } ! # Accept a connection from a client trying to use us as the mail server. We service one client at a time ! # and all others get queued up to be dealt with later. We check the alive boolean here to make sure we ! # are still allowed to operate. See if there's a connection waiting on the $server by getting the list of ! # handles with data to read, if the handle is the server then we're off. if ( ( defined( $self->{selector}->can_read(0) ) ) && ( $self->{alive} ) ) { |