From 21786eec8ec4e05054f15dafb2f37ad5cb1737aa Mon Sep 17 00:00:00 2001 From: Sergey Lyubka Date: Thu, 18 Jul 2013 18:17:48 +0100 Subject: [PATCH] Changed int -> SOCKET where appropriate, per Ben Currie --- mongoose.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mongoose.c b/mongoose.c index 30de4f16..e45ce302 100644 --- a/mongoose.c +++ b/mongoose.c @@ -189,7 +189,7 @@ typedef struct DIR { #ifndef HAVE_POLL struct pollfd { - int fd; + SOCKET fd; short events; short revents; }; @@ -2549,8 +2549,8 @@ int mg_modify_passwords_file(const char *fname, const char *domain, return 1; } -static int conn2(const char *host, int port, int use_ssl, - char *ebuf, size_t ebuf_len) { +static SOCKET conn2(const char *host, int port, int use_ssl, + char *ebuf, size_t ebuf_len) { struct sockaddr_in sin; struct hostent *he; SOCKET sock = INVALID_SOCKET;