Somewhat crude attempt at fixing the test 91 failures. I commit this now

so that the automatic testing hosts will test these changes over the weekend.
This commit is contained in:
Daniel Stenberg
2004-01-30 12:08:18 +00:00
parent 154c9bc3b8
commit df750c236c
4 changed files with 33 additions and 6 deletions

View File

@@ -256,4 +256,14 @@ typedef struct in_addr Curl_ipconnect;
#define IOCTL_3_ARGS
#endif
#ifndef ECONNRESET
#ifdef WSAECONNRESET
#define ECONNRESET WSAECONNRESET
#else
/* This will effectively prevent the code from working in this particular
aspect, but it still compile fine! */
#define ECONNRESET 10000
#endif
#endif
#endif /* __CONFIG_H */