1#ifndef HEADER_CURL_WARNLESS_H
2#define HEADER_CURL_WARNLESS_H
3/***************************************************************************
4 *                                  _   _ ____  _
5 *  Project                     ___| | | |  _ \| |
6 *                             / __| | | | |_) | |
7 *                            | (__| |_| |  _ <| |___
8 *                             \___|\___/|_| \_\_____|
9 *
10 * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
11 *
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
14 * are also available at http://curl.haxx.se/docs/copyright.html.
15 *
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ***************************************************************************/
24
25#ifdef USE_WINSOCK
26#include <curl/curl.h> /* for curl_socket_t */
27#endif
28
29unsigned short curlx_ultous(unsigned long ulnum);
30
31unsigned char curlx_ultouc(unsigned long ulnum);
32
33int curlx_ultosi(unsigned long ulnum);
34
35int curlx_uztosi(size_t uznum);
36
37curl_off_t curlx_uztoso(size_t uznum);
38
39unsigned long curlx_uztoul(size_t uznum);
40
41unsigned int curlx_uztoui(size_t uznum);
42
43int curlx_sltosi(long slnum);
44
45unsigned int curlx_sltoui(long slnum);
46
47unsigned short curlx_sltous(long slnum);
48
49ssize_t curlx_uztosz(size_t uznum);
50
51size_t curlx_sotouz(curl_off_t sonum);
52
53int curlx_sztosi(ssize_t sznum);
54
55size_t curlx_sitouz(int sinum);
56
57#ifdef USE_WINSOCK
58
59int curlx_sktosi(curl_socket_t s);
60
61curl_socket_t curlx_sitosk(int i);
62
63#endif /* USE_WINSOCK */
64
65#if defined(WIN32) || defined(_WIN32)
66
67ssize_t curlx_read(int fd, void *buf, size_t count);
68
69ssize_t curlx_write(int fd, const void *buf, size_t count);
70
71#ifndef BUILDING_WARNLESS_C
72#  undef  read
73#  define read(fd, buf, count)  curlx_read(fd, buf, count)
74#  undef  write
75#  define write(fd, buf, count) curlx_write(fd, buf, count)
76#endif
77
78#endif /* WIN32 || _WIN32 */
79
80#if defined(__INTEL_COMPILER) && defined(__unix__)
81
82int curlx_FD_ISSET(int fd, fd_set *fdset);
83
84void curlx_FD_SET(int fd, fd_set *fdset);
85
86void curlx_FD_ZERO(fd_set *fdset);
87
88unsigned short curlx_htons(unsigned short usnum);
89
90unsigned short curlx_ntohs(unsigned short usnum);
91
92#ifndef BUILDING_WARNLESS_C
93#  undef  FD_ISSET
94#  define FD_ISSET(a,b) curlx_FD_ISSET((a),(b))
95#  undef  FD_SET
96#  define FD_SET(a,b)   curlx_FD_SET((a),(b))
97#  undef  FD_ZERO
98#  define FD_ZERO(a)    curlx_FD_ZERO((a))
99#  undef  htons
100#  define htons(a)      curlx_htons((a))
101#  undef  ntohs
102#  define ntohs(a)      curlx_ntohs((a))
103#endif
104
105#endif /* __INTEL_COMPILER && __unix__ */
106
107#endif /* HEADER_CURL_WARNLESS_H */
108