mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
92 lines
1.9 KiB
C
92 lines
1.9 KiB
C
#include "setup.h"
|
|
|
|
#ifdef WIN32 /* only do the following on windows */
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <malloc.h>
|
|
|
|
#include "nameser.h"
|
|
|
|
#ifndef __MINGW32__
|
|
int
|
|
ares_strncasecmp(const char *a, const char *b, size_t n)
|
|
{
|
|
size_t i;
|
|
|
|
for (i = 0; i < n; i++) {
|
|
int c1 = isupper(a[i]) ? tolower(a[i]) : a[i];
|
|
int c2 = isupper(b[i]) ? tolower(b[i]) : b[i];
|
|
if (c1 != c2) return c1-c2;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
ares_strcasecmp(const char *a, const char *b)
|
|
{
|
|
return strncasecmp(a, b, strlen(a)+1);
|
|
}
|
|
#endif
|
|
|
|
int
|
|
ares_gettimeofday(struct timeval *tv, struct timezone *tz)
|
|
{
|
|
FILETIME ft;
|
|
LARGE_INTEGER li;
|
|
__int64 t;
|
|
static int tzflag;
|
|
|
|
if (tv)
|
|
{
|
|
GetSystemTimeAsFileTime(&ft);
|
|
li.LowPart = ft.dwLowDateTime;
|
|
li.HighPart = ft.dwHighDateTime;
|
|
t = li.QuadPart; /* In 100-nanosecond intervals */
|
|
#if 0
|
|
t -= EPOCHFILETIME; /* Offset to the Epoch time */
|
|
#endif
|
|
t /= 10; /* In microseconds */
|
|
tv->tv_sec = (long)(t / 1000000);
|
|
tv->tv_usec = (long)(t % 1000000);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
ares_writev (SOCKET s, const struct iovec *vector, size_t count)
|
|
{
|
|
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)
|
|
{
|
|
errno = ENOMEM;
|
|
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;
|
|
}
|
|
return send (s, (const void*)buffer, bytes, 0);
|
|
}
|
|
#endif /* WIN32 builds only */
|