2010-02-19 13:02:38 -05:00
|
|
|
#ifndef HEADER_CURL_WARNLESS_H
|
|
|
|
#define HEADER_CURL_WARNLESS_H
|
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2013-01-09 07:03:53 -05:00
|
|
|
* Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2010-02-19 13:02:38 -05: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-09 07:03:53 -05:00
|
|
|
#ifdef USE_WINSOCK
|
|
|
|
#include <curl/curl.h> /* for curl_socket_t */
|
|
|
|
#endif
|
|
|
|
|
2010-02-22 13:56:29 -05:00
|
|
|
unsigned short curlx_ultous(unsigned long ulnum);
|
2010-02-19 13:02:38 -05:00
|
|
|
|
2010-02-22 13:56:29 -05:00
|
|
|
unsigned char curlx_ultouc(unsigned long ulnum);
|
2010-02-21 21:37:13 -05:00
|
|
|
|
2012-03-25 11:51:59 -04:00
|
|
|
int curlx_ultosi(unsigned long ulnum);
|
|
|
|
|
2010-02-26 11:42:33 -05:00
|
|
|
int curlx_uztosi(size_t uznum);
|
|
|
|
|
2012-01-13 07:34:43 -05:00
|
|
|
unsigned long curlx_uztoul(size_t uznum);
|
|
|
|
|
2012-03-20 13:28:24 -04:00
|
|
|
unsigned int curlx_uztoui(size_t uznum);
|
|
|
|
|
2010-12-01 17:33:43 -05:00
|
|
|
int curlx_sltosi(long slnum);
|
|
|
|
|
|
|
|
unsigned int curlx_sltoui(long slnum);
|
|
|
|
|
|
|
|
unsigned short curlx_sltous(long slnum);
|
|
|
|
|
2010-12-02 12:46:13 -05:00
|
|
|
ssize_t curlx_uztosz(size_t uznum);
|
|
|
|
|
2010-12-03 23:53:07 -05:00
|
|
|
size_t curlx_sotouz(curl_off_t sonum);
|
|
|
|
|
2012-03-16 14:06:34 -04:00
|
|
|
int curlx_sztosi(ssize_t sznum);
|
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
size_t curlx_sitouz(int sinum);
|
|
|
|
|
2013-01-09 07:03:53 -05:00
|
|
|
#ifdef USE_WINSOCK
|
|
|
|
|
|
|
|
int curlx_sktosi(curl_socket_t s);
|
|
|
|
|
|
|
|
curl_socket_t curlx_sitosk(int i);
|
|
|
|
|
|
|
|
#endif /* USE_WINSOCK */
|
|
|
|
|
2011-05-24 14:39:58 -04:00
|
|
|
#if defined(__INTEL_COMPILER) && defined(__unix__)
|
|
|
|
|
|
|
|
int curlx_FD_ISSET(int fd, fd_set *fdset);
|
|
|
|
|
|
|
|
void curlx_FD_SET(int fd, fd_set *fdset);
|
|
|
|
|
|
|
|
void curlx_FD_ZERO(fd_set *fdset);
|
|
|
|
|
2011-05-26 09:44:53 -04:00
|
|
|
unsigned short curlx_htons(unsigned short usnum);
|
|
|
|
|
|
|
|
unsigned short curlx_ntohs(unsigned short usnum);
|
|
|
|
|
2011-05-24 14:39:58 -04:00
|
|
|
#ifndef BUILDING_WARNLESS_C
|
2011-05-25 03:56:57 -04:00
|
|
|
# undef FD_ISSET
|
2011-05-24 14:39:58 -04:00
|
|
|
# define FD_ISSET(a,b) curlx_FD_ISSET((a),(b))
|
2011-05-25 03:56:57 -04:00
|
|
|
# undef FD_SET
|
2011-05-24 14:39:58 -04:00
|
|
|
# define FD_SET(a,b) curlx_FD_SET((a),(b))
|
2011-05-25 03:56:57 -04:00
|
|
|
# undef FD_ZERO
|
2011-05-24 14:39:58 -04:00
|
|
|
# define FD_ZERO(a) curlx_FD_ZERO((a))
|
2011-05-26 09:44:53 -04:00
|
|
|
# undef htons
|
|
|
|
# define htons(a) curlx_htons((a))
|
|
|
|
# undef ntohs
|
|
|
|
# define ntohs(a) curlx_ntohs((a))
|
2011-05-24 14:39:58 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __INTEL_COMPILER && __unix__ */
|
|
|
|
|
2010-02-19 13:02:38 -05:00
|
|
|
#endif /* HEADER_CURL_WARNLESS_H */
|