diff options
-rw-r--r-- | common/socket.c | 3 | ||||
-rw-r--r-- | src/idevice.c | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/common/socket.c b/common/socket.c index 0ee8105..777b23e 100644 --- a/common/socket.c +++ b/common/socket.c @@ -52,6 +52,9 @@ static int wsa_init = 0; #ifndef ECONNRESET #define ECONNRESET 108 #endif +#ifndef ETIMEDOUT +#define ETIMEDOUT 138 +#endif static int verbose = 0; diff --git a/src/idevice.c b/src/idevice.c index 31a8d3a..6b6a716 100644 --- a/src/idevice.c +++ b/src/idevice.c @@ -48,6 +48,10 @@ #include <windows.h> #endif +#ifndef ETIMEDOUT +#define ETIMEDOUT 138 +#endif + #ifdef HAVE_OPENSSL #if OPENSSL_VERSION_NUMBER < 0x10100000L || \ |