e_os.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:20k
源码类别:

其他游戏

开发平台:

Visual C++

  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. #ifndef HEADER_E_OS_H
  59. #define HEADER_E_OS_H
  60. #include <openssl/opensslconf.h>
  61. #include <openssl/e_os2.h>
  62. /* <openssl/e_os2.h> contains what we can justify to make visible
  63.  * to the outside; this file e_os.h is not part of the exported
  64.  * interface. */
  65. #ifdef  __cplusplus
  66. extern "C" {
  67. #endif
  68. /* Used to checking reference counts, most while doing perl5 stuff :-) */
  69. #ifdef REF_PRINT
  70. #undef REF_PRINT
  71. #define REF_PRINT(a,b) fprintf(stderr,"%08X:%4d:%sn",(int)b,b->references,a)
  72. #endif
  73. #ifndef DEVRANDOM
  74. /* set this to a comma-separated list of 'random' device files to try out.
  75.  * My default, we will try to read at least one of these files */
  76. #define DEVRANDOM "/dev/urandom","/dev/random","/dev/srandom"
  77. #endif
  78. #ifndef DEVRANDOM_EGD
  79. /* set this to a comma-seperated list of 'egd' sockets to try out. These
  80.  * sockets will be tried in the order listed in case accessing the device files
  81.  * listed in DEVRANDOM did not return enough entropy. */
  82. #define DEVRANDOM_EGD "/var/run/egd-pool","/dev/egd-pool","/etc/egd-pool","/etc/entropy"
  83. #endif
  84. #if defined(OPENSSL_SYS_VXWORKS)
  85. #  define NO_SYS_PARAM_H
  86. #  define NO_CHMOD
  87. #  define NO_SYSLOG
  88. #endif
  89.   
  90. #if defined(OPENSSL_SYS_MACINTOSH_CLASSIC)
  91. # if macintosh==1
  92. #  ifndef MAC_OS_GUSI_SOURCE
  93. #    define MAC_OS_pre_X
  94. #    define NO_SYS_TYPES_H
  95.      typedef long ssize_t;
  96. #  endif
  97. #  define NO_SYS_PARAM_H
  98. #  define NO_CHMOD
  99. #  define NO_SYSLOG
  100. #  undef  DEVRANDOM
  101. #  define GETPID_IS_MEANINGLESS
  102. # endif
  103. #endif
  104. /********************************************************************
  105.  The Microsoft section
  106.  ********************************************************************/
  107. /* The following is used becaue of the small stack in some
  108.  * Microsoft operating systems */
  109. #if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYSNAME_WIN32)
  110. #  define MS_STATIC static
  111. #else
  112. #  define MS_STATIC
  113. #endif
  114. #if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
  115. #  define WIN32
  116. #endif
  117. #if defined(OPENSSL_SYS_WIN16) && !defined(WIN16)
  118. #  define WIN16
  119. #endif
  120. #if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
  121. #  define WINDOWS
  122. #endif
  123. #if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
  124. #  define MSDOS
  125. #endif
  126. #if defined(MSDOS) && !defined(GETPID_IS_MEANINGLESS)
  127. #  define GETPID_IS_MEANINGLESS
  128. #endif
  129. #ifdef WIN32
  130. #define get_last_sys_error() GetLastError()
  131. #define clear_sys_error() SetLastError(0)
  132. #if !defined(WINNT)
  133. #define WIN_CONSOLE_BUG
  134. #endif
  135. #else
  136. #define get_last_sys_error() errno
  137. #define clear_sys_error() errno=0
  138. #endif
  139. #if defined(WINDOWS)
  140. #define get_last_socket_error() WSAGetLastError()
  141. #define clear_socket_error() WSASetLastError(0)
  142. #define readsocket(s,b,n) recv((s),(b),(n),0)
  143. #define writesocket(s,b,n) send((s),(b),(n),0)
  144. #define EADDRINUSE WSAEADDRINUSE
  145. #elif defined(__DJGPP__)
  146. #define WATT32
  147. #define get_last_socket_error() errno
  148. #define clear_socket_error() errno=0
  149. #define closesocket(s) close_s(s)
  150. #define readsocket(s,b,n) read_s(s,b,n)
  151. #define writesocket(s,b,n) send(s,b,n,0)
  152. #elif defined(MAC_OS_pre_X)
  153. #define get_last_socket_error() errno
  154. #define clear_socket_error() errno=0
  155. #define closesocket(s) MacSocket_close(s)
  156. #define readsocket(s,b,n) MacSocket_recv((s),(b),(n),true)
  157. #define writesocket(s,b,n) MacSocket_send((s),(b),(n))
  158. #elif defined(OPENSSL_SYS_VMS)
  159. #define get_last_socket_error() errno
  160. #define clear_socket_error()    errno=0
  161. #define ioctlsocket(a,b,c)      ioctl(a,b,c)
  162. #define closesocket(s)          close(s)
  163. #define readsocket(s,b,n)       recv((s),(b),(n),0)
  164. #define writesocket(s,b,n)      send((s),(b),(n),0)
  165. #elif defined(OPENSSL_SYS_VXWORKS)
  166. #define get_last_socket_error() errno
  167. #define clear_socket_error() errno=0
  168. #define ioctlsocket(a,b,c)     ioctl((a),(b),(int)(c))
  169. #define closesocket(s)     close(s)
  170. #define readsocket(s,b,n)     read((s),(b),(n))
  171. #define writesocket(s,b,n)     write((s),(char *)(b),(n))
  172. #elif defined(OPENSSL_SYS_NETWARE)
  173. #if defined(NETWARE_BSDSOCK)
  174. #define get_last_socket_error() errno
  175. #define clear_socket_error()    errno=0
  176. #define closesocket(s)          close(s)
  177. #define readsocket(s,b,n)       recv((s),(b),(n),0)
  178. #define writesocket(s,b,n)      send((s),(b),(n),0)
  179. #else
  180. #define get_last_socket_error() WSAGetLastError()
  181. #define clear_socket_error() WSASetLastError(0)
  182. #define readsocket(s,b,n) recv((s),(b),(n),0)
  183. #define writesocket(s,b,n) send((s),(b),(n),0)
  184. #endif
  185. #else
  186. #define get_last_socket_error() errno
  187. #define clear_socket_error() errno=0
  188. #define ioctlsocket(a,b,c) ioctl(a,b,c)
  189. #define closesocket(s) close(s)
  190. #define readsocket(s,b,n) read((s),(b),(n))
  191. #define writesocket(s,b,n) write((s),(b),(n))
  192. #endif
  193. #ifdef WIN16
  194. #  define MS_CALLBACK _far _loadds
  195. #  define MS_FAR _far
  196. #else
  197. #  define MS_CALLBACK
  198. #  define MS_FAR
  199. #endif
  200. #ifdef OPENSSL_NO_STDIO
  201. #  undef OPENSSL_NO_FP_API
  202. #  define OPENSSL_NO_FP_API
  203. #endif
  204. #if (defined(WINDOWS) || defined(MSDOS))
  205. #  ifdef __DJGPP__
  206. #    include <unistd.h>
  207. #    include <sys/stat.h>
  208. #    include <sys/socket.h>
  209. #    include <tcp.h>
  210. #    include <netdb.h>
  211. #    define _setmode setmode
  212. #    define _O_TEXT O_TEXT
  213. #    define _O_BINARY O_BINARY
  214. #    undef DEVRANDOM
  215. #    define DEVRANDOM "/dev/urandomx24"
  216. #  endif /* __DJGPP__ */
  217. #  ifndef S_IFDIR
  218. #    define S_IFDIR _S_IFDIR
  219. #  endif
  220. #  ifndef S_IFMT
  221. #    define S_IFMT _S_IFMT
  222. #  endif
  223. #  if !defined(WINNT) && !defined(__DJGPP__)
  224. #    define NO_SYSLOG
  225. #  endif
  226. #  define NO_DIRENT
  227. #  ifdef WINDOWS
  228. #    if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
  229.        /*
  230. * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
  231. * Most notably we ought to check for availability of each specific
  232. * routine with GetProcAddress() and/or quard NT-specific calls with
  233. * GetVersion() < 0x80000000. One can argue that in latter "or" case
  234. * we ought to /DELAYLOAD some .DLLs in order to protect ourselves
  235. * against run-time link errors. This doesn't seem to be necessary,
  236. * because it turned out that already Windows 95, first non-NT Win32
  237. * implementation, is equipped with at least NT 3.51 stubs, dummy
  238. * routines with same name, but which do nothing. Meaning that it's
  239. * apparently appropriate to guard generic NT calls with GetVersion
  240. * alone, while NT 4.0 and above calls ought to be additionally
  241. * checked upon with GetProcAddress.
  242. */
  243. #      define _WIN32_WINNT 0x0400
  244. #    endif
  245. #    include <windows.h>
  246. #    include <stddef.h>
  247. #    include <errno.h>
  248. #    include <string.h>
  249. #    ifdef _WIN64
  250. #      define strlen(s) _strlen31(s)
  251. /* cut strings to 2GB */
  252. static unsigned int _strlen31(const char *str)
  253. {
  254. unsigned int len=0;
  255. while (*str && len<0x80000000U) str++, len++;
  256. return len&0x7FFFFFFF;
  257. }
  258. #    endif
  259. #    include <malloc.h>
  260. #  endif
  261. #  include <io.h>
  262. #  include <fcntl.h>
  263. #  ifdef OPENSSL_SYS_WINCE
  264. #    include <winsock_extras.h>
  265. #  endif
  266. #  define ssize_t long
  267. #  if defined (__BORLANDC__)
  268. #    define _setmode setmode
  269. #    define _O_TEXT O_TEXT
  270. #    define _O_BINARY O_BINARY
  271. #    define _int64 __int64
  272. #    define _kbhit kbhit
  273. #  endif
  274. #  if defined(WIN16) && defined(SSLEAY) && defined(_WINEXITNOPERSIST)
  275. #    define EXIT(n) _wsetexit(_WINEXITNOPERSIST)
  276. #    define OPENSSL_EXIT(n) do { if (n == 0) EXIT(n); return(n); } while(0)
  277. #  else
  278. #    define EXIT(n) exit(n)
  279. #  endif
  280. #  define LIST_SEPARATOR_CHAR ';'
  281. #  ifndef X_OK
  282. #    define X_OK 0
  283. #  endif
  284. #  ifndef W_OK
  285. #    define W_OK 2
  286. #  endif
  287. #  ifndef R_OK
  288. #    define R_OK 4
  289. #  endif
  290. #  define OPENSSL_CONF "openssl.cnf"
  291. #  define SSLEAY_CONF OPENSSL_CONF
  292. #  define NUL_DEV "nul"
  293. #  define RFILE ".rnd"
  294. #  ifdef OPENSSL_SYS_WINCE
  295. #    define DEFAULT_HOME  ""
  296. #  else
  297. #    define DEFAULT_HOME  "C:"
  298. #  endif
  299. #else /* The non-microsoft world world */
  300. #  ifdef OPENSSL_SYS_VMS
  301. #    define VMS 1
  302.   /* some programs don't include stdlib, so exit() and others give implicit 
  303.      function warnings */
  304. #    include <stdlib.h>
  305. #    if defined(__DECC)
  306. #      include <unistd.h>
  307. #    else
  308. #      include <unixlib.h>
  309. #    endif
  310. #    define OPENSSL_CONF "openssl.cnf"
  311. #    define SSLEAY_CONF OPENSSL_CONF
  312. #    define RFILE ".rnd"
  313. #    define LIST_SEPARATOR_CHAR ','
  314. #    define NUL_DEV "NLA0:"
  315.   /* We don't have any well-defined random devices on VMS, yet... */
  316. #    undef DEVRANDOM
  317.   /* We need to do this since VMS has the following coding on status codes:
  318.      Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
  319.                The important thing to know is that odd numbers are considered
  320.        good, while even ones are considered errors.
  321.      Bits 3-15: actual status number
  322.      Bits 16-27: facility number.  0 is considered "unknown"
  323.      Bits 28-31: control bits.  If bit 28 is set, the shell won't try to
  324.                  output the message (which, for random codes, just looks ugly)
  325.      So, what we do here is to change 0 to 1 to get the default success status,
  326.      and everything else is shifted up to fit into the status number field, and
  327.      the status is tagged as an error, which I believe is what is wanted here.
  328.      -- Richard Levitte
  329.   */
  330. #    define EXIT(n) do { int __VMS_EXIT = n; 
  331.                                      if (__VMS_EXIT == 0) 
  332.        __VMS_EXIT = 1; 
  333.      else 
  334.        __VMS_EXIT = (n << 3) | 2; 
  335.                                      __VMS_EXIT |= 0x10000000; 
  336.      exit(__VMS_EXIT); } while(0)
  337. #    define NO_SYS_PARAM_H
  338. #  elif defined(OPENSSL_SYS_NETWARE)
  339. #    include <fcntl.h>
  340. #    include <unistd.h>
  341. #    define NO_SYS_TYPES_H
  342. #    undef  DEVRANDOM
  343. #    ifdef NETWARE_CLIB
  344. #      define getpid GetThreadID
  345. #    endif
  346. #    define NO_SYSLOG
  347. #    define _setmode setmode
  348. #    define _kbhit kbhit
  349. #    define _O_TEXT O_TEXT
  350. #    define _O_BINARY O_BINARY
  351. #    define OPENSSL_CONF   "openssl.cnf"
  352. #    define SSLEAY_CONF    OPENSSL_CONF
  353. #    define RFILE    ".rnd"
  354. #    define LIST_SEPARATOR_CHAR ';'
  355. #    define EXIT(n)  { if (n) printf("ERROR: %dn", (int)n); exit(n); }
  356. #  else
  357.      /* !defined VMS */
  358. #    ifdef OPENSSL_SYS_MPE
  359. #      define NO_SYS_PARAM_H
  360. #    endif
  361. #    ifdef OPENSSL_UNISTD
  362. #      include OPENSSL_UNISTD
  363. #    else
  364. #      include <unistd.h>
  365. #    endif
  366. #    ifndef NO_SYS_TYPES_H
  367. #      include <sys/types.h>
  368. #    endif
  369. #    if defined(NeXT) || defined(OPENSSL_SYS_NEWS4)
  370. #      define pid_t int /* pid_t is missing on NEXTSTEP/OPENSTEP
  371.                          * (unless when compiling with -D_POSIX_SOURCE,
  372.                          * which doesn't work for us) */
  373. #    endif
  374. #    if defined(NeXT) || defined(OPENSSL_SYS_NEWS4) || defined(OPENSSL_SYS_SUNOS)
  375. #      define ssize_t int /* ditto */
  376. #    endif
  377. #    ifdef OPENSSL_SYS_NEWS4 /* setvbuf is missing on mips-sony-bsd */
  378. #      define setvbuf(a, b, c, d) setbuffer((a), (b), (d))
  379.        typedef unsigned long clock_t;
  380. #    endif
  381. #    define OPENSSL_CONF "openssl.cnf"
  382. #    define SSLEAY_CONF OPENSSL_CONF
  383. #    define RFILE ".rnd"
  384. #    define LIST_SEPARATOR_CHAR ':'
  385. #    define NUL_DEV "/dev/null"
  386. #    define EXIT(n) exit(n)
  387. #  endif
  388. #  define SSLeay_getpid() getpid()
  389. #endif
  390. /*************/
  391. #ifdef USE_SOCKETS
  392. #  if defined(WINDOWS) || defined(MSDOS)
  393.       /* windows world */
  394. #    ifdef OPENSSL_NO_SOCK
  395. #      define SSLeay_Write(a,b,c) (-1)
  396. #      define SSLeay_Read(a,b,c) (-1)
  397. #      define SHUTDOWN(fd) close(fd)
  398. #      define SHUTDOWN2(fd) close(fd)
  399. #    elif !defined(__DJGPP__)
  400. #      include <winsock.h>
  401. extern HINSTANCE _hInstance;
  402. #      ifdef _WIN64
  403. /*
  404.  * Even though sizeof(SOCKET) is 8, it's safe to cast it to int, because
  405.  * the value constitutes an index in per-process table of limited size
  406.  * and not a real pointer.
  407.  */
  408. #        define socket(d,t,p) ((int)socket(d,t,p))
  409. #        define accept(s,f,l) ((int)accept(s,f,l))
  410. #      endif
  411. #      define SSLeay_Write(a,b,c) send((a),(b),(c),0)
  412. #      define SSLeay_Read(a,b,c) recv((a),(b),(c),0)
  413. #      define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
  414. #      define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
  415. #    else
  416. #      define SSLeay_Write(a,b,c) write_s(a,b,c,0)
  417. #      define SSLeay_Read(a,b,c) read_s(a,b,c)
  418. #      define SHUTDOWN(fd) close_s(fd)
  419. #      define SHUTDOWN2(fd) close_s(fd)
  420. #    endif
  421. #  elif defined(MAC_OS_pre_X)
  422. #    include "MacSocket.h"
  423. #    define SSLeay_Write(a,b,c) MacSocket_send((a),(b),(c))
  424. #    define SSLeay_Read(a,b,c) MacSocket_recv((a),(b),(c),true)
  425. #    define SHUTDOWN(fd) MacSocket_close(fd)
  426. #    define SHUTDOWN2(fd) MacSocket_close(fd)
  427. #  elif defined(OPENSSL_SYS_NETWARE)
  428.          /* NetWare uses the WinSock2 interfaces by default, but can be configured for BSD
  429.          */
  430. #      if defined(NETWARE_BSDSOCK)
  431. #        include <sys/socket.h>
  432. #        include <netinet/in.h>
  433. #        include <sys/time.h>
  434. #        include <sys/select.h>
  435. #        define INVALID_SOCKET (int)(~0)
  436. #      else
  437. #        include <novsock2.h>
  438. #      endif
  439. #      define SSLeay_Write(a,b,c)   send((a),(b),(c),0)
  440. #      define SSLeay_Read(a,b,c) recv((a),(b),(c),0)
  441. #      define SHUTDOWN(fd)    { shutdown((fd),0); closesocket(fd); }
  442. #      define SHUTDOWN2(fd)      { shutdown((fd),2); closesocket(fd); }
  443. #  else
  444. #    ifndef NO_SYS_PARAM_H
  445. #      include <sys/param.h>
  446. #    endif
  447. #    ifdef OPENSSL_SYS_VXWORKS
  448. #      include <time.h> 
  449. #    elif !defined(OPENSSL_SYS_MPE)
  450. #      include <sys/time.h> /* Needed under linux for FD_XXX */
  451. #    endif
  452. #    include <netdb.h>
  453. #    if defined(OPENSSL_SYS_VMS_NODECC)
  454. #      include <socket.h>
  455. #      include <in.h>
  456. #      include <inet.h>
  457. #    else
  458. #      include <sys/socket.h>
  459. #      ifdef FILIO_H
  460. #        include <sys/filio.h> /* Added for FIONBIO under unixware */
  461. #      endif
  462. #      include <netinet/in.h>
  463. #      include <arpa/inet.h>
  464. #    endif
  465. #    if defined(NeXT) || defined(_NEXT_SOURCE)
  466. #      include <sys/fcntl.h>
  467. #      include <sys/types.h>
  468. #    endif
  469. #    ifdef OPENSSL_SYS_AIX
  470. #      include <sys/select.h>
  471. #    endif
  472. #    ifdef __QNX__
  473. #      include <sys/select.h>
  474. #    endif
  475. #    if defined(sun)
  476. #      include <sys/filio.h>
  477. #    else
  478. #      ifndef VMS
  479. #        include <sys/ioctl.h>
  480. #      else
  481.  /* ioctl is only in VMS > 7.0 and when socketshr is not used */
  482. #        if !defined(TCPIP_TYPE_SOCKETSHR) && defined(__VMS_VER) && (__VMS_VER > 70000000)
  483. #          include <sys/ioctl.h>
  484. #        endif
  485. #      endif
  486. #    endif
  487. #    ifdef VMS
  488. #      include <unixio.h>
  489. #      if defined(TCPIP_TYPE_SOCKETSHR)
  490. #        include <socketshr.h>
  491. #      endif
  492. #    endif
  493. #    define SSLeay_Read(a,b,c)     read((a),(b),(c))
  494. #    define SSLeay_Write(a,b,c)    write((a),(b),(c))
  495. #    define SHUTDOWN(fd)    { shutdown((fd),0); closesocket((fd)); }
  496. #    define SHUTDOWN2(fd)   { shutdown((fd),2); closesocket((fd)); }
  497. #    ifndef INVALID_SOCKET
  498. #    define INVALID_SOCKET (-1)
  499. #    endif /* INVALID_SOCKET */
  500. #  endif
  501. #endif
  502. #if defined(__ultrix)
  503. #  ifndef ssize_t
  504. #    define ssize_t int 
  505. #  endif
  506. #endif
  507. #if defined(sun) && !defined(__svr4__) && !defined(__SVR4)
  508.   /* include headers first, so our defines don't break it */
  509. #include <stdlib.h>
  510. #include <string.h>
  511.   /* bcopy can handle overlapping moves according to SunOS 4.1.4 manpage */
  512. # define memmove(s1,s2,n) bcopy((s2),(s1),(n))
  513. # define strtoul(s,e,b) ((unsigned long int)strtol((s),(e),(b)))
  514. extern char *sys_errlist[]; extern int sys_nerr;
  515. # define strerror(errnum) 
  516. (((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum])
  517.   /* Being signed SunOS 4.x memcpy breaks ASN1_OBJECT table lookup */
  518. #include "crypto/o_str.h"
  519. # define memcmp OPENSSL_memcmp
  520. #endif
  521. #ifndef OPENSSL_EXIT
  522. # if defined(MONOLITH) && !defined(OPENSSL_C)
  523. #  define OPENSSL_EXIT(n) return(n)
  524. # else
  525. #  define OPENSSL_EXIT(n) do { EXIT(n); return(n); } while(0)
  526. # endif
  527. #endif
  528. /***********************************************/
  529. /* do we need to do this for getenv.
  530.  * Just define getenv for use under windows */
  531. #ifdef WIN16
  532. /* How to do this needs to be thought out a bit more.... */
  533. /*char *GETENV(char *);
  534. #define Getenv GETENV*/
  535. #define Getenv getenv
  536. #else
  537. #define Getenv getenv
  538. #endif
  539. #define DG_GCC_BUG /* gcc < 2.6.3 on DGUX */
  540. #ifdef sgi
  541. #define IRIX_CC_BUG /* all version of IRIX I've tested (4.* 5.*) */
  542. #endif
  543. #ifdef OPENSSL_SYS_SNI
  544. #define IRIX_CC_BUG /* CDS++ up to V2.0Bsomething suffered from the same bug.*/
  545. #endif
  546. #if defined(OPENSSL_SYS_WINDOWS)
  547. #  define strcasecmp _stricmp
  548. #  define strncasecmp _strnicmp
  549. #elif defined(OPENSSL_SYS_VMS)
  550. /* VMS below version 7.0 doesn't have strcasecmp() */
  551. #  include "o_str.h"
  552. #  define strcasecmp OPENSSL_strcasecmp
  553. #  define strncasecmp OPENSSL_strncasecmp
  554. #  define OPENSSL_IMPLEMENTS_strncasecmp
  555. #elif defined(OPENSSL_SYS_OS2) && defined(__EMX__)
  556. #  define strcasecmp stricmp
  557. #  define strncasecmp strnicmp
  558. #elif defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_CLIB)
  559. #  define strcasecmp stricmp
  560. #  define strncasecmp strnicmp
  561. #else
  562. #  ifdef NO_STRINGS_H
  563.     int strcasecmp();
  564.     int strncasecmp();
  565. #  else
  566. #    include <strings.h>
  567. #  endif /* NO_STRINGS_H */
  568. #endif
  569. #if defined(OPENSSL_SYS_OS2) && defined(__EMX__)
  570. # include <io.h>
  571. # include <fcntl.h>
  572. # define NO_SYSLOG
  573. #endif
  574. /* vxworks */
  575. #if defined(OPENSSL_SYS_VXWORKS)
  576. #include <ioLib.h>
  577. #include <tickLib.h>
  578. #include <sysLib.h>
  579. #define TTY_STRUCT int
  580. #define sleep(a) taskDelay((a) * sysClkRateGet())
  581. #include <vxWorks.h>
  582. #include <sockLib.h>
  583. #include <taskLib.h>
  584. #define getpid taskIdSelf
  585. /* NOTE: these are implemented by helpers in database app!
  586.  * if the database is not linked, we need to implement them
  587.  * elswhere */
  588. struct hostent *gethostbyname(const char *name);
  589. struct hostent *gethostbyaddr(const char *addr, int length, int type);
  590. struct servent *getservbyname(const char *name, const char *proto);
  591. #endif
  592. /* end vxworks */
  593. #ifdef  __cplusplus
  594. }
  595. #endif
  596. #endif