2004-04-26 09:20:11 +02:00
|
|
|
/***************************************************************************
|
2004-10-06 09:50:18 +02:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2004-04-26 09:20:11 +02:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2012-12-14 17:38:18 +01:00
|
|
|
* Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-04-26 09:20:11 +02:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-10-06 09:50:18 +02:00
|
|
|
*
|
2004-04-26 09:20:11 +02:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2012-12-28 12:40:20 +01:00
|
|
|
#include "curl_setup.h"
|
2004-04-26 09:20:11 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
2009-12-30 18:59:56 +01:00
|
|
|
#ifdef __VMS
|
2004-04-26 09:20:11 +02:00
|
|
|
#include <in.h>
|
|
|
|
#include <inet.h>
|
|
|
|
#endif
|
|
|
|
|
2006-04-26 19:23:28 +02:00
|
|
|
#ifdef HAVE_PROCESS_H
|
2004-04-26 09:20:11 +02:00
|
|
|
#include <process.h>
|
|
|
|
#endif
|
|
|
|
|
2012-12-28 12:40:20 +01:00
|
|
|
#include "curl_urldata.h"
|
|
|
|
#include "curl_sendf.h"
|
|
|
|
#include "curl_hostip.h"
|
|
|
|
#include "curl_hash.h"
|
|
|
|
#include "curl_share.h"
|
|
|
|
#include "curl_strerror.h"
|
|
|
|
#include "curl_url.h"
|
2004-04-26 09:20:11 +02:00
|
|
|
|
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2009-04-21 13:46:16 +02:00
|
|
|
#include "curl_memory.h"
|
2004-04-26 09:20:11 +02:00
|
|
|
/* The last #include file should be: */
|
2012-12-28 12:40:20 +01:00
|
|
|
#include "curl_memdebug.h"
|
2004-04-26 09:20:11 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* Only for builds using synchronous name resolves
|
|
|
|
**********************************************************************/
|
|
|
|
#ifdef CURLRES_SYNCH
|
|
|
|
|
2011-04-12 17:34:28 +02:00
|
|
|
/*
|
|
|
|
* Function provided by the resolver backend to set DNS servers to use.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_set_dns_servers(struct SessionHandle *data,
|
|
|
|
char *servers)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
(void)servers;
|
|
|
|
return CURLE_NOT_BUILT_IN;
|
|
|
|
|
|
|
|
}
|
2004-04-26 09:20:11 +02:00
|
|
|
|
|
|
|
#endif /* truly sync */
|