Fix various windows compilation issues
[openssl.git] / e_os.h
1 /* e_os.h */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #ifndef HEADER_E_OS_H
60 # define HEADER_E_OS_H
61
62 # include <openssl/opensslconf.h>
63
64 # include <openssl/e_os2.h>
65 /*
66  * <openssl/e_os2.h> contains what we can justify to make visible to the
67  * outside; this file e_os.h is not part of the exported interface.
68  */
69
70 #ifdef  __cplusplus
71 extern "C" {
72 #endif
73
74 /* Used to checking reference counts, most while doing perl5 stuff :-) */
75 # ifdef REF_PRINT
76 #  undef REF_PRINT
77 #  define REF_PRINT(a,b)  fprintf(stderr,"%08X:%4d:%s\n",(int)b,b->references,a)
78 # endif
79
80 # ifndef DEVRANDOM
81 /*
82  * set this to a comma-separated list of 'random' device files to try out. My
83  * default, we will try to read at least one of these files
84  */
85 #  define DEVRANDOM "/dev/urandom","/dev/random","/dev/srandom"
86 # endif
87 # ifndef DEVRANDOM_EGD
88 /*
89  * set this to a comma-separated list of 'egd' sockets to try out. These
90  * sockets will be tried in the order listed in case accessing the device
91  * files listed in DEVRANDOM did not return enough entropy.
92  */
93 #  define DEVRANDOM_EGD "/var/run/egd-pool","/dev/egd-pool","/etc/egd-pool","/etc/entropy"
94 # endif
95
96 # if defined(OPENSSL_SYS_VXWORKS)
97 #  define NO_SYS_PARAM_H
98 #  define NO_CHMOD
99 #  define NO_SYSLOG
100 # endif
101
102 /********************************************************************
103  The Microsoft section
104  ********************************************************************/
105 # if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
106 #  define WIN32
107 # endif
108 # if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
109 #  define WINDOWS
110 # endif
111 # if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
112 #  define MSDOS
113 # endif
114
115 # if defined(MSDOS) && !defined(GETPID_IS_MEANINGLESS)
116 #  define GETPID_IS_MEANINGLESS
117 # endif
118
119 # ifdef WIN32
120 #  define NO_SYS_UN_H
121 #  define get_last_sys_error()    GetLastError()
122 #  define clear_sys_error()       SetLastError(0)
123 #  if !defined(WINNT)
124 #   define WIN_CONSOLE_BUG
125 #  endif
126 # else
127 #  define get_last_sys_error()    errno
128 #  define clear_sys_error()       errno=0
129 # endif
130
131 # if defined(WINDOWS)
132 #  define get_last_socket_error() WSAGetLastError()
133 #  define clear_socket_error()    WSASetLastError(0)
134 #  define readsocket(s,b,n)       recv((s),(b),(n),0)
135 #  define writesocket(s,b,n)      send((s),(b),(n),0)
136 # elif defined(__DJGPP__)
137 #  define WATT32
138 #  define get_last_socket_error() errno
139 #  define clear_socket_error()    errno=0
140 #  define closesocket(s)          close_s(s)
141 #  define readsocket(s,b,n)       read_s(s,b,n)
142 #  define writesocket(s,b,n)      send(s,b,n,0)
143 # elif defined(OPENSSL_SYS_VMS)
144 #  define get_last_socket_error() errno
145 #  define clear_socket_error()    errno=0
146 #  define ioctlsocket(a,b,c)      ioctl(a,b,c)
147 #  define closesocket(s)          close(s)
148 #  define readsocket(s,b,n)       recv((s),(b),(n),0)
149 #  define writesocket(s,b,n)      send((s),(b),(n),0)
150 # elif defined(OPENSSL_SYS_VXWORKS)
151 #  define get_last_socket_error() errno
152 #  define clear_socket_error()    errno=0
153 #  define ioctlsocket(a,b,c)          ioctl((a),(b),(int)(c))
154 #  define closesocket(s)              close(s)
155 #  define readsocket(s,b,n)           read((s),(b),(n))
156 #  define writesocket(s,b,n)          write((s),(char *)(b),(n))
157 # elif defined(OPENSSL_SYS_NETWARE)
158 #  if defined(NETWARE_BSDSOCK)
159 #   define get_last_socket_error() errno
160 #   define clear_socket_error()    errno=0
161 #   define closesocket(s)          close(s)
162 #   define ioctlsocket(a,b,c)      ioctl(a,b,c)
163 #   if defined(NETWARE_LIBC)
164 #    define readsocket(s,b,n)       recv((s),(b),(n),0)
165 #    define writesocket(s,b,n)      send((s),(b),(n),0)
166 #   else
167 #    define readsocket(s,b,n)       recv((s),(char*)(b),(n),0)
168 #    define writesocket(s,b,n)      send((s),(char*)(b),(n),0)
169 #   endif
170 #  else
171 #   define get_last_socket_error() WSAGetLastError()
172 #   define clear_socket_error()    WSASetLastError(0)
173 #   define readsocket(s,b,n)               recv((s),(b),(n),0)
174 #   define writesocket(s,b,n)              send((s),(b),(n),0)
175 #  endif
176 # else
177 #  define get_last_socket_error() errno
178 #  define clear_socket_error()    errno=0
179 #  define ioctlsocket(a,b,c)      ioctl(a,b,c)
180 #  define closesocket(s)          close(s)
181 #  define readsocket(s,b,n)       read((s),(b),(n))
182 #  define writesocket(s,b,n)      write((s),(b),(n))
183 # endif
184
185 # if (defined(WINDOWS) || defined(MSDOS))
186
187 #  ifdef __DJGPP__
188 #   include <unistd.h>
189 #   include <sys/stat.h>
190 #   include <sys/socket.h>
191 #   include <tcp.h>
192 #   include <netdb.h>
193 #   define _setmode setmode
194 #   define _O_TEXT O_TEXT
195 #   define _O_BINARY O_BINARY
196 #   undef DEVRANDOM
197 #   define DEVRANDOM "/dev/urandom\x24"
198 #  endif                        /* __DJGPP__ */
199
200 #  ifndef S_IFDIR
201 #   define S_IFDIR     _S_IFDIR
202 #  endif
203
204 #  ifndef S_IFMT
205 #   define S_IFMT      _S_IFMT
206 #  endif
207
208 #  if !defined(WINNT) && !defined(__DJGPP__)
209 #   define NO_SYSLOG
210 #  endif
211 #  define NO_DIRENT
212
213 #  ifdef WINDOWS
214 #   if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
215        /*
216         * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
217         * Most notably we ought to check for availability of each specific
218         * routine with GetProcAddress() and/or guard NT-specific calls with
219         * GetVersion() < 0x80000000. One can argue that in latter "or" case
220         * we ought to /DELAYLOAD some .DLLs in order to protect ourselves
221         * against run-time link errors. This doesn't seem to be necessary,
222         * because it turned out that already Windows 95, first non-NT Win32
223         * implementation, is equipped with at least NT 3.51 stubs, dummy
224         * routines with same name, but which do nothing. Meaning that it's
225         * apparently sufficient to guard "vanilla" NT calls with GetVersion
226         * alone, while NT 4.0 and above interfaces ought to be linked with
227         * GetProcAddress at run-time.
228         */
229 #    define _WIN32_WINNT 0x0400
230 #   endif
231 #   if !defined(OPENSSL_NO_SOCK) && (defined(_WIN32_WINNT) || defined(_WIN32_WCE))
232        /*
233         * Just like defining _WIN32_WINNT including winsock2.h implies
234         * certain "discipline" for maintaining [broad] binary compatibility.
235         * As long as structures are invariant among Winsock versions,
236         * it's sufficient to check for specific Winsock2 API availability
237         * at run-time [DSO_global_lookup is recommended]...
238         */
239 #    include <winsock2.h>
240 #    include <ws2tcpip.h>
241        /* yes, they have to be #included prior to <windows.h> */
242 #   endif
243 #   include <windows.h>
244 #   include <stdio.h>
245 #   include <stddef.h>
246 #   include <errno.h>
247 #   if defined(_WIN32_WCE) && !defined(EACCES)
248 #    define EACCES   13
249 #   endif
250 #   include <string.h>
251 #   ifdef _WIN64
252 #    define strlen(s) _strlen31(s)
253 /* cut strings to 2GB */
254 static __inline unsigned int _strlen31(const char *str)
255 {
256     unsigned int len = 0;
257     while (*str && len < 0x80000000U)
258         str++, len++;
259     return len & 0x7FFFFFFF;
260 }
261 #   endif
262 #   include <malloc.h>
263 #   if defined(_MSC_VER) && _MSC_VER<=1200 && defined(_MT) && defined(isspace)
264        /* compensate for bug in VC6 ctype.h */
265 #    undef isspace
266 #    undef isdigit
267 #    undef isalnum
268 #    undef isupper
269 #    undef isxdigit
270 #   endif
271 #   if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
272 #    if _MSC_VER>=1300 && _MSC_VER<1600
273 #     undef stdin
274 #     undef stdout
275 #     undef stderr
276 FILE *__iob_func();
277 #     define stdin  (&__iob_func()[0])
278 #     define stdout (&__iob_func()[1])
279 #     define stderr (&__iob_func()[2])
280 #    elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
281 #     undef stdin
282 #     undef stdout
283 #     undef stderr
284          /*
285           * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
286           * or in other words with /MD. Declaring implicit import, i.e. with
287           * _imp_ prefix, works correctly with all compiler options, but
288           * without /MD results in LINK warning LNK4049: 'locally defined
289           * symbol "__iob" imported'.
290           */
291 extern FILE *_imp___iob;
292 #     define stdin  (&_imp___iob[0])
293 #     define stdout (&_imp___iob[1])
294 #     define stderr (&_imp___iob[2])
295 #    endif
296 #   endif
297 #  endif
298 #  include <io.h>
299 #  include <fcntl.h>
300
301 #  ifdef OPENSSL_SYS_WINCE
302 #   define OPENSSL_NO_POSIX_IO
303 #  endif
304
305 #  if defined (__BORLANDC__)
306 #   define _setmode setmode
307 #   define _O_TEXT O_TEXT
308 #   define _O_BINARY O_BINARY
309 #   define _int64 __int64
310 #   define _kbhit kbhit
311 #  endif
312
313 #  define EXIT(n) exit(n)
314 #  define LIST_SEPARATOR_CHAR ';'
315 #  ifndef X_OK
316 #   define X_OK        0
317 #  endif
318 #  ifndef W_OK
319 #   define W_OK        2
320 #  endif
321 #  ifndef R_OK
322 #   define R_OK        4
323 #  endif
324 #  define OPENSSL_CONF  "openssl.cnf"
325 #  define SSLEAY_CONF   OPENSSL_CONF
326 #  define NUL_DEV       "nul"
327 #  define RFILE         ".rnd"
328 #  ifdef OPENSSL_SYS_WINCE
329 #   define DEFAULT_HOME  ""
330 #  else
331 #   define DEFAULT_HOME  "C:"
332 #  endif
333
334 /* Avoid Visual Studio 13 GetVersion deprecated problems */
335 #  if defined(_MSC_VER) && _MSC_VER>=1800
336 #   define check_winnt() (1)
337 #   define check_win_minplat(x) (1)
338 #  else
339 #   define check_winnt() (GetVersion() < 0x80000000)
340 #   define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
341 #  endif
342
343 # else                          /* The non-microsoft world */
344
345 #  ifdef OPENSSL_SYS_VMS
346 #   define VMS 1
347   /*
348    * some programs don't include stdlib, so exit() and others give implicit
349    * function warnings
350    */
351 #   include <stdlib.h>
352 #   if defined(__DECC)
353 #    include <unistd.h>
354 #   else
355 #    include <unixlib.h>
356 #   endif
357 #   define OPENSSL_CONF        "openssl.cnf"
358 #   define SSLEAY_CONF         OPENSSL_CONF
359 #   define RFILE               ".rnd"
360 #   define LIST_SEPARATOR_CHAR ','
361 #   define NUL_DEV             "NLA0:"
362   /* We don't have any well-defined random devices on VMS, yet... */
363 #   undef DEVRANDOM
364   /*-
365      We need to do this since VMS has the following coding on status codes:
366
367      Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
368                The important thing to know is that odd numbers are considered
369                good, while even ones are considered errors.
370      Bits 3-15: actual status number
371      Bits 16-27: facility number.  0 is considered "unknown"
372      Bits 28-31: control bits.  If bit 28 is set, the shell won't try to
373                  output the message (which, for random codes, just looks ugly)
374
375      So, what we do here is to change 0 to 1 to get the default success status,
376      and everything else is shifted up to fit into the status number field, and
377      the status is tagged as an error, which I believe is what is wanted here.
378      -- Richard Levitte
379   */
380 #   define EXIT(n)             do { int __VMS_EXIT = n; \
381                                      if (__VMS_EXIT == 0) \
382                                        __VMS_EXIT = 1; \
383                                      else \
384                                        __VMS_EXIT = (n << 3) | 2; \
385                                      __VMS_EXIT |= 0x10000000; \
386                                      exit(__VMS_EXIT); } while(0)
387 #   define NO_SYS_PARAM_H
388
389 #  elif defined(OPENSSL_SYS_NETWARE)
390 #   include <fcntl.h>
391 #   include <unistd.h>
392 #   define NO_SYS_TYPES_H
393 #   undef  DEVRANDOM
394 #   ifdef NETWARE_CLIB
395 #    define getpid GetThreadID
396 extern int GetThreadID(void);
397 /* #      include <conio.h> */
398 extern int kbhit(void);
399 #   else
400 #    include <screen.h>
401 #   endif
402 #   define NO_SYSLOG
403 #   define _setmode setmode
404 #   define _kbhit kbhit
405 #   define _O_TEXT O_TEXT
406 #   define _O_BINARY O_BINARY
407 #   define OPENSSL_CONF   "openssl.cnf"
408 #   define SSLEAY_CONF    OPENSSL_CONF
409 #   define RFILE    ".rnd"
410 #   define LIST_SEPARATOR_CHAR ';'
411 #   define EXIT(n)  { if (n) printf("ERROR: %d\n", (int)n); exit(n); }
412
413 #  else
414      /* !defined VMS */
415 #   ifdef OPENSSL_UNISTD
416 #    include OPENSSL_UNISTD
417 #   else
418 #    include <unistd.h>
419 #   endif
420 #   ifndef NO_SYS_TYPES_H
421 #    include <sys/types.h>
422 #   endif
423 #   ifdef OPENSSL_SYS_WIN32_CYGWIN
424 #    include <io.h>
425 #    include <fcntl.h>
426 #   endif
427
428 #   define OPENSSL_CONF        "openssl.cnf"
429 #   define SSLEAY_CONF         OPENSSL_CONF
430 #   define RFILE               ".rnd"
431 #   define LIST_SEPARATOR_CHAR ':'
432 #   define NUL_DEV             "/dev/null"
433 #   define EXIT(n)             exit(n)
434 #  endif
435
436 #  define SSLeay_getpid()       getpid()
437
438 # endif
439
440 /*************/
441
442 # if defined(OPENSSL_NO_SOCK) && !defined(OPENSSL_NO_DGRAM)
443 #  define OPENSSL_NO_DGRAM
444 # endif
445
446 # ifdef USE_SOCKETS
447 #  if defined(WINDOWS) || defined(MSDOS)
448       /* windows world */
449
450 #   ifdef OPENSSL_NO_SOCK
451 #    define SSLeay_Write(a,b,c)       (-1)
452 #    define SSLeay_Read(a,b,c)        (-1)
453 #    define SHUTDOWN(fd)              close(fd)
454 #    define SHUTDOWN2(fd)             close(fd)
455 #   elif !defined(__DJGPP__)
456 #    if defined(_WIN32_WCE) && _WIN32_WCE<410
457 #     define getservbyname _masked_declaration_getservbyname
458 #    endif
459 #    if !defined(IPPROTO_IP)
460          /* winsock[2].h was included already? */
461 #     include <winsock.h>
462 #    endif
463 #    ifdef getservbyname
464 #     undef getservbyname
465          /* this is used to be wcecompat/include/winsock_extras.h */
466 struct servent *PASCAL getservbyname(const char *, const char *);
467 #    endif
468
469 #    ifdef _WIN64
470 /*
471  * Even though sizeof(SOCKET) is 8, it's safe to cast it to int, because
472  * the value constitutes an index in per-process table of limited size
473  * and not a real pointer.
474  */
475 #     define socket(d,t,p)   ((int)socket(d,t,p))
476 #     define accept(s,f,l)   ((int)accept(s,f,l))
477 #    endif
478 #    define SSLeay_Write(a,b,c)       send((a),(b),(c),0)
479 #    define SSLeay_Read(a,b,c)        recv((a),(b),(c),0)
480 #    define SHUTDOWN(fd)              { shutdown((fd),0); closesocket(fd); }
481 #    define SHUTDOWN2(fd)             { shutdown((fd),2); closesocket(fd); }
482 #   else
483 #    define SSLeay_Write(a,b,c)       write_s(a,b,c,0)
484 #    define SSLeay_Read(a,b,c)        read_s(a,b,c)
485 #    define SHUTDOWN(fd)              close_s(fd)
486 #    define SHUTDOWN2(fd)             close_s(fd)
487 #   endif
488
489 #  elif defined(OPENSSL_SYS_NETWARE)
490          /*
491           * NetWare uses the WinSock2 interfaces by default, but can be
492           * configured for BSD
493           */
494 #   if defined(NETWARE_BSDSOCK)
495 #    include <sys/socket.h>
496 #    include <netinet/in.h>
497 #    include <sys/time.h>
498 #    if defined(NETWARE_CLIB)
499 #     include <sys/bsdskt.h>
500 #    else
501 #     include <sys/select.h>
502 #    endif
503 #    define INVALID_SOCKET (int)(~0)
504 #   else
505 #    include <novsock2.h>
506 #   endif
507 #   define SSLeay_Write(a,b,c)   send((a),(b),(c),0)
508 #   define SSLeay_Read(a,b,c) recv((a),(b),(c),0)
509 #   define SHUTDOWN(fd)    { shutdown((fd),0); closesocket(fd); }
510 #   define SHUTDOWN2(fd)      { shutdown((fd),2); closesocket(fd); }
511
512 #  else
513
514 #   ifndef NO_SYS_PARAM_H
515 #    include <sys/param.h>
516 #   endif
517 #   ifdef OPENSSL_SYS_VXWORKS
518 #    include <time.h>
519 #   endif
520
521 #   include <netdb.h>
522 #   if defined(OPENSSL_SYS_VMS_NODECC)
523 #    include <socket.h>
524 #    include <in.h>
525 #    include <inet.h>
526 #   else
527 #    include <sys/socket.h>
528 #    ifndef NO_SYS_UN_H
529 #     ifdef OPENSSL_SYS_VXWORKS
530 #      include <streams/un.h>
531 #     else
532 #      include <sys/un.h>
533 #     endif
534 #     ifndef UNIX_PATH_MAX
535 #      define UNIX_PATH_MAX sizeof(((struct sockaddr_un *)NULL)->sun_path)
536 #     endif
537 #    endif
538 #    ifdef FILIO_H
539 #     include <sys/filio.h>     /* Added for FIONBIO under unixware */
540 #    endif
541 #    include <netinet/in.h>
542 #    include <arpa/inet.h>
543 #   endif
544
545 #   ifdef OPENSSL_SYS_AIX
546 #    include <sys/select.h>
547 #   endif
548
549 #   ifdef __QNX__
550 #    include <sys/select.h>
551 #   endif
552
553 #   if defined(sun)
554 #    include <sys/filio.h>
555 #   else
556 #    ifndef VMS
557 #     include <sys/ioctl.h>
558 #    else
559          /* ioctl is only in VMS > 7.0 and when socketshr is not used */
560 #     if !defined(TCPIP_TYPE_SOCKETSHR) && defined(__VMS_VER) && (__VMS_VER > 70000000)
561 #      include <sys/ioctl.h>
562 #     endif
563 #    endif
564 #   endif
565
566 #   ifdef VMS
567 #    include <unixio.h>
568 #    if defined(TCPIP_TYPE_SOCKETSHR)
569 #     include <socketshr.h>
570 #    endif
571 #   endif
572
573 #   define SSLeay_Read(a,b,c)     read((a),(b),(c))
574 #   define SSLeay_Write(a,b,c)    write((a),(b),(c))
575 #   define SHUTDOWN(fd)    { shutdown((fd),0); closesocket((fd)); }
576 #   define SHUTDOWN2(fd)   { shutdown((fd),2); closesocket((fd)); }
577 #   ifndef INVALID_SOCKET
578 #    define INVALID_SOCKET      (-1)
579 #   endif                       /* INVALID_SOCKET */
580 #  endif
581
582 /*
583  * Some IPv6 implementations are broken, disable them in known bad versions.
584  */
585 #  if !defined(OPENSSL_USE_IPV6)
586 #   if defined(AF_INET6) && !defined(NETWARE_CLIB)
587 #    define OPENSSL_USE_IPV6 1
588 #   else
589 #    define OPENSSL_USE_IPV6 0
590 #   endif
591 #  endif
592
593 # endif
594
595 # if defined(sun) && !defined(__svr4__) && !defined(__SVR4)
596   /* include headers first, so our defines don't break it */
597 #  include <stdlib.h>
598 #  include <string.h>
599   /* bcopy can handle overlapping moves according to SunOS 4.1.4 manpage */
600 #  define memmove(s1,s2,n) bcopy((s2),(s1),(n))
601 #  define strtoul(s,e,b) ((unsigned long int)strtol((s),(e),(b)))
602 extern char *sys_errlist[];
603 extern int sys_nerr;
604 #  define strerror(errnum) \
605         (((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum])
606   /* Being signed SunOS 4.x memcpy breaks ASN1_OBJECT table lookup */
607 #  include "crypto/o_str.h"
608 #  define memcmp OPENSSL_memcmp
609 # endif
610
611 # ifndef OPENSSL_EXIT
612 #  if defined(MONOLITH) && !defined(OPENSSL_C)
613 #   define OPENSSL_EXIT(n) return(n)
614 #  else
615 #   define OPENSSL_EXIT(n) do { EXIT(n); return(n); } while(0)
616 #  endif
617 # endif
618
619 /***********************************************/
620
621 # if defined(OPENSSL_SYS_WINDOWS)
622 #  define strcasecmp _stricmp
623 #  define strncasecmp _strnicmp
624 # elif defined(OPENSSL_SYS_VMS)
625 /* VMS below version 7.0 doesn't have strcasecmp() */
626 #  include "o_str.h"
627 #  define strcasecmp OPENSSL_strcasecmp
628 #  define strncasecmp OPENSSL_strncasecmp
629 #  define OPENSSL_IMPLEMENTS_strncasecmp
630 # elif defined(OPENSSL_SYS_OS2) && defined(__EMX__)
631 #  define strcasecmp stricmp
632 #  define strncasecmp strnicmp
633 # elif defined(OPENSSL_SYS_NETWARE)
634 #  include <string.h>
635 #  if defined(NETWARE_CLIB)
636 #   define strcasecmp stricmp
637 #   define strncasecmp strnicmp
638 #  endif                        /* NETWARE_CLIB */
639 # endif
640
641 # if defined(OPENSSL_SYS_OS2) && defined(__EMX__)
642 #  include <io.h>
643 #  include <fcntl.h>
644 #  define NO_SYSLOG
645 # endif
646
647 /* vxworks */
648 # if defined(OPENSSL_SYS_VXWORKS)
649 #  include <ioLib.h>
650 #  include <tickLib.h>
651 #  include <sysLib.h>
652
653 #  define TTY_STRUCT int
654
655 #  define sleep(a) taskDelay((a) * sysClkRateGet())
656
657 #  include <vxWorks.h>
658 #  include <sockLib.h>
659 #  include <taskLib.h>
660
661 #  define getpid taskIdSelf
662
663 /*
664  * NOTE: these are implemented by helpers in database app! if the database is
665  * not linked, we need to implement them elswhere
666  */
667 struct hostent *gethostbyname(const char *name);
668 struct hostent *gethostbyaddr(const char *addr, int length, int type);
669 struct servent *getservbyname(const char *name, const char *proto);
670
671 # endif
672 /* end vxworks */
673
674 # if !defined(inline) && !defined(__cplusplus)
675 #  if defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
676    /* do nothing, inline works */
677 #  elif defined(__GNUC__) && __GNUC__>=2
678 #   define inline __inline__
679 #  elif defined(_MSC_VER)
680   /*
681    * Visual Studio: inline is available in C++ only, however
682    * __inline is available for C, see
683    * http://msdn.microsoft.com/en-us/library/z8y1yy88.aspx
684    */
685 #   define inline __inline
686 #  else
687 #   define inline
688 #  endif
689 # endif
690
691 #ifdef  __cplusplus
692 }
693 #endif
694
695 #endif