2004-07-22 18:18:45 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
2006-07-22 11:37:10 -04:00
|
|
|
/* $Id$ */
|
2006-07-22 11:21:13 -04:00
|
|
|
|
2004-08-20 09:45:26 -04:00
|
|
|
/* only do the following on windows
|
|
|
|
*/
|
|
|
|
#if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS)
|
2003-10-07 17:54:04 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
2004-07-24 17:47:49 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <malloc.h>
|
2003-10-07 17:54:04 -04:00
|
|
|
|
2004-08-20 09:45:26 -04:00
|
|
|
#ifdef WATT32
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#else
|
2003-10-07 17:54:04 -04:00
|
|
|
#include "nameser.h"
|
2004-08-20 09:45:26 -04:00
|
|
|
#endif
|
|
|
|
#include "ares.h"
|
|
|
|
#include "ares_private.h"
|
2003-10-07 17:54:04 -04:00
|
|
|
|
2007-02-04 07:50:53 -05:00
|
|
|
#ifdef __WATCOMC__
|
2007-02-04 08:02:31 -05:00
|
|
|
/*
|
2007-02-19 12:40:36 -05:00
|
|
|
* Watcom needs a DllMain() in order to initialise the clib startup code.
|
2007-02-04 07:50:53 -05:00
|
|
|
*/
|
|
|
|
BOOL
|
2007-02-04 08:02:31 -05:00
|
|
|
WINAPI DllMain (HINSTANCE hnd, DWORD reason, LPVOID reserved)
|
2007-02-04 07:50:53 -05:00
|
|
|
{
|
|
|
|
(void) hnd;
|
|
|
|
(void) reason;
|
|
|
|
(void) reserved;
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-03-09 05:18:09 -05:00
|
|
|
#ifndef __MINGW32__
|
2003-10-07 17:54:04 -04:00
|
|
|
int
|
2004-08-20 09:45:26 -04:00
|
|
|
ares_strncasecmp(const char *a, const char *b, int n)
|
2003-10-07 17:54:04 -04:00
|
|
|
{
|
2004-08-20 09:45:26 -04:00
|
|
|
int i;
|
2003-10-07 17:54:04 -04:00
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
2007-02-13 13:02:20 -05:00
|
|
|
int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i];
|
|
|
|
int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i];
|
2003-10-07 17:54:04 -04:00
|
|
|
if (c1 != c2) return c1-c2;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2004-02-04 03:00:25 -05:00
|
|
|
ares_strcasecmp(const char *a, const char *b)
|
2003-10-07 17:54:04 -04:00
|
|
|
{
|
|
|
|
return strncasecmp(a, b, strlen(a)+1);
|
|
|
|
}
|
2004-03-09 05:18:09 -05:00
|
|
|
#endif
|
2003-10-07 17:54:04 -04:00
|
|
|
|
2004-11-10 09:23:20 -05:00
|
|
|
/*
|
|
|
|
* Number of micro-seconds between the beginning of the Windows epoch
|
|
|
|
* (Jan. 1, 1601) and the Unix epoch (Jan. 1, 1970).
|
|
|
|
*/
|
|
|
|
#if defined(_MSC_VER) || defined(__WATCOMC__)
|
|
|
|
#define EPOCH_FILETIME 11644473600000000Ui64
|
|
|
|
#else
|
|
|
|
#define EPOCH_FILETIME 11644473600000000ULL
|
|
|
|
#endif
|
|
|
|
|
2004-07-22 18:18:45 -04:00
|
|
|
int
|
|
|
|
ares_gettimeofday(struct timeval *tv, struct timezone *tz)
|
2003-10-07 17:54:04 -04:00
|
|
|
{
|
|
|
|
FILETIME ft;
|
|
|
|
LARGE_INTEGER li;
|
|
|
|
__int64 t;
|
|
|
|
|
|
|
|
if (tv)
|
|
|
|
{
|
|
|
|
GetSystemTimeAsFileTime(&ft);
|
|
|
|
li.LowPart = ft.dwLowDateTime;
|
|
|
|
li.HighPart = ft.dwHighDateTime;
|
2004-11-10 09:23:20 -05:00
|
|
|
t = li.QuadPart / 10; /* In micro-second intervals */
|
|
|
|
t -= EPOCH_FILETIME; /* Offset to the Epoch time */
|
2003-10-07 17:54:04 -04:00
|
|
|
tv->tv_sec = (long)(t / 1000000);
|
|
|
|
tv->tv_usec = (long)(t % 1000000);
|
|
|
|
}
|
2004-11-10 09:23:20 -05:00
|
|
|
(void) tz;
|
2003-10-07 17:54:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2004-07-22 18:18:45 -04:00
|
|
|
|
2004-07-24 17:47:49 -04:00
|
|
|
int
|
2004-08-20 09:45:26 -04:00
|
|
|
ares_writev (ares_socket_t s, const struct iovec *vector, size_t count)
|
2004-07-24 17:47:49 -04:00
|
|
|
{
|
|
|
|
char *buffer, *bp;
|
|
|
|
size_t i, bytes = 0;
|
|
|
|
|
|
|
|
/* Find the total number of bytes to write
|
|
|
|
*/
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
bytes += vector[i].iov_len;
|
|
|
|
|
|
|
|
if (bytes == 0) /* not an error */
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
/* Allocate a temporary buffer to hold the data
|
|
|
|
*/
|
|
|
|
buffer = bp = (char*) alloca (bytes);
|
|
|
|
if (!buffer)
|
|
|
|
{
|
2007-02-16 10:04:44 -05:00
|
|
|
SET_ERRNO(ENOMEM);
|
2004-07-24 17:47:49 -04:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy the data into buffer.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
memcpy (bp, vector[i].iov_base, vector[i].iov_len);
|
|
|
|
bp += vector[i].iov_len;
|
|
|
|
}
|
2006-07-28 14:01:23 -04:00
|
|
|
return (int)swrite(s, buffer, bytes);
|
2004-07-24 17:47:49 -04:00
|
|
|
}
|
2004-07-22 18:18:45 -04:00
|
|
|
#endif /* WIN32 builds only */
|