2018-07-09 15:24:28 -04:00
|
|
|
#ifndef HEADER_CURL_SETUP_H
|
2012-04-06 17:35:15 -04:00
|
|
|
#define HEADER_CURL_SETUP_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-05-24 03:53:25 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-02-08 03:33:42 -05:00
|
|
|
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-05-24 03:53:25 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05: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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2017-08-01 02:56:48 -04:00
|
|
|
#if defined(BUILDING_LIBCURL) && !defined(CURL_NO_OLDIES)
|
|
|
|
#define CURL_NO_OLDIES
|
|
|
|
#endif
|
|
|
|
|
2007-11-08 13:13:54 -05:00
|
|
|
/*
|
|
|
|
* Define WIN32 when build target is Win32 API
|
|
|
|
*/
|
2005-12-17 15:37:53 -05:00
|
|
|
|
2011-04-20 09:17:42 -04:00
|
|
|
#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32) && \
|
|
|
|
!defined(__SYMBIAN32__)
|
1999-12-29 09:20:26 -05:00
|
|
|
#define WIN32
|
|
|
|
#endif
|
|
|
|
|
2017-07-10 08:56:11 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
/*
|
|
|
|
* Don't include unneeded stuff in Windows headers to avoid compiler
|
|
|
|
* warnings and macro clashes.
|
|
|
|
* Make sure to define this macro before including any Windows headers.
|
|
|
|
*/
|
|
|
|
# ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
# define WIN32_LEAN_AND_MEAN
|
|
|
|
# endif
|
2018-10-08 05:33:15 -04:00
|
|
|
# ifndef NOGDI
|
|
|
|
# define NOGDI
|
|
|
|
# endif
|
2017-07-10 08:56:11 -04:00
|
|
|
#endif
|
|
|
|
|
2005-12-17 15:37:53 -05:00
|
|
|
/*
|
|
|
|
* Include configuration script results or hand-crafted
|
|
|
|
* configuration file for platforms which lack config tool.
|
|
|
|
*/
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2009-06-04 15:11:11 -04:00
|
|
|
|
2009-07-14 09:25:14 -04:00
|
|
|
#include "curl_config.h"
|
2009-06-04 15:11:11 -04:00
|
|
|
|
|
|
|
#else /* HAVE_CONFIG_H */
|
2005-12-17 15:37:53 -05:00
|
|
|
|
2004-11-02 05:12:22 -05:00
|
|
|
#ifdef _WIN32_WCE
|
2009-06-04 15:11:11 -04:00
|
|
|
# include "config-win32ce.h"
|
2004-11-02 05:12:22 -05:00
|
|
|
#else
|
2009-06-04 15:11:11 -04:00
|
|
|
# ifdef WIN32
|
|
|
|
# include "config-win32.h"
|
|
|
|
# endif
|
2005-12-17 15:37:53 -05:00
|
|
|
#endif
|
2001-08-06 08:27:28 -04:00
|
|
|
|
2008-09-04 21:27:24 -04:00
|
|
|
#if defined(macintosh) && defined(__MRC__)
|
|
|
|
# include "config-mac.h"
|
2001-11-27 02:27:32 -05:00
|
|
|
#endif
|
2005-12-17 15:37:53 -05:00
|
|
|
|
2012-04-06 17:35:15 -04:00
|
|
|
#ifdef __riscos__
|
|
|
|
# include "config-riscos.h"
|
|
|
|
#endif
|
|
|
|
|
2007-02-28 09:45:48 -05:00
|
|
|
#ifdef __AMIGA__
|
2012-04-06 17:35:15 -04:00
|
|
|
# include "config-amigaos.h"
|
2004-01-13 03:35:57 -05:00
|
|
|
#endif
|
2001-11-27 02:27:32 -05:00
|
|
|
|
2008-04-22 18:53:53 -04:00
|
|
|
#ifdef __SYMBIAN32__
|
2009-06-04 15:11:11 -04:00
|
|
|
# include "config-symbian.h"
|
2008-04-22 18:53:53 -04:00
|
|
|
#endif
|
|
|
|
|
2007-08-23 10:30:24 -04:00
|
|
|
#ifdef __OS400__
|
2008-07-21 20:12:06 -04:00
|
|
|
# include "config-os400.h"
|
2007-08-23 10:30:24 -04:00
|
|
|
#endif
|
|
|
|
|
2006-04-07 17:50:47 -04:00
|
|
|
#ifdef TPF
|
2009-05-01 08:39:40 -04:00
|
|
|
# include "config-tpf.h"
|
2006-04-07 17:50:47 -04:00
|
|
|
#endif
|
|
|
|
|
2009-06-04 15:11:11 -04:00
|
|
|
#ifdef __VXWORKS__
|
|
|
|
# include "config-vxworks.h"
|
|
|
|
#endif
|
|
|
|
|
2019-03-26 09:26:05 -04:00
|
|
|
#ifdef __PLAN9__
|
|
|
|
# include "config-plan9.h"
|
|
|
|
#endif
|
|
|
|
|
2005-12-17 15:37:53 -05:00
|
|
|
#endif /* HAVE_CONFIG_H */
|
2005-12-16 15:55:07 -05:00
|
|
|
|
2008-08-06 20:29:08 -04:00
|
|
|
/* ================================================================ */
|
|
|
|
/* Definition of preprocessor macros/symbols which modify compiler */
|
2009-10-21 03:40:33 -04:00
|
|
|
/* behavior or generated code characteristics must be done here, */
|
2008-08-06 20:29:08 -04:00
|
|
|
/* as appropriate, before any system header file is included. It is */
|
|
|
|
/* also possible to have them defined in the config file included */
|
|
|
|
/* before this point. As a result of all this we frown inclusion of */
|
|
|
|
/* system header files in our config files, avoid this at any cost. */
|
|
|
|
/* ================================================================ */
|
|
|
|
|
2009-11-14 13:51:37 -05:00
|
|
|
/*
|
|
|
|
* AIX 4.3 and newer needs _THREAD_SAFE defined to build
|
|
|
|
* proper reentrant code. Others may also need it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef NEED_THREAD_SAFE
|
|
|
|
# ifndef _THREAD_SAFE
|
|
|
|
# define _THREAD_SAFE
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2008-07-14 13:31:39 -04:00
|
|
|
/*
|
2008-07-30 04:21:25 -04:00
|
|
|
* Tru64 needs _REENTRANT set for a few function prototypes and
|
2008-07-14 13:31:39 -04:00
|
|
|
* things to appear in the system header files. Unixware needs it
|
|
|
|
* to build proper reentrant code. Others may also need it.
|
|
|
|
*/
|
|
|
|
|
2008-07-26 23:16:37 -04:00
|
|
|
#ifdef NEED_REENTRANT
|
|
|
|
# ifndef _REENTRANT
|
|
|
|
# define _REENTRANT
|
|
|
|
# endif
|
2008-07-14 13:31:39 -04:00
|
|
|
#endif
|
|
|
|
|
2014-07-14 04:40:33 -04:00
|
|
|
/* Solaris needs this to get a POSIX-conformant getpwuid_r */
|
|
|
|
#if defined(sun) || defined(__sun)
|
|
|
|
# ifndef _POSIX_PTHREAD_SEMANTICS
|
|
|
|
# define _POSIX_PTHREAD_SEMANTICS 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2008-08-06 20:29:08 -04:00
|
|
|
/* ================================================================ */
|
|
|
|
/* If you need to include a system header file for your platform, */
|
|
|
|
/* please, do it beyond the point further indicated in this file. */
|
|
|
|
/* ================================================================ */
|
|
|
|
|
2017-03-29 08:38:56 -04:00
|
|
|
#include <curl/curl.h>
|
2008-08-06 20:29:08 -04:00
|
|
|
|
2017-08-12 09:54:06 -04:00
|
|
|
#define CURL_SIZEOF_CURL_OFF_T SIZEOF_CURL_OFF_T
|
2008-08-06 20:29:08 -04:00
|
|
|
|
2008-07-14 08:39:50 -04:00
|
|
|
/*
|
|
|
|
* Disable other protocols when http is the only one desired.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HTTP_ONLY
|
2011-01-16 19:27:57 -05:00
|
|
|
# ifndef CURL_DISABLE_TFTP
|
|
|
|
# define CURL_DISABLE_TFTP
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_FTP
|
|
|
|
# define CURL_DISABLE_FTP
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_LDAP
|
|
|
|
# define CURL_DISABLE_LDAP
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_TELNET
|
|
|
|
# define CURL_DISABLE_TELNET
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_DICT
|
|
|
|
# define CURL_DISABLE_DICT
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_FILE
|
|
|
|
# define CURL_DISABLE_FILE
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_RTSP
|
|
|
|
# define CURL_DISABLE_RTSP
|
|
|
|
# endif
|
2012-09-19 05:00:17 -04:00
|
|
|
# ifndef CURL_DISABLE_POP3
|
|
|
|
# define CURL_DISABLE_POP3
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_IMAP
|
|
|
|
# define CURL_DISABLE_IMAP
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_SMTP
|
|
|
|
# define CURL_DISABLE_SMTP
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_GOPHER
|
|
|
|
# define CURL_DISABLE_GOPHER
|
|
|
|
# endif
|
2015-01-26 11:15:32 -05:00
|
|
|
# ifndef CURL_DISABLE_SMB
|
|
|
|
# define CURL_DISABLE_SMB
|
|
|
|
# endif
|
2008-07-14 08:39:50 -04:00
|
|
|
#endif
|
|
|
|
|
2010-01-22 09:20:08 -05:00
|
|
|
/*
|
|
|
|
* When http is disabled rtsp is not supported.
|
|
|
|
*/
|
|
|
|
|
2010-01-22 10:15:08 -05:00
|
|
|
#if defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_RTSP)
|
2010-01-22 09:20:08 -05:00
|
|
|
# define CURL_DISABLE_RTSP
|
|
|
|
#endif
|
|
|
|
|
2008-08-06 20:29:08 -04:00
|
|
|
/* ================================================================ */
|
|
|
|
/* No system header file shall be included in this file before this */
|
2017-05-22 03:05:10 -04:00
|
|
|
/* point. The only allowed ones are those included from curl/system.h */
|
2008-08-06 20:29:08 -04:00
|
|
|
/* ================================================================ */
|
|
|
|
|
2008-07-21 20:12:06 -04:00
|
|
|
/*
|
|
|
|
* OS/400 setup file includes some system headers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __OS400__
|
|
|
|
# include "setup-os400.h"
|
|
|
|
#endif
|
|
|
|
|
2013-02-05 22:53:34 -05:00
|
|
|
/*
|
|
|
|
* VMS setup file includes some system headers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __VMS
|
|
|
|
# include "setup-vms.h"
|
|
|
|
#endif
|
|
|
|
|
2016-06-07 06:11:37 -04:00
|
|
|
/*
|
|
|
|
* Use getaddrinfo to resolve the IPv4 address literal. If the current network
|
2018-07-09 16:04:50 -04:00
|
|
|
* interface doesn't support IPv4, but supports IPv6, NAT64, and DNS64,
|
2016-06-07 06:11:37 -04:00
|
|
|
* performing this task will result in a synthesized IPv6 address.
|
|
|
|
*/
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#define USE_RESOLVE_ON_IPS 1
|
|
|
|
#endif
|
|
|
|
|
2005-12-20 17:20:04 -05:00
|
|
|
/*
|
2005-12-16 15:55:07 -05:00
|
|
|
* Include header files for windows builds before redefining anything.
|
2009-10-21 03:40:33 -04:00
|
|
|
* Use this preprocessor block only to include or exclude windows.h,
|
2005-12-20 17:20:04 -05:00
|
|
|
* winsock2.h, ws2tcpip.h or winsock.h. Any other windows thing belongs
|
2009-10-21 03:40:33 -04:00
|
|
|
* to any other further and independent block. Under Cygwin things work
|
2006-06-08 02:12:30 -04:00
|
|
|
* just as under linux (e.g. <sys/socket.h>) and the winsock headers should
|
2006-08-03 21:13:24 -04:00
|
|
|
* never be included when __CYGWIN__ is defined. configure script takes
|
|
|
|
* care of this, not defining HAVE_WINDOWS_H, HAVE_WINSOCK_H, HAVE_WINSOCK2_H,
|
|
|
|
* neither HAVE_WS2TCPIP_H when __CYGWIN__ is defined.
|
2005-12-16 15:55:07 -05:00
|
|
|
*/
|
|
|
|
|
2006-08-03 21:13:24 -04:00
|
|
|
#ifdef HAVE_WINDOWS_H
|
2012-07-05 16:16:15 -04:00
|
|
|
# if defined(UNICODE) && !defined(_UNICODE)
|
|
|
|
# define _UNICODE
|
|
|
|
# endif
|
|
|
|
# if defined(_UNICODE) && !defined(UNICODE)
|
|
|
|
# define UNICODE
|
|
|
|
# endif
|
2018-07-08 10:49:21 -04:00
|
|
|
# include <winerror.h>
|
2005-12-17 15:37:53 -05:00
|
|
|
# include <windows.h>
|
|
|
|
# ifdef HAVE_WINSOCK2_H
|
|
|
|
# include <winsock2.h>
|
|
|
|
# ifdef HAVE_WS2TCPIP_H
|
2015-09-10 02:17:33 -04:00
|
|
|
# include <ws2tcpip.h>
|
2005-12-16 15:55:07 -05:00
|
|
|
# endif
|
2005-12-17 15:37:53 -05:00
|
|
|
# else
|
|
|
|
# ifdef HAVE_WINSOCK_H
|
|
|
|
# include <winsock.h>
|
2005-12-16 15:55:07 -05:00
|
|
|
# endif
|
|
|
|
# endif
|
2012-07-05 16:16:15 -04:00
|
|
|
# include <tchar.h>
|
2013-07-19 00:44:46 -04:00
|
|
|
# ifdef UNICODE
|
|
|
|
typedef wchar_t *(*curl_wcsdup_callback)(const wchar_t *str);
|
|
|
|
# endif
|
2005-12-16 15:55:07 -05:00
|
|
|
#endif
|
|
|
|
|
2006-10-18 11:57:49 -04:00
|
|
|
/*
|
|
|
|
* Define USE_WINSOCK to 2 if we have and use WINSOCK2 API, else
|
|
|
|
* define USE_WINSOCK to 1 if we have and use WINSOCK API, else
|
|
|
|
* undefine USE_WINSOCK.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#undef USE_WINSOCK
|
|
|
|
|
|
|
|
#ifdef HAVE_WINSOCK2_H
|
|
|
|
# define USE_WINSOCK 2
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_WINSOCK_H
|
|
|
|
# define USE_WINSOCK 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2011-08-04 15:27:29 -04:00
|
|
|
#ifdef USE_LWIPSOCK
|
2011-08-07 02:45:57 -04:00
|
|
|
# include <lwip/init.h>
|
2011-08-04 15:27:29 -04:00
|
|
|
# include <lwip/sockets.h>
|
|
|
|
# include <lwip/netdb.h>
|
|
|
|
#endif
|
|
|
|
|
2008-07-14 12:10:29 -04:00
|
|
|
#ifdef HAVE_EXTRA_STRICMP_H
|
|
|
|
# include <extra/stricmp.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_EXTRA_STRDUP_H
|
|
|
|
# include <extra/strdup.h>
|
|
|
|
#endif
|
|
|
|
|
2008-07-14 12:58:34 -04:00
|
|
|
#ifdef TPF
|
|
|
|
# include <strings.h> /* for bzero, strcasecmp, and strncasecmp */
|
|
|
|
# include <string.h> /* for strcpy and strlen */
|
|
|
|
# include <stdlib.h> /* for rand and srand */
|
|
|
|
# include <sys/socket.h> /* for select and ioctl*/
|
|
|
|
# include <netdb.h> /* for in_addr_t definition */
|
|
|
|
# include <tpf/sysapi.h> /* for tpf_process_signals */
|
2009-05-01 08:39:40 -04:00
|
|
|
/* change which select is used for libcurl */
|
|
|
|
# define select(a,b,c,d,e) tpf_select_libcurl(a,b,c,d,e)
|
2008-07-14 12:58:34 -04:00
|
|
|
#endif
|
|
|
|
|
2009-06-04 15:11:11 -04:00
|
|
|
#ifdef __VXWORKS__
|
|
|
|
# include <sockLib.h> /* for generic BSD socket functions */
|
|
|
|
# include <ioLib.h> /* for basic I/O interface functions */
|
|
|
|
#endif
|
|
|
|
|
2012-04-06 17:35:15 -04:00
|
|
|
#ifdef __AMIGA__
|
2019-03-07 19:06:59 -05:00
|
|
|
# include <exec/types.h>
|
|
|
|
# include <exec/execbase.h>
|
|
|
|
# include <proto/exec.h>
|
|
|
|
# include <proto/dos.h>
|
|
|
|
# ifdef HAVE_PROTO_BSDSOCKET_H
|
|
|
|
# include <proto/bsdsocket.h> /* ensure bsdsocket.library use */
|
2012-04-06 17:35:15 -04:00
|
|
|
# define select(a,b,c,d,e) WaitSelect(a,b,c,d,e,0)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2000-08-24 10:27:51 -04:00
|
|
|
#include <stdio.h>
|
2003-12-10 10:27:06 -05:00
|
|
|
#ifdef HAVE_ASSERT_H
|
|
|
|
#include <assert.h>
|
|
|
|
#endif
|
|
|
|
|
2004-03-03 04:27:18 -05:00
|
|
|
#ifdef __TANDEM /* for nsr-tandem-nsk systems */
|
|
|
|
#include <floss.h>
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#ifndef STDC_HEADERS /* no standard C headers! */
|
2002-02-07 09:33:36 -05:00
|
|
|
#include <curl/stdcheaders.h>
|
2001-08-06 08:27:28 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-12-20 17:20:04 -05:00
|
|
|
#ifdef __POCC__
|
2009-10-27 12:38:42 -04:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# define sys_nerr EILSEQ
|
2005-12-20 17:20:04 -05:00
|
|
|
#endif
|
|
|
|
|
2006-04-26 13:11:05 -04:00
|
|
|
/*
|
2007-02-25 22:38:26 -05:00
|
|
|
* Salford-C kludge section (mostly borrowed from wxWidgets).
|
2006-04-26 13:11:05 -04:00
|
|
|
*/
|
|
|
|
#ifdef __SALFORDC__
|
|
|
|
#pragma suppress 353 /* Possible nested comments */
|
|
|
|
#pragma suppress 593 /* Define not used */
|
|
|
|
#pragma suppress 61 /* enum has no name */
|
|
|
|
#pragma suppress 106 /* unnamed, unused parameter */
|
|
|
|
#include <clib.h>
|
|
|
|
#endif
|
|
|
|
|
2008-08-22 14:09:03 -04:00
|
|
|
/*
|
|
|
|
* Large file (>2Gb) support using WIN32 functions.
|
|
|
|
*/
|
2003-12-02 05:12:44 -05:00
|
|
|
|
2008-08-22 14:09:03 -04:00
|
|
|
#ifdef USE_WIN32_LARGE_FILES
|
|
|
|
# include <io.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/stat.h>
|
2011-10-31 17:42:43 -04:00
|
|
|
# undef lseek
|
2008-08-22 14:09:03 -04:00
|
|
|
# define lseek(fdes,offset,whence) _lseeki64(fdes, offset, whence)
|
2013-06-02 09:53:08 -04:00
|
|
|
# undef fstat
|
2008-08-22 14:09:03 -04:00
|
|
|
# define fstat(fdes,stp) _fstati64(fdes, stp)
|
2013-06-02 09:53:08 -04:00
|
|
|
# undef stat
|
2008-08-22 14:09:03 -04:00
|
|
|
# define stat(fname,stp) _stati64(fname, stp)
|
|
|
|
# define struct_stat struct _stati64
|
2009-09-18 10:48:16 -04:00
|
|
|
# define LSEEK_ERROR (__int64)-1
|
2008-08-22 14:09:03 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Small file (<2Gb) support using WIN32 functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef USE_WIN32_SMALL_FILES
|
|
|
|
# include <io.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/stat.h>
|
2012-06-18 12:44:43 -04:00
|
|
|
# ifndef _WIN32_WCE
|
|
|
|
# undef lseek
|
|
|
|
# define lseek(fdes,offset,whence) _lseek(fdes, (long)offset, whence)
|
|
|
|
# define fstat(fdes,stp) _fstat(fdes, stp)
|
|
|
|
# define stat(fname,stp) _stat(fname, stp)
|
|
|
|
# define struct_stat struct _stat
|
|
|
|
# endif
|
2009-09-18 10:48:16 -04:00
|
|
|
# define LSEEK_ERROR (long)-1
|
2008-08-22 14:09:03 -04:00
|
|
|
#endif
|
2003-12-02 05:12:44 -05:00
|
|
|
|
2008-08-22 15:01:00 -04:00
|
|
|
#ifndef struct_stat
|
|
|
|
# define struct_stat struct stat
|
|
|
|
#endif
|
2006-07-12 01:19:00 -04:00
|
|
|
|
2009-09-18 10:48:16 -04:00
|
|
|
#ifndef LSEEK_ERROR
|
|
|
|
# define LSEEK_ERROR (off_t)-1
|
|
|
|
#endif
|
|
|
|
|
2018-01-31 17:01:01 -05:00
|
|
|
#ifndef SIZEOF_TIME_T
|
|
|
|
/* assume default size of time_t to be 32 bit */
|
|
|
|
#define SIZEOF_TIME_T 4
|
|
|
|
#endif
|
|
|
|
|
2008-08-25 21:40:19 -04:00
|
|
|
/*
|
|
|
|
* Default sizeof(off_t) in case it hasn't been defined in config file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SIZEOF_OFF_T
|
2009-12-30 12:59:56 -05:00
|
|
|
# if defined(__VMS) && !defined(__VAX)
|
2008-08-25 21:40:19 -04:00
|
|
|
# if defined(_LARGEFILE)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
# endif
|
|
|
|
# elif defined(__OS400__) && defined(__ILEC400__)
|
|
|
|
# if defined(_LARGE_FILES)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
# endif
|
|
|
|
# elif defined(__MVS__) && defined(__IBMC__)
|
|
|
|
# if defined(_LP64) || defined(_LARGE_FILES)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
# endif
|
|
|
|
# elif defined(__370__) && defined(__IBMC__)
|
|
|
|
# if defined(_LP64) || defined(_LARGE_FILES)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
# endif
|
2008-08-26 06:48:52 -04:00
|
|
|
# endif
|
|
|
|
# ifndef SIZEOF_OFF_T
|
2008-08-25 21:40:19 -04:00
|
|
|
# define SIZEOF_OFF_T 4
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2018-01-01 04:11:13 -05:00
|
|
|
#if (SIZEOF_CURL_OFF_T == 4)
|
|
|
|
# define CURL_OFF_T_MAX CURL_OFF_T_C(0x7FFFFFFF)
|
|
|
|
#else
|
|
|
|
/* assume CURL_SIZEOF_CURL_OFF_T == 8 */
|
|
|
|
# define CURL_OFF_T_MAX CURL_OFF_T_C(0x7FFFFFFFFFFFFFFF)
|
|
|
|
#endif
|
|
|
|
#define CURL_OFF_T_MIN (-CURL_OFF_T_MAX - CURL_OFF_T_C(1))
|
|
|
|
|
2018-01-18 14:24:05 -05:00
|
|
|
#if (SIZEOF_TIME_T == 4)
|
|
|
|
# ifdef HAVE_TIME_T_UNSIGNED
|
|
|
|
# define TIME_T_MAX UINT_MAX
|
|
|
|
# define TIME_T_MIN 0
|
|
|
|
# else
|
|
|
|
# define TIME_T_MAX INT_MAX
|
|
|
|
# define TIME_T_MIN INT_MIN
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_TIME_T_UNSIGNED
|
|
|
|
# define TIME_T_MAX 0xFFFFFFFFFFFFFFFF
|
|
|
|
# define TIME_T_MIN 0
|
|
|
|
# else
|
|
|
|
# define TIME_T_MAX 0x7FFFFFFFFFFFFFFF
|
2018-01-25 17:05:24 -05:00
|
|
|
# define TIME_T_MIN (-TIME_T_MAX - 1)
|
2018-01-18 14:24:05 -05:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2018-03-20 10:15:14 -04:00
|
|
|
#ifndef SIZE_T_MAX
|
|
|
|
/* some limits.h headers have this defined, some don't */
|
|
|
|
#if defined(SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > 4)
|
|
|
|
#define SIZE_T_MAX 18446744073709551615U
|
|
|
|
#else
|
|
|
|
#define SIZE_T_MAX 4294967295U
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-08-07 08:33:14 -04:00
|
|
|
/*
|
|
|
|
* Arg 2 type for gethostname in case it hasn't been defined in config file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GETHOSTNAME_TYPE_ARG2
|
|
|
|
# ifdef USE_WINSOCK
|
|
|
|
# define GETHOSTNAME_TYPE_ARG2 int
|
|
|
|
# else
|
|
|
|
# define GETHOSTNAME_TYPE_ARG2 size_t
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2006-07-28 10:19:02 -04:00
|
|
|
/* Below we define some functions. They should
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
4. set the SIGALRM signal timeout
|
|
|
|
5. set dir/file naming defines
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2003-10-14 08:00:45 -04:00
|
|
|
|
2008-09-19 14:39:24 -04:00
|
|
|
# define DIR_CHAR "\\"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-04-26 06:55:52 -04:00
|
|
|
#else /* WIN32 */
|
2003-05-21 04:08:48 -04:00
|
|
|
|
2008-09-19 14:39:24 -04:00
|
|
|
# ifdef MSDOS /* Watt-32 */
|
2003-05-21 04:08:48 -04:00
|
|
|
|
2008-09-19 14:39:24 -04:00
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# define select(n,r,w,x,t) select_s(n,r,w,x,t)
|
|
|
|
# define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z))
|
|
|
|
# include <tcp.h>
|
|
|
|
# ifdef word
|
|
|
|
# undef word
|
|
|
|
# endif
|
|
|
|
# ifdef byte
|
|
|
|
# undef byte
|
|
|
|
# endif
|
2003-10-05 11:04:09 -04:00
|
|
|
|
2008-09-19 14:39:24 -04:00
|
|
|
# endif /* MSDOS */
|
2004-01-13 03:35:57 -05:00
|
|
|
|
2008-09-19 14:39:24 -04:00
|
|
|
# ifdef __minix
|
|
|
|
/* Minix 3 versions up to at least 3.1.3 are missing these prototypes */
|
2016-11-23 01:53:24 -05:00
|
|
|
extern char *strtok_r(char *s, const char *delim, char **last);
|
|
|
|
extern struct tm *gmtime_r(const time_t * const timep, struct tm *tmp);
|
2008-09-19 14:39:24 -04:00
|
|
|
# endif
|
2008-04-22 18:53:53 -04:00
|
|
|
|
2008-09-19 14:39:24 -04:00
|
|
|
# define DIR_CHAR "/"
|
2003-05-21 04:08:48 -04:00
|
|
|
|
2008-09-19 14:39:24 -04:00
|
|
|
# ifndef fileno /* sunos 4 have this as a macro! */
|
2016-04-03 14:28:34 -04:00
|
|
|
int fileno(FILE *stream);
|
2008-09-19 14:39:24 -04:00
|
|
|
# endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-04-26 06:55:52 -04:00
|
|
|
#endif /* WIN32 */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2010-01-22 15:27:48 -05:00
|
|
|
/*
|
|
|
|
* msvc 6.0 requires PSDK in order to have INET6_ADDRSTRLEN
|
|
|
|
* defined in ws2tcpip.h as well as to provide IPv6 support.
|
2015-12-07 14:27:29 -05:00
|
|
|
* Does not apply if lwIP is used.
|
2010-01-22 15:27:48 -05:00
|
|
|
*/
|
|
|
|
|
2015-12-07 14:27:29 -05:00
|
|
|
#if defined(_MSC_VER) && !defined(__POCC__) && !defined(USE_LWIPSOCK)
|
2010-01-22 15:27:48 -05:00
|
|
|
# if !defined(HAVE_WS2TCPIP_H) || \
|
|
|
|
((_MSC_VER < 1300) && !defined(INET6_ADDRSTRLEN))
|
|
|
|
# undef HAVE_GETADDRINFO_THREADSAFE
|
|
|
|
# undef HAVE_FREEADDRINFO
|
|
|
|
# undef HAVE_GETADDRINFO
|
|
|
|
# undef HAVE_GETNAMEINFO
|
|
|
|
# undef ENABLE_IPV6
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* resolver specialty compile-time defines */
|
|
|
|
/* CURLRES_* defines to use in the host*.c sources */
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
2010-01-26 03:43:21 -05:00
|
|
|
/*
|
|
|
|
* lcc-win32 doesn't have _beginthreadex(), lacks threads support.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__LCC__) && defined(WIN32)
|
|
|
|
# undef USE_THREADS_POSIX
|
|
|
|
# undef USE_THREADS_WIN32
|
2004-04-26 03:20:11 -04:00
|
|
|
#endif
|
2004-02-20 11:41:50 -05:00
|
|
|
|
2010-01-26 03:43:21 -05:00
|
|
|
/*
|
|
|
|
* MSVC threads support requires a multi-threaded runtime library.
|
|
|
|
* _beginthreadex() is not available in single-threaded ones.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && !defined(__POCC__) && !defined(_MT)
|
|
|
|
# undef USE_THREADS_POSIX
|
|
|
|
# undef USE_THREADS_WIN32
|
2005-10-02 12:52:07 -04:00
|
|
|
#endif
|
|
|
|
|
2010-01-26 03:43:21 -05:00
|
|
|
/*
|
|
|
|
* Mutually exclusive CURLRES_* definitions.
|
|
|
|
*/
|
|
|
|
|
2010-01-22 15:27:48 -05:00
|
|
|
#ifdef USE_ARES
|
|
|
|
# define CURLRES_ASYNCH
|
|
|
|
# define CURLRES_ARES
|
2012-01-12 17:13:19 -05:00
|
|
|
/* now undef the stock libc functions just to avoid them being used */
|
|
|
|
# undef HAVE_GETADDRINFO
|
2015-11-27 17:24:59 -05:00
|
|
|
# undef HAVE_FREEADDRINFO
|
2012-01-12 17:13:19 -05:00
|
|
|
# undef HAVE_GETHOSTBYNAME
|
2010-01-26 03:43:21 -05:00
|
|
|
#elif defined(USE_THREADS_POSIX) || defined(USE_THREADS_WIN32)
|
2010-01-22 15:27:48 -05:00
|
|
|
# define CURLRES_ASYNCH
|
|
|
|
# define CURLRES_THREADED
|
2010-01-26 03:43:21 -05:00
|
|
|
#else
|
|
|
|
# define CURLRES_SYNCH
|
2010-01-22 15:27:48 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
# define CURLRES_IPV6
|
|
|
|
#else
|
|
|
|
# define CURLRES_IPV4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
2009-10-20 22:30:56 -04:00
|
|
|
/*
|
|
|
|
* When using WINSOCK, TELNET protocol requires WINSOCK2 API.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(USE_WINSOCK) && (USE_WINSOCK != 2)
|
|
|
|
# define CURL_DISABLE_TELNET 1
|
|
|
|
#endif
|
|
|
|
|
2005-12-09 10:19:07 -05:00
|
|
|
/*
|
|
|
|
* msvc 6.0 does not have struct sockaddr_storage and
|
|
|
|
* does not define IPPROTO_ESP in winsock2.h. But both
|
|
|
|
* are available if PSDK is properly installed.
|
|
|
|
*/
|
|
|
|
|
2009-10-27 12:38:42 -04:00
|
|
|
#if defined(_MSC_VER) && !defined(__POCC__)
|
2009-10-20 22:30:56 -04:00
|
|
|
# if !defined(HAVE_WINSOCK2_H) || ((_MSC_VER < 1300) && !defined(IPPROTO_ESP))
|
|
|
|
# undef HAVE_STRUCT_SOCKADDR_STORAGE
|
|
|
|
# endif
|
2005-12-09 10:19:07 -05:00
|
|
|
#endif
|
2009-10-20 22:30:56 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Intentionally fail to build when using msvc 6.0 without PSDK installed.
|
2009-10-21 03:40:33 -04:00
|
|
|
* The brave of heart can circumvent this, defining ALLOW_MSVC6_WITHOUT_PSDK
|
2009-10-20 22:30:56 -04:00
|
|
|
* in lib/config-win32.h although absolutely discouraged and unsupported.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && !defined(__POCC__)
|
|
|
|
# if !defined(HAVE_WINDOWS_H) || ((_MSC_VER < 1300) && !defined(_FILETIME_))
|
|
|
|
# if !defined(ALLOW_MSVC6_WITHOUT_PSDK)
|
2011-04-20 09:17:42 -04:00
|
|
|
# error MSVC 6.0 requires "February 2003 Platform SDK" a.k.a. \
|
|
|
|
"Windows Server 2003 PSDK"
|
2009-10-20 22:30:56 -04:00
|
|
|
# else
|
|
|
|
# define CURL_DISABLE_LDAP 1
|
|
|
|
# endif
|
|
|
|
# endif
|
2005-12-09 10:19:07 -05:00
|
|
|
#endif
|
|
|
|
|
2004-03-17 07:46:42 -05:00
|
|
|
#ifdef NETWARE
|
2007-07-11 17:34:22 -04:00
|
|
|
int netware_init(void);
|
2007-06-30 19:45:57 -04:00
|
|
|
#ifndef __NOVELL_LIBC__
|
|
|
|
#include <sys/bsdskt.h>
|
|
|
|
#include <sys/timeval.h>
|
|
|
|
#endif
|
2004-03-17 07:46:42 -05:00
|
|
|
#endif
|
|
|
|
|
2017-05-01 13:44:39 -04:00
|
|
|
#if defined(HAVE_LIBIDN2) && defined(HAVE_IDN2_H) && !defined(USE_WIN32_IDN)
|
2016-10-12 03:01:06 -04:00
|
|
|
/* The lib and header are present */
|
|
|
|
#define USE_LIBIDN2
|
2004-04-26 03:20:11 -04:00
|
|
|
#endif
|
|
|
|
|
2017-05-01 13:44:39 -04:00
|
|
|
#if defined(USE_LIBIDN2) && defined(USE_WIN32_IDN)
|
|
|
|
#error "Both libidn2 and WinIDN are enabled, choose one."
|
|
|
|
#endif
|
|
|
|
|
2004-11-08 02:47:08 -05:00
|
|
|
#define LIBIDN_REQUIRED_VERSION "0.4.1"
|
|
|
|
|
2015-03-05 04:57:52 -05:00
|
|
|
#if defined(USE_GNUTLS) || defined(USE_OPENSSL) || defined(USE_NSS) || \
|
2019-05-15 07:57:16 -04:00
|
|
|
defined(USE_MBEDTLS) || \
|
2019-06-02 10:55:05 -04:00
|
|
|
defined(USE_WOLFSSL) || defined(USE_SCHANNEL) || \
|
2019-02-26 03:21:12 -05:00
|
|
|
defined(USE_SECTRANSP) || defined(USE_GSKIT) || defined(USE_MESALINK)
|
2007-07-30 13:08:26 -04:00
|
|
|
#define USE_SSL /* SSL support has been enabled */
|
2005-04-07 11:27:13 -04:00
|
|
|
#endif
|
|
|
|
|
2014-11-01 20:24:32 -04:00
|
|
|
/* Single point where USE_SPNEGO definition might be defined */
|
2014-02-17 03:40:49 -05:00
|
|
|
#if !defined(CURL_DISABLE_CRYPTO_AUTH) && \
|
|
|
|
(defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
|
2014-07-21 03:53:46 -04:00
|
|
|
#define USE_SPNEGO
|
2011-01-05 11:01:07 -05:00
|
|
|
#endif
|
|
|
|
|
2014-11-16 04:50:06 -05:00
|
|
|
/* Single point where USE_KERBEROS5 definition might be defined */
|
2014-12-03 02:13:30 -05:00
|
|
|
#if !defined(CURL_DISABLE_CRYPTO_AUTH) && \
|
|
|
|
(defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
|
2014-11-16 04:50:06 -05:00
|
|
|
#define USE_KERBEROS5
|
2014-11-01 20:24:32 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Single point where USE_NTLM definition might be defined */
|
2014-11-09 07:46:00 -05:00
|
|
|
#if !defined(CURL_DISABLE_NTLM) && !defined(CURL_DISABLE_CRYPTO_AUTH)
|
2015-03-05 04:57:52 -05:00
|
|
|
#if defined(USE_OPENSSL) || defined(USE_WINDOWS_SSPI) || \
|
2019-02-26 03:21:12 -05:00
|
|
|
defined(USE_GNUTLS) || defined(USE_NSS) || defined(USE_SECTRANSP) || \
|
2017-04-21 16:33:17 -04:00
|
|
|
defined(USE_OS400CRYPTO) || defined(USE_WIN32_CRYPTO) || \
|
|
|
|
defined(USE_MBEDTLS)
|
2015-01-22 10:34:18 -05:00
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
#define USE_NTLM
|
2016-09-12 00:16:30 -04:00
|
|
|
|
2017-04-21 16:33:17 -04:00
|
|
|
# if defined(USE_MBEDTLS)
|
|
|
|
/* Get definition of MBEDTLS_MD4_C */
|
2016-09-12 00:16:30 -04:00
|
|
|
# include <mbedtls/md4.h>
|
|
|
|
# endif
|
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
#endif
|
2005-11-23 06:51:31 -05:00
|
|
|
#endif
|
2005-04-07 11:27:13 -04:00
|
|
|
|
2017-06-15 05:11:15 -04:00
|
|
|
#ifdef CURL_WANTS_CA_BUNDLE_ENV
|
|
|
|
#error "No longer supported. Set CURLOPT_CAINFO at runtime instead."
|
|
|
|
#endif
|
|
|
|
|
2019-05-05 17:42:29 -04:00
|
|
|
#if defined(USE_LIBSSH2) || defined(USE_LIBSSH) || defined(USE_WOLFSSH)
|
|
|
|
#define USE_SSH
|
|
|
|
#endif
|
|
|
|
|
2012-04-14 09:12:30 -04:00
|
|
|
/*
|
|
|
|
* Provide a mechanism to silence picky compilers, such as gcc 4.6+.
|
|
|
|
* Parameters should of course normally not be unused, but for example when
|
|
|
|
* we have multiple implementations of the same interface it may happen.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__GNUC__) && ((__GNUC__ >= 3) || \
|
|
|
|
((__GNUC__ == 2) && defined(__GNUC_MINOR__) && (__GNUC_MINOR__ >= 7)))
|
|
|
|
# define UNUSED_PARAM __attribute__((__unused__))
|
2014-12-08 09:29:30 -05:00
|
|
|
# define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
2011-07-12 17:24:52 -04:00
|
|
|
#else
|
2012-04-14 09:12:30 -04:00
|
|
|
# define UNUSED_PARAM /*NOTHING*/
|
2014-12-08 09:29:30 -05:00
|
|
|
# define WARN_UNUSED_RESULT
|
2011-07-12 17:24:52 -04:00
|
|
|
#endif
|
|
|
|
|
2006-07-28 10:19:02 -04:00
|
|
|
/*
|
|
|
|
* Include macros and defines that should only be processed once.
|
|
|
|
*/
|
|
|
|
|
2013-02-04 16:56:44 -05:00
|
|
|
#ifndef HEADER_CURL_SETUP_ONCE_H
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup_once.h"
|
2013-02-04 16:56:44 -05:00
|
|
|
#endif
|
2006-07-28 10:19:02 -04:00
|
|
|
|
2011-09-04 11:09:22 -04:00
|
|
|
/*
|
|
|
|
* Definition of our NOP statement Object-like macro
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef Curl_nop_stmt
|
|
|
|
# define Curl_nop_stmt do { } WHILE_FALSE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ensure that Winsock and lwIP TCP/IP stacks are not mixed.
|
|
|
|
*/
|
|
|
|
|
2015-12-07 14:27:29 -05:00
|
|
|
#if defined(__LWIP_OPT_H__) || defined(LWIP_HDR_OPT_H)
|
2011-09-04 11:09:22 -04:00
|
|
|
# if defined(SOCKET) || \
|
|
|
|
defined(USE_WINSOCK) || \
|
|
|
|
defined(HAVE_WINSOCK_H) || \
|
|
|
|
defined(HAVE_WINSOCK2_H) || \
|
|
|
|
defined(HAVE_WS2TCPIP_H)
|
|
|
|
# error "Winsock and lwIP TCP/IP stack definitions shall not coexist!"
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2012-01-07 20:32:51 -05:00
|
|
|
/*
|
|
|
|
* Portable symbolic names for Winsock shutdown() mode flags.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef USE_WINSOCK
|
|
|
|
# define SHUT_RD 0x00
|
|
|
|
# define SHUT_WR 0x01
|
|
|
|
# define SHUT_RDWR 0x02
|
|
|
|
#endif
|
|
|
|
|
2012-09-13 04:29:54 -04:00
|
|
|
/* Define S_ISREG if not defined by system headers, f.e. MSVC */
|
|
|
|
#if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG)
|
|
|
|
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
|
|
|
#endif
|
|
|
|
|
2013-03-05 14:45:51 -05:00
|
|
|
/* Define S_ISDIR if not defined by system headers, f.e. MSVC */
|
|
|
|
#if !defined(S_ISDIR) && defined(S_IFMT) && defined(S_IFDIR)
|
|
|
|
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
|
|
|
#endif
|
|
|
|
|
2015-06-01 03:20:18 -04:00
|
|
|
/* In Windows the default file mode is text but an application can override it.
|
2016-02-03 12:34:16 -05:00
|
|
|
Therefore we specify it explicitly. https://github.com/curl/curl/pull/258
|
2015-06-01 03:20:18 -04:00
|
|
|
*/
|
2015-06-02 14:04:00 -04:00
|
|
|
#if defined(WIN32) || defined(MSDOS)
|
2015-06-01 03:20:18 -04:00
|
|
|
#define FOPEN_READTEXT "rt"
|
|
|
|
#define FOPEN_WRITETEXT "wt"
|
2017-09-05 15:27:22 -04:00
|
|
|
#define FOPEN_APPENDTEXT "at"
|
2015-06-01 03:20:18 -04:00
|
|
|
#elif defined(__CYGWIN__)
|
|
|
|
/* Cygwin has specific behavior we need to address when WIN32 is not defined.
|
|
|
|
https://cygwin.com/cygwin-ug-net/using-textbinary.html
|
|
|
|
For write we want our output to have line endings of LF and be compatible with
|
|
|
|
other Cygwin utilities. For read we want to handle input that may have line
|
|
|
|
endings either CRLF or LF so 't' is appropriate.
|
|
|
|
*/
|
|
|
|
#define FOPEN_READTEXT "rt"
|
|
|
|
#define FOPEN_WRITETEXT "w"
|
2017-09-05 15:27:22 -04:00
|
|
|
#define FOPEN_APPENDTEXT "a"
|
2015-06-01 03:20:18 -04:00
|
|
|
#else
|
|
|
|
#define FOPEN_READTEXT "r"
|
|
|
|
#define FOPEN_WRITETEXT "w"
|
2017-09-05 15:27:22 -04:00
|
|
|
#define FOPEN_APPENDTEXT "a"
|
2015-06-01 03:20:18 -04:00
|
|
|
#endif
|
|
|
|
|
2016-02-19 14:38:20 -05:00
|
|
|
/* WinSock destroys recv() buffer when send() failed.
|
|
|
|
* Enabled automatically for Windows and for Cygwin as Cygwin sockets are
|
|
|
|
* wrappers for WinSock sockets. https://github.com/curl/curl/issues/657
|
|
|
|
* Define DONT_USE_RECV_BEFORE_SEND_WORKAROUND to force disable workaround.
|
|
|
|
*/
|
|
|
|
#if !defined(DONT_USE_RECV_BEFORE_SEND_WORKAROUND)
|
|
|
|
# if defined(WIN32) || defined(__CYGWIN__)
|
|
|
|
# define USE_RECV_BEFORE_SEND_WORKAROUND
|
|
|
|
# endif
|
2018-01-24 07:27:19 -05:00
|
|
|
#else /* DONT_USE_RECV_BEFORE_SEND_WORKAROUND */
|
2016-02-19 14:38:20 -05:00
|
|
|
# ifdef USE_RECV_BEFORE_SEND_WORKAROUND
|
|
|
|
# undef USE_RECV_BEFORE_SEND_WORKAROUND
|
|
|
|
# endif
|
2018-01-24 07:27:19 -05:00
|
|
|
#endif /* DONT_USE_RECV_BEFORE_SEND_WORKAROUND */
|
2016-02-19 14:38:20 -05:00
|
|
|
|
2016-08-21 07:44:33 -04:00
|
|
|
/* Detect Windows App environment which has a restricted access
|
|
|
|
* to the Win32 APIs. */
|
2017-10-27 05:12:45 -04:00
|
|
|
# if (defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0602)) || \
|
|
|
|
defined(WINAPI_FAMILY)
|
2016-08-21 07:44:33 -04:00
|
|
|
# include <winapifamily.h>
|
2017-10-27 05:12:45 -04:00
|
|
|
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && \
|
2016-08-21 07:44:33 -04:00
|
|
|
!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
|
|
|
# define CURL_WINDOWS_APP
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
2018-04-06 09:26:04 -04:00
|
|
|
/* for systems that don't detect this in configure, use a sensible default */
|
|
|
|
#ifndef CURL_SA_FAMILY_T
|
|
|
|
#define CURL_SA_FAMILY_T unsigned short
|
|
|
|
#endif
|
|
|
|
|
2018-08-13 06:12:14 -04:00
|
|
|
/* Some convenience macros to get the larger/smaller value out of two given.
|
|
|
|
We prefix with CURL to prevent name collisions. */
|
|
|
|
#define CURLMAX(x,y) ((x)>(y)?(x):(y))
|
|
|
|
#define CURLMIN(x,y) ((x)<(y)?(x):(y))
|
|
|
|
|
2018-05-27 13:51:04 -04:00
|
|
|
/* Some versions of the Android SDK is missing the declaration */
|
|
|
|
#if defined(HAVE_GETPWUID_R) && defined(HAVE_DECL_GETPWUID_R_MISSING)
|
|
|
|
struct passwd;
|
|
|
|
int getpwuid_r(uid_t uid, struct passwd *pwd, char *buf,
|
|
|
|
size_t buflen, struct passwd **result);
|
|
|
|
#endif
|
|
|
|
|
2019-02-08 03:33:42 -05:00
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
#define UNITTEST
|
|
|
|
#else
|
|
|
|
#define UNITTEST static
|
|
|
|
#endif
|
|
|
|
|
2019-07-21 17:48:58 -04:00
|
|
|
#if defined(USE_NGTCP2) || defined(USE_QUICHE)
|
|
|
|
#define ENABLE_QUIC
|
|
|
|
#endif
|
|
|
|
|
2012-04-06 17:35:15 -04:00
|
|
|
#endif /* HEADER_CURL_SETUP_H */
|