diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-08-12 03:08:41 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-08-12 03:08:41 +0000 |
commit | c336c99e609b2918ca664bc1fdbfb916a6811508 (patch) | |
tree | ff04c4774b60cef2dce98d88497ac5ac4a3cb8e7 /src/common/util.h | |
parent | 5126f203f23773f64b51e5c0c7b7e1d702f26ca9 (diff) | |
download | tor-c336c99e609b2918ca664bc1fdbfb916a6811508.tar tor-c336c99e609b2918ca664bc1fdbfb916a6811508.tar.gz |
Start of port to win32. Missing are:
- signal support
- forking for DNS farm
- changes for async IO
- daemonizing
In other words, some files still don't build, and the ones that do build,
do nonblocking IO incorrectly.
I'm also not checking in the project files till I have a good place
for them.
svn:r380
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/common/util.h b/src/common/util.h index 6b238bf8c..68d002372 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -5,7 +5,31 @@ #ifndef __UTIL_H #define __UTIL_H +#include "orconfig.h" + +#ifdef HAVE_SYS_TIME_H #include <sys/time.h> +#endif +#ifdef HAVE_TIME_H +#include <time.h> +#endif +#ifndef HAVE_GETTIMEOFDAY +#ifdef HAVE_FTIME +#include <sys/timeb.h> +#define timeval timeb +#define tv_sec time +#define tv_usec millitm +#endif +#endif + +#ifdef _MSC_VER +/* Windows names string functions funnily. */ +#define strncasecmp strnicmp +#define strcasecmp stricmp +#define INLINE __inline +#else +#define INLINE inline +#endif void *tor_malloc(size_t size); @@ -19,4 +43,6 @@ void tv_addms(struct timeval *a, long ms); void tv_add(struct timeval *a, struct timeval *b); int tv_cmp(struct timeval *a, struct timeval *b); +void set_socket_nonblocking(int socket); + #endif |