]> git.ipfire.org Git - thirdparty/openssl.git/blame - e_os.h
Add missing initialiser in e_chil.c
[thirdparty/openssl.git] / e_os.h
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58#ifndef HEADER_E_OS_H
0f113f3e 59# define HEADER_E_OS_H
d02b48c6 60
0f113f3e 61# include <openssl/opensslconf.h>
06018c46 62
0f113f3e
MC
63# include <openssl/e_os2.h>
64/*
65 * <openssl/e_os2.h> contains what we can justify to make visible to the
66 * outside; this file e_os.h is not part of the exported interface.
67 */
fa470a84 68
d02b48c6
RE
69#ifdef __cplusplus
70extern "C" {
71#endif
72
58964a49 73/* Used to checking reference counts, most while doing perl5 stuff :-) */
f3f1cf84 74# if defined(OPENSSL_NO_STDIO)
f3f1cf84
RS
75# if defined(REF_PRINT)
76# error "REF_PRINT requires stdio"
77# endif
0f113f3e 78# endif
f3f1cf84 79
463a7b8c 80# if !defined(NDEBUG) && !defined(OPENSSL_NO_STDIO)
f3f1cf84 81# define REF_ASSERT_ISNT(test) \
040d43b3 82 (void)((test) ? (OPENSSL_die("refcount error", __FILE__, __LINE__), 1) : 0)
f3f1cf84
RS
83# else
84# define REF_ASSERT_ISNT(i)
984d6c60 85# endif
f3f1cf84
RS
86# ifdef REF_PRINT
87# define REF_PRINT_COUNT(a, b) \
88 fprintf(stderr, "%p:%4d:%s\n", b, b->references, a)
89# else
90# define REF_PRINT_COUNT(a, b)
984d6c60 91# endif
58964a49 92
a773b52a 93# define osslargused(x) (void)x
040d43b3 94# define OPENSSL_CONF "openssl.cnf"
a773b52a 95
0f113f3e
MC
96# ifndef DEVRANDOM
97/*
98 * set this to a comma-separated list of 'random' device files to try out. My
99 * default, we will try to read at least one of these files
100 */
101# define DEVRANDOM "/dev/urandom","/dev/random","/dev/srandom"
102# endif
0423f812 103# if !defined(OPENSSL_NO_EGD) && !defined(DEVRANDOM_EGD)
0f113f3e
MC
104/*
105 * set this to a comma-separated list of 'egd' sockets to try out. These
106 * sockets will be tried in the order listed in case accessing the device
107 * files listed in DEVRANDOM did not return enough entropy.
108 */
109# define DEVRANDOM_EGD "/var/run/egd-pool","/dev/egd-pool","/etc/egd-pool","/etc/entropy"
110# endif
d02b48c6 111
0f113f3e 112# if defined(OPENSSL_SYS_VXWORKS)
3e83e686
RL
113# define NO_SYS_PARAM_H
114# define NO_CHMOD
115# define NO_SYSLOG
0f113f3e
MC
116# endif
117
d02b48c6
RE
118/********************************************************************
119 The Microsoft section
120 ********************************************************************/
0f113f3e 121# if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
b8384651 122# define WIN32
0f113f3e
MC
123# endif
124# if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
cf1b7d96 125# define WINDOWS
0f113f3e
MC
126# endif
127# if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
cf1b7d96 128# define MSDOS
0f113f3e 129# endif
d02b48c6 130
4d60c7e1 131# if (defined(MSDOS) || defined(OPENSSL_SYS_UEFI)) && !defined(GETPID_IS_MEANINGLESS)
9a1e34e5 132# define GETPID_IS_MEANINGLESS
0f113f3e 133# endif
9a1e34e5 134
0f113f3e
MC
135# ifdef WIN32
136# define NO_SYS_UN_H
137# define get_last_sys_error() GetLastError()
138# define clear_sys_error() SetLastError(0)
139# if !defined(WINNT)
140# define WIN_CONSOLE_BUG
141# endif
142# else
143# define get_last_sys_error() errno
144# define clear_sys_error() errno=0
145# endif
58964a49 146
0f113f3e
MC
147# if defined(WINDOWS)
148# define get_last_socket_error() WSAGetLastError()
149# define clear_socket_error() WSASetLastError(0)
150# define readsocket(s,b,n) recv((s),(b),(n),0)
151# define writesocket(s,b,n) send((s),(b),(n),0)
152# elif defined(__DJGPP__)
153# define WATT32
2c25ebd1 154# define WATT32_NO_OLDIES
0f113f3e
MC
155# define get_last_socket_error() errno
156# define clear_socket_error() errno=0
157# define closesocket(s) close_s(s)
158# define readsocket(s,b,n) read_s(s,b,n)
159# define writesocket(s,b,n) send(s,b,n,0)
160# elif defined(OPENSSL_SYS_VMS)
161# define get_last_socket_error() errno
162# define clear_socket_error() errno=0
163# define ioctlsocket(a,b,c) ioctl(a,b,c)
164# define closesocket(s) close(s)
165# define readsocket(s,b,n) recv((s),(b),(n),0)
166# define writesocket(s,b,n) send((s),(b),(n),0)
167# elif defined(OPENSSL_SYS_VXWORKS)
168# define get_last_socket_error() errno
169# define clear_socket_error() errno=0
170# define ioctlsocket(a,b,c) ioctl((a),(b),(int)(c))
171# define closesocket(s) close(s)
172# define readsocket(s,b,n) read((s),(b),(n))
173# define writesocket(s,b,n) write((s),(char *)(b),(n))
0f113f3e
MC
174# else
175# define get_last_socket_error() errno
176# define clear_socket_error() errno=0
177# define ioctlsocket(a,b,c) ioctl(a,b,c)
178# define closesocket(s) close(s)
179# define readsocket(s,b,n) read((s),(b),(n))
180# define writesocket(s,b,n) write((s),(b),(n))
181# endif
58964a49 182
0f113f3e 183# if (defined(WINDOWS) || defined(MSDOS))
d02b48c6 184
f642ebc1 185# ifdef __DJGPP__
0f113f3e
MC
186# include <unistd.h>
187# include <sys/stat.h>
188# include <sys/socket.h>
2c25ebd1 189# include <sys/un.h>
0f113f3e
MC
190# include <tcp.h>
191# include <netdb.h>
192# define _setmode setmode
193# define _O_TEXT O_TEXT
194# define _O_BINARY O_BINARY
2c25ebd1
RL
195# define HAS_LFN_SUPPORT(name) (pathconf((name), _PC_NAME_MAX) > 12)
196# undef DEVRANDOM_EGD /* Neither MS-DOS nor FreeDOS provide 'egd' sockets. */
0f113f3e
MC
197# undef DEVRANDOM
198# define DEVRANDOM "/dev/urandom\x24"
199# endif /* __DJGPP__ */
f642ebc1 200
0056ef5d 201# ifndef S_IFDIR
0f113f3e 202# define S_IFDIR _S_IFDIR
0056ef5d 203# endif
6e064240 204
0056ef5d 205# ifndef S_IFMT
0f113f3e 206# define S_IFMT _S_IFMT
0056ef5d 207# endif
6e064240 208
f642ebc1 209# if !defined(WINNT) && !defined(__DJGPP__)
0f113f3e 210# define NO_SYSLOG
0056ef5d
RL
211# endif
212# define NO_DIRENT
d02b48c6 213
d02b48c6 214# ifdef WINDOWS
0f113f3e 215# if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
e476f942 216 /*
0f113f3e
MC
217 * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
218 * Most notably we ought to check for availability of each specific
0ee05b73
AP
219 * routine that was introduced after denoted _WIN32_WINNT with
220 * GetProcAddress(). Normally newer functions are masked with higher
221 * _WIN32_WINNT in SDK headers. So that if you wish to use them in
222 * some module, you'd need to override _WIN32_WINNT definition in
223 * the target module in order to "reach for" prototypes, but replace
224 * calls to new functions with indirect calls. Alternatively it
225 * might be possible to achieve the goal by /DELAYLOAD-ing .DLLs
226 * and check for current OS version instead.
0f113f3e 227 */
0ee05b73 228# define _WIN32_WINNT 0x0501
0f113f3e 229# endif
2469e76b 230# if defined(_WIN32_WINNT) || defined(_WIN32_WCE)
61aa2134
AP
231 /*
232 * Just like defining _WIN32_WINNT including winsock2.h implies
8711efb4 233 * certain "discipline" for maintaining [broad] binary compatibility.
61aa2134
AP
234 * As long as structures are invariant among Winsock versions,
235 * it's sufficient to check for specific Winsock2 API availability
236 * at run-time [DSO_global_lookup is recommended]...
237 */
0f113f3e
MC
238# include <winsock2.h>
239# include <ws2tcpip.h>
8711efb4 240 /* yes, they have to be #included prior to <windows.h> */
0f113f3e
MC
241# endif
242# include <windows.h>
243# include <stdio.h>
244# include <stddef.h>
245# include <errno.h>
246# if defined(_WIN32_WCE) && !defined(EACCES)
247# define EACCES 13
248# endif
249# include <string.h>
250# ifdef _WIN64
251# define strlen(s) _strlen31(s)
1875e6db 252/* cut strings to 2GB */
55c7a4cf 253static __inline unsigned int _strlen31(const char *str)
0f113f3e
MC
254{
255 unsigned int len = 0;
256 while (*str && len < 0x80000000U)
257 str++, len++;
258 return len & 0x7FFFFFFF;
259}
260# endif
261# include <malloc.h>
262# if defined(_MSC_VER) && _MSC_VER<=1200 && defined(_MT) && defined(isspace)
e527201f 263 /* compensate for bug in VC6 ctype.h */
0f113f3e
MC
264# undef isspace
265# undef isdigit
266# undef isalnum
267# undef isupper
268# undef isxdigit
269# endif
270# if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
271# if _MSC_VER>=1300 && _MSC_VER<1600
272# undef stdin
273# undef stdout
274# undef stderr
275FILE *__iob_func();
276# define stdin (&__iob_func()[0])
277# define stdout (&__iob_func()[1])
278# define stderr (&__iob_func()[2])
279# elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
280# undef stdin
281# undef stdout
282# undef stderr
283 /*
284 * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
285 * or in other words with /MD. Declaring implicit import, i.e. with
286 * _imp_ prefix, works correctly with all compiler options, but
287 * without /MD results in LINK warning LNK4049: 'locally defined
288 * symbol "__iob" imported'.
e527201f 289 */
0f113f3e
MC
290extern FILE *_imp___iob;
291# define stdin (&_imp___iob[0])
292# define stdout (&_imp___iob[1])
293# define stderr (&_imp___iob[2])
e527201f 294# endif
0f113f3e 295# endif
d02b48c6 296# endif
0f113f3e
MC
297# include <io.h>
298# include <fcntl.h>
d02b48c6 299
0bf23d9b 300# ifdef OPENSSL_SYS_WINCE
0f113f3e 301# define OPENSSL_NO_POSIX_IO
0bf23d9b
RL
302# endif
303
be7b4458 304# define EXIT(n) exit(n)
d02b48c6 305# define LIST_SEPARATOR_CHAR ';'
0056ef5d 306# ifndef X_OK
0f113f3e 307# define X_OK 0
0056ef5d
RL
308# endif
309# ifndef W_OK
0f113f3e 310# define W_OK 2
0056ef5d
RL
311# endif
312# ifndef R_OK
0f113f3e 313# define R_OK 4
0056ef5d 314# endif
0bf23d9b 315# ifdef OPENSSL_SYS_WINCE
0f113f3e 316# define DEFAULT_HOME ""
0bf23d9b 317# else
0f113f3e 318# define DEFAULT_HOME "C:"
0bf23d9b 319# endif
d02b48c6 320
86d21d0b 321/* Avoid Visual Studio 13 GetVersion deprecated problems */
0f113f3e
MC
322# if defined(_MSC_VER) && _MSC_VER>=1800
323# define check_winnt() (1)
324# define check_win_minplat(x) (1)
325# else
326# define check_winnt() (GetVersion() < 0x80000000)
327# define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
328# endif
f511b25a 329
0f113f3e 330# else /* The non-microsoft world */
d02b48c6 331
cf1b7d96 332# ifdef OPENSSL_SYS_VMS
0f113f3e
MC
333# define VMS 1
334 /*
335 * some programs don't include stdlib, so exit() and others give implicit
336 * function warnings
337 */
338# include <stdlib.h>
339# if defined(__DECC)
340# include <unistd.h>
341# else
342# include <unixlib.h>
343# endif
0f113f3e 344# define LIST_SEPARATOR_CHAR ','
0c61e299 345 /* We don't have any well-defined random devices on VMS, yet... */
0f113f3e 346# undef DEVRANDOM
1d97c843
TH
347 /*-
348 We need to do this since VMS has the following coding on status codes:
511e596b
RL
349
350 Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
351 The important thing to know is that odd numbers are considered
0f113f3e 352 good, while even ones are considered errors.
511e596b
RL
353 Bits 3-15: actual status number
354 Bits 16-27: facility number. 0 is considered "unknown"
355 Bits 28-31: control bits. If bit 28 is set, the shell won't try to
356 output the message (which, for random codes, just looks ugly)
357
358 So, what we do here is to change 0 to 1 to get the default success status,
359 and everything else is shifted up to fit into the status number field, and
f625d383 360 the status is tagged as an error, which is what is wanted here.
c3944a99
RL
361
362 Finally, we add the VMS C facility code 0x35a000, because there are some
363 programs, such as Perl, that will reinterpret the code back to something
364 POSIXly. 'man perlvms' explains it further.
f625d383 365
c3944a99
RL
366 NOTE: the perlvms manual wants to turn all codes 2 to 255 into success
367 codes (status type = 1). I couldn't disagree more. Fortunately, the
368 status type doesn't seem to bother Perl.
511e596b
RL
369 -- Richard Levitte
370 */
f625d383
RL
371# define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
372
0f113f3e 373# define NO_SYS_PARAM_H
c168a027 374# define NO_SYS_UN_H
4d8743f4 375
d02b48c6 376# else
06018c46 377 /* !defined VMS */
0f113f3e
MC
378# ifdef OPENSSL_UNISTD
379# include OPENSSL_UNISTD
380# else
381# include <unistd.h>
382# endif
383# ifndef NO_SYS_TYPES_H
384# include <sys/types.h>
385# endif
386# ifdef OPENSSL_SYS_WIN32_CYGWIN
387# include <io.h>
388# include <fcntl.h>
389# endif
390
0f113f3e 391# define LIST_SEPARATOR_CHAR ':'
0f113f3e 392# define EXIT(n) exit(n)
d02b48c6 393# endif
d02b48c6 394
0f113f3e 395# endif
7d7d2cbc 396
d02b48c6
RE
397/*************/
398
0f113f3e 399# ifdef USE_SOCKETS
ffbc5b57
DW
400# ifdef OPENSSL_NO_SOCK
401# elif defined(WINDOWS) || defined(MSDOS)
37b1f8bd 402 /* windows world */
ffbc5b57 403# if !defined(__DJGPP__)
0f113f3e
MC
404# if defined(_WIN32_WCE) && _WIN32_WCE<410
405# define getservbyname _masked_declaration_getservbyname
406# endif
407# if !defined(IPPROTO_IP)
a6efc2d1 408 /* winsock[2].h was included already? */
0f113f3e
MC
409# include <winsock.h>
410# endif
411# ifdef getservbyname
412# undef getservbyname
63d3a9c5 413 /* this is used to be wcecompat/include/winsock_extras.h */
0f113f3e
MC
414struct servent *PASCAL getservbyname(const char *, const char *);
415# endif
63d3a9c5 416
0f113f3e 417# ifdef _WIN64
1875e6db
AP
418/*
419 * Even though sizeof(SOCKET) is 8, it's safe to cast it to int, because
420 * the value constitutes an index in per-process table of limited size
b13fdc48
AP
421 * and not a real pointer. And we also depend on fact that all processors
422 * Windows run on happen to be two's-complement, which allows to
423 * interchange INVALID_SOCKET and -1.
1875e6db 424 */
0f113f3e
MC
425# define socket(d,t,p) ((int)socket(d,t,p))
426# define accept(s,f,l) ((int)accept(s,f,l))
d02b48c6 427# endif
0f113f3e 428# else
0f113f3e 429# endif
d02b48c6 430
0f113f3e 431# else
d02b48c6 432
0f113f3e
MC
433# ifndef NO_SYS_PARAM_H
434# include <sys/param.h>
435# endif
436# ifdef OPENSSL_SYS_VXWORKS
437# include <time.h>
438# endif
439
440# include <netdb.h>
441# if defined(OPENSSL_SYS_VMS_NODECC)
442# include <socket.h>
443# include <in.h>
444# include <inet.h>
445# else
446# include <sys/socket.h>
447# ifndef NO_SYS_UN_H
448# ifdef OPENSSL_SYS_VXWORKS
449# include <streams/un.h>
450# else
451# include <sys/un.h>
452# endif
453# ifndef UNIX_PATH_MAX
454# define UNIX_PATH_MAX sizeof(((struct sockaddr_un *)NULL)->sun_path)
455# endif
a545c6f6 456# endif
0f113f3e 457# ifdef FILIO_H
f6739c3d 458# include <sys/filio.h> /* FIONBIO in some SVR4, e.g. unixware, solaris */
0f113f3e
MC
459# endif
460# include <netinet/in.h>
461# include <arpa/inet.h>
28a0841b 462# include <netinet/tcp.h>
0f113f3e
MC
463# endif
464
465# ifdef OPENSSL_SYS_AIX
466# include <sys/select.h>
467# endif
468
469# ifdef __QNX__
470# include <sys/select.h>
471# endif
472
2f2c805a
AP
473# ifndef VMS
474# include <sys/ioctl.h>
0f113f3e 475# else
2f2c805a
AP
476 /* ioctl is only in VMS > 7.0 and when socketshr is not used */
477# if !defined(TCPIP_TYPE_SOCKETSHR) && defined(__VMS_VER) && (__VMS_VER > 70000000)
0f113f3e 478# include <sys/ioctl.h>
d02b48c6 479# endif
0f113f3e 480# endif
d02b48c6 481
0f113f3e
MC
482# ifdef VMS
483# include <unixio.h>
484# if defined(TCPIP_TYPE_SOCKETSHR)
485# include <socketshr.h>
d02b48c6 486# endif
0f113f3e
MC
487# endif
488
0f113f3e
MC
489# ifndef INVALID_SOCKET
490# define INVALID_SOCKET (-1)
491# endif /* INVALID_SOCKET */
d02b48c6 492# endif
a6dab873 493
0f113f3e
MC
494/*
495 * Some IPv6 implementations are broken, disable them in known bad versions.
a6dab873
DSH
496 */
497# if !defined(OPENSSL_USE_IPV6)
0f113f3e
MC
498# if defined(AF_INET6) && !defined(NETWARE_CLIB)
499# define OPENSSL_USE_IPV6 1
500# else
501# define OPENSSL_USE_IPV6 0
502# endif
a6dab873
DSH
503# endif
504
0f113f3e 505# endif
d02b48c6 506
0f113f3e
MC
507# ifndef OPENSSL_EXIT
508# if defined(MONOLITH) && !defined(OPENSSL_C)
509# define OPENSSL_EXIT(n) return(n)
510# else
511# define OPENSSL_EXIT(n) do { EXIT(n); return(n); } while(0)
512# endif
1c3e4a36 513# endif
1c3e4a36 514
d02b48c6
RE
515/***********************************************/
516
0f113f3e 517# if defined(OPENSSL_SYS_WINDOWS)
e6fa67fa
RL
518# define strcasecmp _stricmp
519# define strncasecmp _strnicmp
0f113f3e 520# elif defined(OPENSSL_SYS_VMS)
e6fa67fa 521/* VMS below version 7.0 doesn't have strcasecmp() */
68570797 522# include "internal/o_str.h"
e6fa67fa
RL
523# define strcasecmp OPENSSL_strcasecmp
524# define strncasecmp OPENSSL_strncasecmp
e6d27baf 525# define OPENSSL_IMPLEMENTS_strncasecmp
0f113f3e 526# endif
3bfd99bf 527
6a89a25c 528/* vxworks */
0f113f3e
MC
529# if defined(OPENSSL_SYS_VXWORKS)
530# include <ioLib.h>
531# include <tickLib.h>
532# include <sysLib.h>
6a89a25c 533
0f113f3e 534# define TTY_STRUCT int
6a89a25c 535
0f113f3e 536# define sleep(a) taskDelay((a) * sysClkRateGet())
6a89a25c 537
0f113f3e
MC
538# include <vxWorks.h>
539# include <sockLib.h>
540# include <taskLib.h>
6a89a25c 541
0f113f3e 542# define getpid taskIdSelf
6a89a25c 543
0f113f3e
MC
544/*
545 * NOTE: these are implemented by helpers in database app! if the database is
546 * not linked, we need to implement them elswhere
547 */
6a89a25c
RL
548struct hostent *gethostbyname(const char *name);
549struct hostent *gethostbyaddr(const char *addr, int length, int type);
550struct servent *getservbyname(const char *name, const char *proto);
551
0f113f3e 552# endif
6a89a25c
RL
553/* end vxworks */
554
6e08e9e7
JD
555/* haiku */
556# if defined(OPENSSL_SYS_HAIKU)
557# include <sys/select.h>
558# include <sys/time.h>
559# endif
560/* end haiku */
561
b6eb9827
DSH
562#define OSSL_NELEM(x) (sizeof(x)/sizeof(x[0]))
563
d02b48c6
RE
564#ifdef __cplusplus
565}
566#endif
567
568#endif