mirror of
https://github.com/curl/curl.git
synced 2026-08-26 11:43:32 +03:00
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:
parent
154c9bc3b8
commit
df750c236c
4 changed files with 33 additions and 6 deletions
10
lib/setup.h
10
lib/setup.h
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue