in reply to IO::Socket::INET Messages
I'm also getting this type message when i use SSH2 on windows XP. There's a little info how to get rid of this message.
Here's solution refer to the following link:
http://diswww.mit.edu/bloom-picayune.mit.edu/perl/28965
In the above way, the modification of carp will affect my total projects. So i try to find another way that:
Just comment out the call of carp in _trapped function in IO::Select::Trap module.
sub _trapped {
my ($self, $h) = @_;
if ((ref $h) =~ /$self->{traps}/i) {
#carp (ref $h)." is trapped.";
return 1;
} else {
#carp (ref $h)." is NOT trapped.";
return 0;
}
}
|
|---|