+21Sep02=======================================================================
+1. make some detail changes for connects out in Msg.pm
17Sep02=======================================================================
1. Added shu command for Charlie's (K1XX) benefit (together with the rest of
our butterfingered sysops) who miss the '/' out of sh/u frequently enough
blocking($sock, 0);
$conn->{blocking} = 0;
+ # does the host resolve?
my $ip = gethostbyname($to_host);
+ return undef unless $ip;
+
# my $r = $sock->connect($to_port, $ip);
my $r = connect($sock, pack_sockaddr_in($to_port, $ip));
return undef unless $r || _err_will_block($!);