mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-25 19:49:00 +08:00
Changed int -> SOCKET where appropriate, per Ben Currie
This commit is contained in:
parent
036b213b2b
commit
21786eec8e
@ -189,7 +189,7 @@ typedef struct DIR {
|
||||
|
||||
#ifndef HAVE_POLL
|
||||
struct pollfd {
|
||||
int fd;
|
||||
SOCKET fd;
|
||||
short events;
|
||||
short revents;
|
||||
};
|
||||
@ -2549,7 +2549,7 @@ int mg_modify_passwords_file(const char *fname, const char *domain,
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int conn2(const char *host, int port, int use_ssl,
|
||||
static SOCKET conn2(const char *host, int port, int use_ssl,
|
||||
char *ebuf, size_t ebuf_len) {
|
||||
struct sockaddr_in sin;
|
||||
struct hostent *he;
|
||||
|
Loading…
Reference in New Issue
Block a user