strerror.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #include "secutil.h"
  34. #if defined(XP_UNIX)
  35. #include <unistd.h>
  36. #endif
  37. #if defined(XP_WIN)
  38. #include <errno.h>
  39. #include <winsock.h>
  40. #define EWOULDBLOCK WSAEWOULDBLOCK
  41. #endif
  42. #include <stdio.h>
  43. #include <string.h>
  44. static char *(mcom_include_merrors_i_strings)(int16 i) ;
  45. static char *(mcom_include_secerr_i_strings)(int16 i) ;
  46. static char *(mcom_include_sslerr_i_strings)(int16 i) ;
  47. static char *(mcom_include_xp_error_i_strings)(int16 i) ;
  48. static char *(mcom_include_xp_msg_i_strings)(int16 i) ;
  49. #ifdef XP_WIN
  50. #define EWOULDBLOCK             WSAEWOULDBLOCK
  51. #define EINPROGRESS             WSAEINPROGRESS
  52. #define EALREADY                WSAEALREADY
  53. #define ENOTSOCK                WSAENOTSOCK
  54. #define EDESTADDRREQ            WSAEDESTADDRREQ
  55. #define EMSGSIZE                WSAEMSGSIZE
  56. #define EPROTOTYPE              WSAEPROTOTYPE
  57. #define ENOPROTOOPT             WSAENOPROTOOPT
  58. #define EPROTONOSUPPORT         WSAEPROTONOSUPPORT
  59. #define ESOCKTNOSUPPORT         WSAESOCKTNOSUPPORT
  60. #define EOPNOTSUPP              WSAEOPNOTSUPP
  61. #define EPFNOSUPPORT            WSAEPFNOSUPPORT
  62. #define EAFNOSUPPORT            WSAEAFNOSUPPORT
  63. #define EADDRINUSE              WSAEADDRINUSE
  64. #define EADDRNOTAVAIL           WSAEADDRNOTAVAIL
  65. #define ENETDOWN                WSAENETDOWN
  66. #define ENETUNREACH             WSAENETUNREACH
  67. #define ENETRESET               WSAENETRESET
  68. #define ECONNABORTED            WSAECONNABORTED
  69. #define ECONNRESET              WSAECONNRESET
  70. #define ENOBUFS                 WSAENOBUFS
  71. #define EISCONN                 WSAEISCONN
  72. #define ENOTCONN                WSAENOTCONN
  73. #define ESHUTDOWN               WSAESHUTDOWN
  74. #define ETOOMANYREFS            WSAETOOMANYREFS
  75. #define ETIMEDOUT               WSAETIMEDOUT
  76. #define ECONNREFUSED            WSAECONNREFUSED
  77. #define ELOOP                   WSAELOOP
  78. #define EHOSTDOWN               WSAEHOSTDOWN
  79. #define EHOSTUNREACH            WSAEHOSTUNREACH
  80. #define EPROCLIM                WSAEPROCLIM
  81. #define EUSERS                  WSAEUSERS
  82. #define EDQUOT                  WSAEDQUOT
  83. #define ESTALE                  WSAESTALE
  84. #define EREMOTE                 WSAEREMOTE
  85. #endif
  86. #undef XP_WIN
  87. #undef XP_UNIX
  88. #undef RESOURCE_STR_X
  89. #undef RESOURCE_STR
  90. #define XP_UNIX 1
  91. #define RESOURCE_STR 1
  92. #include "allxpstr.h"
  93. const char *
  94. SECU_Strerror(int error)
  95. {
  96.     char * errString;
  97.     int16  err          = error + RES_OFFSET;
  98.     errString = mcom_include_merrors_i_strings(err) ;
  99.     if (!errString)
  100. errString =  mcom_include_secerr_i_strings(err) ;
  101.     if (!errString)
  102. errString =  mcom_include_sslerr_i_strings(err) ;
  103.     if (!errString)
  104. errString =  mcom_include_xp_error_i_strings(err) ;
  105.     if (!errString)
  106. errString =  mcom_include_xp_msg_i_strings(err) ;
  107.     if (!errString)
  108. errString =  "ERROR NOT FOUND! n";
  109. /*    printf( "%sn", errString); */
  110.     return (const char *)errString;
  111. }