2004-07-22 22:18:45 +00:00
|
|
|
#include "setup.h"
|
|
|
|
|
2006-07-22 15:37:10 +00:00
|
|
|
/* $Id$ */
|
2006-07-22 15:21:13 +00:00
|
|
|
|
2004-08-20 13:45:26 +00:00
|
|
|
/* only do the following on windows
|
|
|
|
*/
|
|
|
|
#if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS)
|
2003-10-07 21:54:04 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
2004-07-24 21:47:49 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <malloc.h>
|
2003-10-07 21:54:04 +00:00
|
|
|
|
2004-08-20 13:45:26 +00:00
|
|
|
#ifdef WATT32
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#else
|
2003-10-07 21:54:04 +00:00
|
|
|
#include "nameser.h"
|
2004-08-20 13:45:26 +00:00
|
|
|
#endif
|
|
|
|
#include "ares.h"
|
|
|
|
#include "ares_private.h"
|
2003-10-07 21:54:04 +00:00
|
|
|
|
2007-02-04 12:50:53 +00:00
|
|
|
#ifdef __WATCOMC__
|
2007-02-04 13:02:31 +00:00
|
|
|
/*
|
2007-02-19 17:40:36 +00:00
|
|
|
* Watcom needs a DllMain() in order to initialise the clib startup code.
|
2007-02-04 12:50:53 +00:00
|
|
|
*/
|
|
|
|
BOOL
|
2007-02-04 13:02:31 +00:00
|
|
|
WINAPI DllMain (HINSTANCE hnd, DWORD reason, LPVOID reserved)
|
2007-02-04 12:50:53 +00:00
|
|
|
{
|
|
|
|
(void) hnd;
|
|
|
|
(void) reason;
|
|
|
|
(void) reserved;
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-07-24 21:47:49 +00:00
|
|
|
int
|
2004-08-20 13:45:26 +00:00
|
|
|
ares_writev (ares_socket_t s, const struct iovec *vector, size_t count)
|
2004-07-24 21:47:49 +00: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 15:04:44 +00:00
|
|
|
SET_ERRNO(ENOMEM);
|
2004-07-24 21:47:49 +00: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 18:01:23 +00:00
|
|
|
return (int)swrite(s, buffer, bytes);
|
2004-07-24 21:47:49 +00:00
|
|
|
}
|
2004-07-22 22:18:45 +00:00
|
|
|
#endif /* WIN32 builds only */
|