/[meteor]/googlecode.com/svn/trunk/Meteor/Connection.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /googlecode.com/svn/trunk/Meteor/Connection.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 25 by knops.gerd, Sun May 20 19:40:53 2007 UTC revision 37 by knops.gerd, Fri Feb 1 21:22:03 2008 UTC
# Line 53  sub addAllHandleBits { Line 53  sub addAllHandleBits {
53          my $wVecRef=shift;          my $wVecRef=shift;
54          my $eVecRef=shift;          my $eVecRef=shift;
55                    
56          map {$_->addHandleBits($rVecRef,$wVecRef,$eVecRef)} @Connections;          my @cons=@Connections;
57            map {$_->addHandleBits($rVecRef,$wVecRef,$eVecRef) if(defined($_)) } @cons;
58  }  }
59    
60  sub checkAllHandleBits {  sub checkAllHandleBits {
# Line 63  sub checkAllHandleBits { Line 64  sub checkAllHandleBits {
64          my $wVec=shift;          my $wVec=shift;
65          my $eVec=shift;          my $eVec=shift;
66                    
67          map {$_->checkHandleBits($rVec,$wVec,$eVec)} @Connections;          my @cons=@Connections;
68            map {$_->checkHandleBits($rVec,$wVec,$eVec) if(defined($_)) } @cons;
69  }  }
70    
71  sub connectionCount {  sub connectionCount {
# Line 295  sub close { Line 297  sub close {
297          }          }
298                    
299          &::syslog('debug',"Closed %s for %s",ref($self),$self->{'socket'}->{'connection'}->{'remoteIP'});          &::syslog('debug',"Closed %s for %s",ref($self),$self->{'socket'}->{'connection'}->{'remoteIP'});
300            
301            $self->didClose();
302    }
303    
304    sub didClose {
305  }  }
306    
307  1;  1;

Legend:
Removed from v.25  
changed lines
  Added in v.37

  ViewVC Help
Powered by ViewVC 1.1.26