|
From: Lars C. <la...@cs...> - 2001-03-26 19:33:23
|
Why the restriction that UDPSok cannot be less-than or equal to 3 in udp.c? UDPSok is == 3 if you disable TCPSupport! stdin, stdout and stderr take up 0 1 2 if that's what you think about, but this is not really define anywhere anywere in a standard. socket() can return anything >= 0 which is useable, so you should probably apply this to udp.c: 138c138 < if(icqlink->icq_UDPSok <= 3) --- > if(icqlink->icq_UDPSok < 0) -- Lars Christensen, la...@cs... |