From ce0f4b02160ee72d7d2428867fe757bc37c68c98 Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Thu, 25 Mar 2010 11:11:29 -0700 Subject: Fix Win32 socket error handling. This also fixes -http-proxy support on Windows. Change-Id: I741b224511c064412ac39351ed4f1b9146a313a5 --- migration-tcp-android.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'migration-tcp-android.c') diff --git a/migration-tcp-android.c b/migration-tcp-android.c index 51e1b78..8287e69 100644 --- a/migration-tcp-android.c +++ b/migration-tcp-android.c @@ -107,11 +107,11 @@ MigrationState *tcp_start_outgoing_migration(const char *host_port, if (ret == -1) ret = -(s->get_error(s)); - if (ret == -EINPROGRESS || ret == -EWOULDBLOCK) + if (ret == -EINPROGRESS || ret == -EWOULDBLOCK || ret == -EAGAIN) qemu_set_fd_handler2(s->fd, NULL, NULL, tcp_wait_for_connect, s); } while (ret == -EINTR); - if (ret < 0 && ret != -EINPROGRESS && ret != -EWOULDBLOCK) { + if (ret < 0 && ret != -EINPROGRESS && ret != -EWOULDBLOCK && ret != -EAGAIN) { dprintf("connect failed\n"); socket_close(s->fd); qemu_free(s); -- cgit v1.1