10Jan02=======================================================================
1. set SO_LINGER = 0 to try to prevent the system sending data on a closing
socket. This MAY help some of the hanging problems.
+2. do the same on the C client (which means DON'T FORGET to make it).
08Jan02=======================================================================
1. altered sh/qrz to point to the new server
2. alter the character set handling a bit to make it better for spanish
sub nolinger
{
my $conn = shift;
+ my $buf;
+ if (isdbg('sock') && ($buf = getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER))) {
+ my ($l, $t) = unpack("ll", $buf);
+ dbg("Linger is: $buf = $l $t");
+ }
setsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER, pack("ll", 0, 0)) or confess "setsockopt: $!";
+ if (isdbg('sock') && ($buf = getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER))) {
+ my ($l, $t) = unpack("ll", $buf);
+ dbg("Linger is: $buf = $l $t");
+ }
}
sub dequeue