summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2020-01-05 03:38:27 +0100
committerGravatar Nikias Bassen2020-01-05 03:38:27 +0100
commitdb4dec661d9a9ae0886fb1cf9a2ffa7be3d34184 (patch)
tree24cff9c76f4199e094250322e663faac7c1a8672 /common
parent49d2c6d8051c84ec0ba6db1943a1b7369a0f2741 (diff)
downloadlibimobiledevice-db4dec661d9a9ae0886fb1cf9a2ffa7be3d34184.tar.gz
libimobiledevice-db4dec661d9a9ae0886fb1cf9a2ffa7be3d34184.tar.bz2
Define ETIMEDOUT if required
Diffstat (limited to 'common')
-rw-r--r--common/socket.c3
1 files changed, 3 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;