Changeset 112

Show
Ignore:
Timestamp:
12/27/06 22:25:47 (2 years ago)
Author:
bradfitz
Message:

1.56

-- Reset method _still_ wasn't resetting enough. had to reset the

EventLoop method as well, so _InitPoller would get called and reset
stuff.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGES

    r111 r112  
     11.56 
     2   -- Reset method _still_ wasn't resetting enough.  had to reset the 
     3      EventLoop method as well, so _InitPoller would get called and reset 
     4      stuff. 
     5 
    161.55 
    27   -- Reset method wasn't resetting enough. 
  • trunk/Socket.pm

    r109 r112  
    101101 
    102102use vars qw{$VERSION}; 
    103 $VERSION = "1.55"; 
     103$VERSION = "1.56"; 
    104104 
    105105use warnings; 
     
    185185    %PLCMap = (); 
    186186    $DoneInit = 0; 
     187 
     188    *EventLoop = *FirstTimeEventLoop; 
    187189} 
    188190 
     
    378380 
    379381=cut 
    380 sub EventLoop { 
     382sub FirstTimeEventLoop { 
    381383    my $class = shift; 
    382384