I got WSAECONNABORTED (10053) on Windows. It only happens when I connect to
my server with IE 6 (default settings) but not Mozilla 1.5 (default
settings). Any help is appreciated as it is a show-stopper for my server!
Thanks!
ECONNABORTED is apparently a standard error for accept(), mentioned at <http://www.opengroup.org/onlinepubs/007904975/functions/accept.html>. It doesn't really describe when it happens (just "the connection was aborted". how? by whom?), unfortunately.
I'd guess from your different behavior with browsers that it is the browser that is aborting. Maybe it's just getting impatient if your server is bogging down, aborting the connection, and trying another. (Sometimes TCP connections just seem to "stall" indefinitely for some reason I don't really understand, so it might even be doing the smart thing.)
So I think the best thing to do is just to ignore the error, maybe log it as a warning. That accept() didn't work out; maybe the next one will.
Good luck
Scott Lamb
______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]