Remove obsolete uncomiled dsagen semi-test
[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 /*
106  * The following is used because of the small stack in some Microsoft
107  * operating systems
108  */
109 # if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYSNAME_WIN32)
110 #  define MS_STATIC     static
111 # else
112 #  define MS_STATIC
113 # endif
114
115 # if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
116 #  define WIN32
117 # endif
118 # if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
119 #  define WINDOWS
120 # endif
121 # if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
122 #  define MSDOS
123 # endif
124
125 # if defined(MSDOS) && !defined(GETPID_IS_MEANINGLESS)
126 #  define GETPID_IS_MEANINGLESS
127 # endif
128
129 # ifdef WIN32
130 #  define NO_SYS_UN_H
131 #  define get_last_sys_error()    GetLastError()
132 #  define clear_sys_error()       SetLastError(0)
133 #  if !defined(WINNT)
134 #   define WIN_CONSOLE_BUG
135 #  endif
136 # else
137 #  define get_last_sys_error()    errno
138 #  define clear_sys_error()       errno=0
139 # endif
140
141 # if defined(WINDOWS)
142 #  define get_last_socket_error() WSAGetLastError()
143 #  define clear_socket_error()    WSASetLastError(0)
144 #  define readsocket(s,b,n)       recv((s),(b),(n),0)
145 #  define writesocket(s,b,n)      send((s),(b),(n),0)
146 # elif defined(__DJGPP__)
147 #  define WATT32
148 #  define get_last_socket_error() errno
149 #  define clear_socket_error()    errno=0
150 #  define closesocket(s)          close_s(s)
151 #  define readsocket(s,b,n)       read_s(s,b,n)
152 #  define writesocket(s,b,n)      send(s,b,n,0)
153 # elif defined(OPENSSL_SYS_VMS)
154 #  define get_last_socket_error() errno
155 #  define clear_socket_error()    errno=0
156 #  define ioctlsocket(a,b,c)      ioctl(a,b,c)
157 #  define closesocket(s)          close(s)
158 #  define readsocket(s,b,n)       recv((s),(b),(n),0)
159 #  define writesocket(s,b,n)      send((s),(b),(n),0)
160 # elif defined(OPENSSL_SYS_VXWORKS)
161 #  define get_last_socket_error() errno
162 #  define clear_socket_error()    errno=0
163 #  define ioctlsocket(a,b,c)          ioctl((a),(b),(int)(c))
164 #  define closesocket(s)              close(s)
165 #  define readsocket(s,b,n)           read((s),(b),(n))
166 #  define writesocket(s,b,n)          write((s),(char *)(b),(n))
167 # elif defined(OPENSSL_SYS_NETWARE)
168 #  if defined(NETWARE_BSDSOCK)
169 #   define get_last_socket_error() errno
170 #   define clear_socket_error()    errno=0
171 #   define closesocket(s)          close(s)
172 #   define ioctlsocket(a,b,c)      ioctl(a,b,c)
173 #   if defined(NETWARE_LIBC)
174 #    define readsocket(s,b,n)       recv((s),(b),(n),0)
175 #    define writesocket(s,b,n)      send((s),(b),(n),0)
176 #   else
177 #    define readsocket(s,b,n)       recv((s),(char*)(b),(n),0)
178 #    define writesocket(s,b,n)      send((s),(char*)(b),(n),0)
179 #   endif
180 #  else
181 #   define get_last_socket_error() WSAGetLastError()
182 #   define clear_socket_error()    WSASetLastError(0)
183 #   define readsocket(s,b,n)               recv((s),(b),(n),0)
184 #   define writesocket(s,b,n)              send((s),(b),(n),0)
185 #  endif
186 # else
187 #  define get_last_socket_error() errno
188 #  define clear_socket_error()    errno=0
189 #  define ioctlsocket(a,b,c)      ioctl(a,b,c)
190 #  define closesocket(s)          close(s)
191 #  define readsocket(s,b,n)       read((s),(b),(n))
192 #  define writesocket(s,b,n)      write((s),(b),(n))
193 # endif
194
195 # if (defined(WINDOWS) || defined(MSDOS))
196
197 #  ifdef __DJGPP__
198 #   include <unistd.h>
199 #   include <sys/stat.h>
200 #   include <sys/socket.h>
201 #   include <tcp.h>
202 #   include <netdb.h>
203 #   define _setmode setmode
204 #   define _O_TEXT O_TEXT
205 #   define _O_BINARY O_BINARY
206 #   undef DEVRANDOM
207 #   define DEVRANDOM "/dev/urandom\x24"
208 #  endif                        /* __DJGPP__ */
209
210 #  ifndef S_IFDIR
211 #   define S_IFDIR     _S_IFDIR
212 #  endif
213
214 #  ifndef S_IFMT
215 #   define S_IFMT      _S_IFMT
216 #  endif
217
218 #  if !defined(WINNT) && !defined(__DJGPP__)
219 #   define NO_SYSLOG
220 #  endif
221 #  define NO_DIRENT
222
223 #  ifdef WINDOWS
224 #   if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
225        /*
226         * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
227         * Most notably we ought to check for availability of each specific
228         * routine with GetProcAddress() and/or guard NT-specific calls with
229         * GetVersion() < 0x80000000. One can argue that in latter "or" case
230         * we ought to /DELAYLOAD some .DLLs in order to protect ourselves
231         * against run-time link errors. This doesn't seem to be necessary,
232         * because it turned out that already Windows 95, first non-NT Win32
233         * implementation, is equipped with at least NT 3.51 stubs, dummy
234         * routines with same name, but which do nothing. Meaning that it's
235         * apparently sufficient to guard "vanilla" NT calls with GetVersion
236         * alone, while NT 4.0 and above interfaces ought to be linked with
237         * GetProcAddress at run-time.
238         */
239 #    define _WIN32_WINNT 0x0400
240 #   endif
241 #   if !defined(OPENSSL_NO_SOCK) && (defined(_WIN32_WINNT) || defined(_WIN32_WCE))
242        /*
243         * Just like defining _WIN32_WINNT including winsock2.h implies
244         * certain "discipline" for maintaining [broad] binary compatibility.
245         * As long as structures are invariant among Winsock versions,
246         * it's sufficient to check for specific Winsock2 API availability
247         * at run-time [DSO_global_lookup is recommended]...
248         */
249 #    include <winsock2.h>
250 #    include <ws2tcpip.h>
251        /* yes, they have to be #included prior to <windows.h> */
252 #   endif
253 #   include <windows.h>
254 #   include <stdio.h>
255 #   include <stddef.h>
256 #   include <errno.h>
257 #   if defined(_WIN32_WCE) && !defined(EACCES)
258 #    define EACCES   13
259 #   endif
260 #   include <string.h>
261 #   ifdef _WIN64
262 #    define strlen(s) _strlen31(s)
263 /* cut strings to 2GB */
264 static __inline unsigned int _strlen31(const char *str)
265 {
266     unsigned int len = 0;
267     while (*str && len < 0x80000000U)
268         str++, len++;
269     return len & 0x7FFFFFFF;
270 }
271 #   endif
272 #   include <malloc.h>
273 #   if defined(_MSC_VER) && _MSC_VER<=1200 && defined(_MT) && defined(isspace)
274        /* compensate for bug in VC6 ctype.h */
275 #    undef isspace
276 #    undef isdigit
277 #    undef isalnum
278 #    undef isupper
279 #    undef isxdigit
280 #   endif
281 #   if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
282 #    if _MSC_VER>=1300 && _MSC_VER<1600
283 #     undef stdin
284 #     undef stdout
285 #     undef stderr
286 FILE *__iob_func();
287 #     define stdin  (&__iob_func()[0])
288 #     define stdout (&__iob_func()[1])
289 #     define stderr (&__iob_func()[2])
290 #    elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
291 #     undef stdin
292 #     undef stdout
293 #     undef stderr
294          /*
295           * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
296           * or in other words with /MD. Declaring implicit import, i.e. with
297           * _imp_ prefix, works correctly with all compiler options, but
298           * without /MD results in LINK warning LNK4049: 'locally defined
299           * symbol "__iob" imported'.
300           */
301 extern FILE *_imp___iob;
302 #     define stdin  (&_imp___iob[0])
303 #     define stdout (&_imp___iob[1])
304 #     define stderr (&_imp___iob[2])
305 #    endif
306 #   endif
307 #  endif
308 #  include <io.h>
309 #  include <fcntl.h>
310
311 #  ifdef OPENSSL_SYS_WINCE
312 #   define OPENSSL_NO_POSIX_IO
313 #  endif
314
315 #  if defined (__BORLANDC__)
316 #   define _setmode setmode
317 #   define _O_TEXT O_TEXT
318 #   define _O_BINARY O_BINARY
319 #   define _int64 __int64
320 #   define _kbhit kbhit
321 #  endif
322
323 #  define EXIT(n) exit(n)
324 #  define LIST_SEPARATOR_CHAR ';'
325 #  ifndef X_OK
326 #   define X_OK        0
327 #  endif
328 #  ifndef W_OK
329 #   define W_OK        2
330 #  endif
331 #  ifndef R_OK
332 #   define R_OK        4
333 #  endif
334 #  define OPENSSL_CONF  "openssl.cnf"
335 #  define SSLEAY_CONF   OPENSSL_CONF
336 #  define NUL_DEV       "nul"
337 #  define RFILE         ".rnd"
338 #  ifdef OPENSSL_SYS_WINCE
339 #   define DEFAULT_HOME  ""
340 #  else
341 #   define DEFAULT_HOME  "C:"
342 #  endif
343
344 /* Avoid Visual Studio 13 GetVersion deprecated problems */
345 #  if defined(_MSC_VER) && _MSC_VER>=1800
346 #   define check_winnt() (1)
347 #   define check_win_minplat(x) (1)
348 #  else
349 #   define check_winnt() (GetVersion() < 0x80000000)
350 #   define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
351 #  endif
352
353 # else                          /* The non-microsoft world */
354
355 #  ifdef OPENSSL_SYS_VMS
356 #   define VMS 1
357   /*
358    * some programs don't include stdlib, so exit() and others give implicit
359    * function warnings
360    */
361 #   include <stdlib.h>
362 #   if defined(__DECC)
363 #    include <unistd.h>
364 #   else
365 #    include <unixlib.h>
366 #   endif
367 #   define OPENSSL_CONF        "openssl.cnf"
368 #   define SSLEAY_CONF         OPENSSL_CONF
369 #   define RFILE               ".rnd"
370 #   define LIST_SEPARATOR_CHAR ','
371 #   define NUL_DEV             "NLA0:"
372   /* We don't have any well-defined random devices on VMS, yet... */
373 #   undef DEVRANDOM
374   /*-
375      We need to do this since VMS has the following coding on status codes:
376
377      Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
378                The important thing to know is that odd numbers are considered
379                good, while even ones are considered errors.
380      Bits 3-15: actual status number
381      Bits 16-27: facility number.  0 is considered "unknown"
382      Bits 28-31: control bits.  If bit 28 is set, the shell won't try to
383                  output the message (which, for random codes, just looks ugly)
384
385      So, what we do here is to change 0 to 1 to get the default success status,
386      and everything else is shifted up to fit into the status number field, and
387      the status is tagged as an error, which I believe is what is wanted here.
388      -- Richard Levitte
389   */
390 #   define EXIT(n)             do { int __VMS_EXIT = n; \
391                                      if (__VMS_EXIT == 0) \
392                                        __VMS_EXIT = 1; \
393                                      else \
394                                        __VMS_EXIT = (n << 3) | 2; \
395                                      __VMS_EXIT |= 0x10000000; \
396                                      exit(__VMS_EXIT); } while(0)
397 #   define NO_SYS_PARAM_H
398
399 #  elif defined(OPENSSL_SYS_NETWARE)
400 #   include <fcntl.h>
401 #   include <unistd.h>
402 #   define NO_SYS_TYPES_H
403 #   undef  DEVRANDOM
404 #   ifdef NETWARE_CLIB
405 #    define getpid GetThreadID
406 extern int GetThreadID(void);
407 /* #      include <conio.h> */
408 extern int kbhit(void);
409 #   else
410 #    include <screen.h>
411 #   endif
412 #   define NO_SYSLOG
413 #   define _setmode setmode
414 #   define _kbhit kbhit
415 #   define _O_TEXT O_TEXT
416 #   define _O_BINARY O_BINARY
417 #   define OPENSSL_CONF   "openssl.cnf"
418 #   define SSLEAY_CONF    OPENSSL_CONF
419 #   define RFILE    ".rnd"
420 #   define LIST_SEPARATOR_CHAR ';'
421 #   define EXIT(n)  { if (n) printf("ERROR: %d\n", (int)n); exit(n); }
422
423 #  else
424      /* !defined VMS */
425 #   ifdef OPENSSL_UNISTD
426 #    include OPENSSL_UNISTD
427 #   else
428 #    include <unistd.h>
429 #   endif
430 #   ifndef NO_SYS_TYPES_H
431 #    include <sys/types.h>
432 #   endif
433 #   ifdef OPENSSL_SYS_WIN32_CYGWIN
434 #    include <io.h>
435 #    include <fcntl.h>
436 #   endif
437
438 #   define OPENSSL_CONF        "openssl.cnf"
439 #   define SSLEAY_CONF         OPENSSL_CONF
440 #   define RFILE               ".rnd"
441 #   define LIST_SEPARATOR_CHAR ':'
442 #   define NUL_DEV             "/dev/null"
443 #   define EXIT(n)             exit(n)
444 #  endif
445
446 #  define SSLeay_getpid()       getpid()
447
448 # endif
449
450 /*************/
451
452 # if defined(OPENSSL_NO_SOCK) && !defined(OPENSSL_NO_DGRAM)
453 #  define OPENSSL_NO_DGRAM
454 # endif
455
456 # ifdef USE_SOCKETS
457 #  if defined(WINDOWS) || defined(MSDOS)
458       /* windows world */
459
460 #   ifdef OPENSSL_NO_SOCK
461 #    define SSLeay_Write(a,b,c)       (-1)
462 #    define SSLeay_Read(a,b,c)        (-1)
463 #    define SHUTDOWN(fd)              close(fd)
464 #    define SHUTDOWN2(fd)             close(fd)
465 #   elif !defined(__DJGPP__)
466 #    if defined(_WIN32_WCE) && _WIN32_WCE<410
467 #     define getservbyname _masked_declaration_getservbyname
468 #    endif
469 #    if !defined(IPPROTO_IP)
470          /* winsock[2].h was included already? */
471 #     include <winsock.h>
472 #    endif
473 #    ifdef getservbyname
474 #     undef getservbyname
475          /* this is used to be wcecompat/include/winsock_extras.h */
476 struct servent *PASCAL getservbyname(const char *, const char *);
477 #    endif
478
479 #    ifdef _WIN64
480 /*
481  * Even though sizeof(SOCKET) is 8, it's safe to cast it to int, because
482  * the value constitutes an index in per-process table of limited size
483  * and not a real pointer.
484  */
485 #     define socket(d,t,p)   ((int)socket(d,t,p))
486 #     define accept(s,f,l)   ((int)accept(s,f,l))
487 #    endif
488 #    define SSLeay_Write(a,b,c)       send((a),(b),(c),0)
489 #    define SSLeay_Read(a,b,c)        recv((a),(b),(c),0)
490 #    define SHUTDOWN(fd)              { shutdown((fd),0); closesocket(fd); }
491 #    define SHUTDOWN2(fd)             { shutdown((fd),2); closesocket(fd); }
492 #   else
493 #    define SSLeay_Write(a,b,c)       write_s(a,b,c,0)
494 #    define SSLeay_Read(a,b,c)        read_s(a,b,c)
495 #    define SHUTDOWN(fd)              close_s(fd)
496 #    define SHUTDOWN2(fd)             close_s(fd)
497 #   endif
498
499 #  elif defined(OPENSSL_SYS_NETWARE)
500          /*
501           * NetWare uses the WinSock2 interfaces by default, but can be
502           * configured for BSD
503           */
504 #   if defined(NETWARE_BSDSOCK)
505 #    include <sys/socket.h>
506 #    include <netinet/in.h>
507 #    include <sys/time.h>
508 #    if defined(NETWARE_CLIB)
509 #     include <sys/bsdskt.h>
510 #    else
511 #     include <sys/select.h>
512 #    endif
513 #    define INVALID_SOCKET (int)(~0)
514 #   else
515 #    include <novsock2.h>
516 #   endif
517 #   define SSLeay_Write(a,b,c)   send((a),(b),(c),0)
518 #   define SSLeay_Read(a,b,c) recv((a),(b),(c),0)
519 #   define SHUTDOWN(fd)    { shutdown((fd),0); closesocket(fd); }
520 #   define SHUTDOWN2(fd)      { shutdown((fd),2); closesocket(fd); }
521
522 #  else
523
524 #   ifndef NO_SYS_PARAM_H
525 #    include <sys/param.h>
526 #   endif
527 #   ifdef OPENSSL_SYS_VXWORKS
528 #    include <time.h>
529 #   endif
530
531 #   include <netdb.h>
532 #   if defined(OPENSSL_SYS_VMS_NODECC)
533 #    include <socket.h>
534 #    include <in.h>
535 #    include <inet.h>
536 #   else
537 #    include <sys/socket.h>
538 #    ifndef NO_SYS_UN_H
539 #     ifdef OPENSSL_SYS_VXWORKS
540 #      include <streams/un.h>
541 #     else
542 #      include <sys/un.h>
543 #     endif
544 #     ifndef UNIX_PATH_MAX
545 #      define UNIX_PATH_MAX sizeof(((struct sockaddr_un *)NULL)->sun_path)
546 #     endif
547 #    endif
548 #    ifdef FILIO_H
549 #     include <sys/filio.h>     /* Added for FIONBIO under unixware */
550 #    endif
551 #    include <netinet/in.h>
552 #    include <arpa/inet.h>
553 #   endif
554
555 #   ifdef OPENSSL_SYS_AIX
556 #    include <sys/select.h>
557 #   endif
558
559 #   ifdef __QNX__
560 #    include <sys/select.h>
561 #   endif
562
563 #   if defined(sun)
564 #    include <sys/filio.h>
565 #   else
566 #    ifndef VMS
567 #     include <sys/ioctl.h>
568 #    else
569          /* ioctl is only in VMS > 7.0 and when socketshr is not used */
570 #     if !defined(TCPIP_TYPE_SOCKETSHR) && defined(__VMS_VER) && (__VMS_VER > 70000000)
571 #      include <sys/ioctl.h>
572 #     endif
573 #    endif
574 #   endif
575
576 #   ifdef VMS
577 #    include <unixio.h>
578 #    if defined(TCPIP_TYPE_SOCKETSHR)
579 #     include <socketshr.h>
580 #    endif
581 #   endif
582
583 #   define SSLeay_Read(a,b,c)     read((a),(b),(c))
584 #   define SSLeay_Write(a,b,c)    write((a),(b),(c))
585 #   define SHUTDOWN(fd)    { shutdown((fd),0); closesocket((fd)); }
586 #   define SHUTDOWN2(fd)   { shutdown((fd),2); closesocket((fd)); }
587 #   ifndef INVALID_SOCKET
588 #    define INVALID_SOCKET      (-1)
589 #   endif                       /* INVALID_SOCKET */
590 #  endif
591
592 /*
593  * Some IPv6 implementations are broken, disable them in known bad versions.
594  */
595 #  if !defined(OPENSSL_USE_IPV6)
596 #   if defined(AF_INET6) && !defined(NETWARE_CLIB)
597 #    define OPENSSL_USE_IPV6 1
598 #   else
599 #    define OPENSSL_USE_IPV6 0
600 #   endif
601 #  endif
602
603 # endif
604
605 # if defined(sun) && !defined(__svr4__) && !defined(__SVR4)
606   /* include headers first, so our defines don't break it */
607 #  include <stdlib.h>
608 #  include <string.h>
609   /* bcopy can handle overlapping moves according to SunOS 4.1.4 manpage */
610 #  define memmove(s1,s2,n) bcopy((s2),(s1),(n))
611 #  define strtoul(s,e,b) ((unsigned long int)strtol((s),(e),(b)))
612 extern char *sys_errlist[];
613 extern int sys_nerr;
614 #  define strerror(errnum) \
615         (((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum])
616   /* Being signed SunOS 4.x memcpy breaks ASN1_OBJECT table lookup */
617 #  include "crypto/o_str.h"
618 #  define memcmp OPENSSL_memcmp
619 # endif
620
621 # ifndef OPENSSL_EXIT
622 #  if defined(MONOLITH) && !defined(OPENSSL_C)
623 #   define OPENSSL_EXIT(n) return(n)
624 #  else
625 #   define OPENSSL_EXIT(n) do { EXIT(n); return(n); } while(0)
626 #  endif
627 # endif
628
629 /***********************************************/
630
631 # if defined(OPENSSL_SYS_WINDOWS)
632 #  define strcasecmp _stricmp
633 #  define strncasecmp _strnicmp
634 # elif defined(OPENSSL_SYS_VMS)
635 /* VMS below version 7.0 doesn't have strcasecmp() */
636 #  include "o_str.h"
637 #  define strcasecmp OPENSSL_strcasecmp
638 #  define strncasecmp OPENSSL_strncasecmp
639 #  define OPENSSL_IMPLEMENTS_strncasecmp
640 # elif defined(OPENSSL_SYS_OS2) && defined(__EMX__)
641 #  define strcasecmp stricmp
642 #  define strncasecmp strnicmp
643 # elif defined(OPENSSL_SYS_NETWARE)
644 #  include <string.h>
645 #  if defined(NETWARE_CLIB)
646 #   define strcasecmp stricmp
647 #   define strncasecmp strnicmp
648 #  endif                        /* NETWARE_CLIB */
649 # endif
650
651 # if defined(OPENSSL_SYS_OS2) && defined(__EMX__)
652 #  include <io.h>
653 #  include <fcntl.h>
654 #  define NO_SYSLOG
655 # endif
656
657 /* vxworks */
658 # if defined(OPENSSL_SYS_VXWORKS)
659 #  include <ioLib.h>
660 #  include <tickLib.h>
661 #  include <sysLib.h>
662
663 #  define TTY_STRUCT int
664
665 #  define sleep(a) taskDelay((a) * sysClkRateGet())
666
667 #  include <vxWorks.h>
668 #  include <sockLib.h>
669 #  include <taskLib.h>
670
671 #  define getpid taskIdSelf
672
673 /*
674  * NOTE: these are implemented by helpers in database app! if the database is
675  * not linked, we need to implement them elswhere
676  */
677 struct hostent *gethostbyname(const char *name);
678 struct hostent *gethostbyaddr(const char *addr, int length, int type);
679 struct servent *getservbyname(const char *name, const char *proto);
680
681 # endif
682 /* end vxworks */
683
684 # if !defined(inline) && !defined(__cplusplus)
685 #  if defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
686    /* do nothing, inline works */
687 #  elif defined(__GNUC__) && __GNUC__>=2
688 #   define inline __inline__
689 #  elif defined(_MSC_VER)
690   /*
691    * Visual Studio: inline is available in C++ only, however
692    * __inline is available for C, see
693    * http://msdn.microsoft.com/en-us/library/z8y1yy88.aspx
694    */
695 #   define inline __inline
696 #  else
697 #   define inline
698 #  endif
699 # endif
700
701 #ifdef  __cplusplus
702 }
703 #endif
704
705 #endif