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

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * This file essentially replicates NSPR's source for the functions that
  3.  * map system-specific error codes to NSPR error codes.  We would use 
  4.  * NSPR's functions, instead of duplicating them, but they're private.
  5.  * As long as SSL's server session cache code must do platform native I/O
  6.  * to accomplish its job, and NSPR's error mapping functions remain private,
  7.  * this code will continue to need to be replicated.
  8.  * 
  9.  * The contents of this file are subject to the Mozilla Public
  10.  * License Version 1.1 (the "License"); you may not use this file
  11.  * except in compliance with the License. You may obtain a copy of
  12.  * the License at http://www.mozilla.org/MPL/
  13.  * 
  14.  * Software distributed under the License is distributed on an "AS
  15.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  16.  * implied. See the License for the specific language governing
  17.  * rights and limitations under the License.
  18.  * 
  19.  * The Original Code is the Netscape security libraries.
  20.  * 
  21.  * The Initial Developer of the Original Code is Netscape
  22.  * Communications Corporation.  Portions created by Netscape are 
  23.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  24.  * Rights Reserved.
  25.  * 
  26.  * Contributor(s):
  27.  * 
  28.  * Alternatively, the contents of this file may be used under the
  29.  * terms of the GNU General Public License Version 2 or later (the
  30.  * "GPL"), in which case the provisions of the GPL are applicable 
  31.  * instead of those above.  If you wish to allow use of your 
  32.  * version of this file only under the terms of the GPL and not to
  33.  * allow others to use your version of this file under the MPL,
  34.  * indicate your decision by deleting the provisions above and
  35.  * replace them with the notice and other provisions required by
  36.  * the GPL.  If you do not delete the provisions above, a recipient
  37.  * may use your version of this file under either the MPL or the
  38.  * GPL.
  39.  *
  40.  * $Id: unix_err.h,v 1.1 2000/03/31 19:37:18 relyea%netscape.com Exp $
  41.  */
  42. /*  NSPR doesn't make these functions public, so we have to duplicate
  43. **  them in NSS.
  44. */
  45. extern void nss_MD_hpux_map_sendfile_error(int err);
  46. extern void nss_MD_unix_map_accept_error(int err);
  47. extern void nss_MD_unix_map_access_error(int err);
  48. extern void nss_MD_unix_map_bind_error(int err);
  49. extern void nss_MD_unix_map_close_error(int err);
  50. extern void nss_MD_unix_map_closedir_error(int err);
  51. extern void nss_MD_unix_map_connect_error(int err);
  52. extern void nss_MD_unix_map_default_error(int err);
  53. extern void nss_MD_unix_map_flock_error(int err);
  54. extern void nss_MD_unix_map_fstat_error(int err);
  55. extern void nss_MD_unix_map_fsync_error(int err);
  56. extern void nss_MD_unix_map_gethostname_error(int err);
  57. extern void nss_MD_unix_map_getpeername_error(int err);
  58. extern void nss_MD_unix_map_getsockname_error(int err);
  59. extern void nss_MD_unix_map_getsockopt_error(int err);
  60. extern void nss_MD_unix_map_listen_error(int err);
  61. extern void nss_MD_unix_map_lockf_error(int err);
  62. extern void nss_MD_unix_map_lseek_error(int err);
  63. extern void nss_MD_unix_map_mkdir_error(int err);
  64. extern void nss_MD_unix_map_mmap_error(int err);
  65. extern void nss_MD_unix_map_open_error(int err);
  66. extern void nss_MD_unix_map_opendir_error(int err);
  67. extern void nss_MD_unix_map_poll_error(int err);
  68. extern void nss_MD_unix_map_poll_revents_error(int err);
  69. extern void nss_MD_unix_map_read_error(int err);
  70. extern void nss_MD_unix_map_readdir_error(int err);
  71. extern void nss_MD_unix_map_recv_error(int err);
  72. extern void nss_MD_unix_map_recvfrom_error(int err);
  73. extern void nss_MD_unix_map_rename_error(int err);
  74. extern void nss_MD_unix_map_rmdir_error(int err);
  75. extern void nss_MD_unix_map_select_error(int err);
  76. extern void nss_MD_unix_map_send_error(int err);
  77. extern void nss_MD_unix_map_sendto_error(int err);
  78. extern void nss_MD_unix_map_setsockopt_error(int err);
  79. extern void nss_MD_unix_map_shutdown_error(int err);
  80. extern void nss_MD_unix_map_socket_error(int err);
  81. extern void nss_MD_unix_map_socketavailable_error(int err);
  82. extern void nss_MD_unix_map_socketpair_error(int err);
  83. extern void nss_MD_unix_map_stat_error(int err);
  84. extern void nss_MD_unix_map_unlink_error(int err);
  85. extern void nss_MD_unix_map_write_error(int err);
  86. extern void nss_MD_unix_map_writev_error(int err);