Various MSVC cleanups from Brodie Thiesfield.

svn:r1385
This commit is contained in:
Nick Mathewson 2009-07-28 19:41:39 +00:00
parent 12199fa7a5
commit 5b5b880be7
16 changed files with 31 additions and 12 deletions

View File

@ -334,4 +334,6 @@
/* Define to `int' if <sys/types.h> does not define. */ /* Define to `int' if <sys/types.h> does not define. */
#define _EVENT_ssize_t intptr_t #define _EVENT_ssize_t intptr_t
#define ssize_t SSIZE_T
#endif #endif

View File

@ -334,11 +334,12 @@ win32_dispatch(struct event_base *base, struct timeval *tv)
} }
} }
if (win32op->writeset_out->fd_count) { if (win32op->writeset_out->fd_count) {
SOCKET s;
i = rand() % win32op->writeset_out->fd_count; i = rand() % win32op->writeset_out->fd_count;
for (j=0; j<win32op->writeset_out->fd_count; ++j) { for (j=0; j<win32op->writeset_out->fd_count; ++j) {
if (++i >= win32op->writeset_out->fd_count) if (++i >= win32op->writeset_out->fd_count)
i = 0; i = 0;
SOCKET s = win32op->writeset_out->fd_array[i]; s = win32op->writeset_out->fd_array[i];
evmap_io_active(base, s, EV_WRITE); evmap_io_active(base, s, EV_WRITE);
} }
} }

View File

@ -42,6 +42,7 @@
#include "iocp-internal.h" #include "iocp-internal.h"
#include "mm-internal.h" #include "mm-internal.h"
#include <winsock2.h>
#include <windows.h> #include <windows.h>
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>

View File

@ -121,6 +121,7 @@
#include "evthread-internal.h" #include "evthread-internal.h"
#ifdef WIN32 #ifdef WIN32
#include <ctype.h> #include <ctype.h>
#include <winsock2.h>
#include <windows.h> #include <windows.h>
#include <iphlpapi.h> #include <iphlpapi.h>
#include <io.h> #include <io.h>

View File

@ -179,6 +179,7 @@ extern "C" {
#ifdef WIN32 #ifdef WIN32
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <winsock2.h>
#include <windows.h> #include <windows.h>
#undef WIN32_LEAN_AND_MEAN #undef WIN32_LEAN_AND_MEAN
typedef unsigned char u_char; typedef unsigned char u_char;

View File

@ -24,6 +24,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <winsock2.h>
#include <windows.h> #include <windows.h>
#include <process.h> #include <process.h>
#include <stdio.h> #include <stdio.h>

View File

@ -28,6 +28,7 @@
#endif #endif
#ifdef WIN32 #ifdef WIN32
#include <winsock2.h>
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#undef WIN32_LEAN_AND_MEAN #undef WIN32_LEAN_AND_MEAN
@ -35,7 +36,7 @@
#include <sys/types.h> #include <sys/types.h>
#ifdef _EVENT_HAVE_SYS_TIME_H #ifdef _EVENT_HAVE_SYS_TIME_H
#include <sys/time.h> #include <sys/time.h>
#else #elif !defined(WIN32)
#include <sys/_time.h> #include <sys/_time.h>
#endif #endif
#include <sys/queue.h> #include <sys/queue.h>

View File

@ -50,6 +50,7 @@ extern "C" {
#include <event2/util.h> #include <event2/util.h>
#ifdef WIN32 #ifdef WIN32
#include <winsock2.h>
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#undef WIN32_LEAN_AND_MEAN #undef WIN32_LEAN_AND_MEAN

3
log.c
View File

@ -42,6 +42,7 @@
#endif #endif
#ifdef WIN32 #ifdef WIN32
#include <winsock2.h>
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#undef WIN32_LEAN_AND_MEAN #undef WIN32_LEAN_AND_MEAN
@ -49,7 +50,7 @@
#include <sys/types.h> #include <sys/types.h>
#ifdef _EVENT_HAVE_SYS_TIME_H #ifdef _EVENT_HAVE_SYS_TIME_H
#include <sys/time.h> #include <sys/time.h>
#else #elif !defined(WIN32)
#include <sys/_time.h> #include <sys/_time.h>
#endif #endif
#include <stdio.h> #include <stdio.h>

View File

@ -14,6 +14,7 @@
#include <unistd.h> #include <unistd.h>
#include <sys/time.h> #include <sys/time.h>
#else #else
#include <winsock2.h>
#include <windows.h> #include <windows.h>
#endif #endif
#include <fcntl.h> #include <fcntl.h>

View File

@ -16,6 +16,7 @@
#include <unistd.h> #include <unistd.h>
#include <sys/time.h> #include <sys/time.h>
#else #else
#include <winsock2.h>
#include <windows.h> #include <windows.h>
#endif #endif
#include <signal.h> #include <signal.h>

View File

@ -61,6 +61,7 @@
#include "event2/event.h" #include "event2/event.h"
#include "event2/event_compat.h" #include "event2/event_compat.h"
#include <event2/util.h>
#include "evdns.h" #include "evdns.h"
#include "log-internal.h" #include "log-internal.h"
#include "regress.h" #include "regress.h"
@ -222,7 +223,7 @@ dns_server_request_cb(struct evdns_server_request *req, void *data)
ans.s_addr = htonl(0xc0a80b0bUL); /* 192.168.11.11 */ ans.s_addr = htonl(0xc0a80b0bUL); /* 192.168.11.11 */
if (req->questions[i]->type == EVDNS_TYPE_A && if (req->questions[i]->type == EVDNS_TYPE_A &&
req->questions[i]->dns_question_class == EVDNS_CLASS_INET && req->questions[i]->dns_question_class == EVDNS_CLASS_INET &&
!strcasecmp(req->questions[i]->name, "zz.example.com")) { !evutil_strcasecmp(req->questions[i]->name, "zz.example.com")) {
r = evdns_server_request_add_a_reply(req, r = evdns_server_request_add_a_reply(req,
req->questions[i]->name, req->questions[i]->name,
1, &ans.s_addr, 12345); 1, &ans.s_addr, 12345);
@ -230,7 +231,7 @@ dns_server_request_cb(struct evdns_server_request *req, void *data)
dns_ok = 0; dns_ok = 0;
} else if (req->questions[i]->type == EVDNS_TYPE_AAAA && } else if (req->questions[i]->type == EVDNS_TYPE_AAAA &&
req->questions[i]->dns_question_class == EVDNS_CLASS_INET && req->questions[i]->dns_question_class == EVDNS_CLASS_INET &&
!strcasecmp(req->questions[i]->name, "zz.example.com")) { !evutil_strcasecmp(req->questions[i]->name, "zz.example.com")) {
char addr6[17] = "abcdefghijklmnop"; char addr6[17] = "abcdefghijklmnop";
r = evdns_server_request_add_aaaa_reply(req, r = evdns_server_request_add_aaaa_reply(req,
req->questions[i]->name, req->questions[i]->name,
@ -239,7 +240,7 @@ dns_server_request_cb(struct evdns_server_request *req, void *data)
dns_ok = 0; dns_ok = 0;
} else if (req->questions[i]->type == EVDNS_TYPE_PTR && } else if (req->questions[i]->type == EVDNS_TYPE_PTR &&
req->questions[i]->dns_question_class == EVDNS_CLASS_INET && req->questions[i]->dns_question_class == EVDNS_CLASS_INET &&
!strcasecmp(req->questions[i]->name, TEST_ARPA)) { !evutil_strcasecmp(req->questions[i]->name, TEST_ARPA)) {
r = evdns_server_request_add_ptr_reply(req, NULL, r = evdns_server_request_add_ptr_reply(req, NULL,
req->questions[i]->name, req->questions[i]->name,
"ZZ.EXAMPLE.COM", 54321); "ZZ.EXAMPLE.COM", 54321);
@ -247,7 +248,7 @@ dns_server_request_cb(struct evdns_server_request *req, void *data)
dns_ok = 0; dns_ok = 0;
} else if (req->questions[i]->type == EVDNS_TYPE_A && } else if (req->questions[i]->type == EVDNS_TYPE_A &&
req->questions[i]->dns_question_class == EVDNS_CLASS_INET && req->questions[i]->dns_question_class == EVDNS_CLASS_INET &&
!strcasecmp(req->questions[i]->name, "drop.example.com")) { !evutil_strcasecmp(req->questions[i]->name, "drop.example.com")) {
if (evdns_server_request_drop(req)<0) if (evdns_server_request_drop(req)<0)
dns_ok = 0; dns_ok = 0;
return; return;

View File

@ -31,7 +31,6 @@
#endif #endif
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/time.h>
#ifdef _EVENT_HAVE_SYS_SOCKET_H #ifdef _EVENT_HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
@ -39,7 +38,10 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#ifndef WIN32
#include <sys/time.h>
#include <unistd.h> #include <unistd.h>
#endif
#include <errno.h> #include <errno.h>
#include <event2/event.h> #include <event2/event.h>

View File

@ -2102,7 +2102,7 @@ static void
http_multi_line_header_test(void) http_multi_line_header_test(void)
{ {
struct bufferevent *bev= NULL; struct bufferevent *bev= NULL;
int fd = -1; evutil_socket_t fd = -1;
const char *http_start_request; const char *http_start_request;
short port = -1; short port = -1;
@ -2135,7 +2135,7 @@ http_multi_line_header_test(void)
if (bev) if (bev)
bufferevent_free(bev); bufferevent_free(bev);
if (fd >= 0) if (fd >= 0)
close(fd); EVUTIL_CLOSESOCKET(fd);
if (http) if (http)
evhttp_free(http); evhttp_free(http);
} }

View File

@ -28,6 +28,7 @@
#ifdef WIN32 #ifdef WIN32
#include <winsock2.h> #include <winsock2.h>
#include <windows.h> #include <windows.h>
#define __func__ __FUNCTION__
#endif #endif
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H

View File

@ -29,6 +29,7 @@
#include <assert.h> #include <assert.h>
#ifdef WIN32 #ifdef WIN32
#include <winsock2.h>
#include <windows.h> #include <windows.h>
#else #else
#include <sys/types.h> #include <sys/types.h>
@ -36,6 +37,8 @@
#include <unistd.h> #include <unistd.h>
#endif #endif
#include <event2/util.h>
#include "tinytest.h" #include "tinytest.h"
#include "tinytest_macros.h" #include "tinytest_macros.h"
@ -116,7 +119,7 @@ _testcase_run_forked(const struct testgroup_t *group,
if (opt_verbosity>0) if (opt_verbosity>0)
printf("[forking] "); printf("[forking] ");
snprintf(buffer, sizeof(buffer), "%s --RUNNING-FORKED %s %s%s", evutil_snprintf(buffer, sizeof(buffer), "%s --RUNNING-FORKED %s %s%s",
commandname, verbosity_flag, group->prefix, testcase->name); commandname, verbosity_flag, group->prefix, testcase->name);
memset(&si, 0, sizeof(si)); memset(&si, 0, sizeof(si));
@ -245,7 +248,7 @@ _tinytest_set_flag(struct testgroup_t *groups, const char *arg, unsigned long fl
length = strstr(arg,"..")-arg; length = strstr(arg,"..")-arg;
for (i=0; groups[i].prefix; ++i) { for (i=0; groups[i].prefix; ++i) {
for (j=0; groups[i].cases[j].name; ++j) { for (j=0; groups[i].cases[j].name; ++j) {
snprintf(fullname, sizeof(fullname), "%s%s", evutil_snprintf(fullname, sizeof(fullname), "%s%s",
groups[i].prefix, groups[i].cases[j].name); groups[i].prefix, groups[i].cases[j].name);
if (!flag) /* Hack! */ if (!flag) /* Hack! */
printf(" %s\n", fullname); printf(" %s\n", fullname);