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

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * Function to set error code only when meaningful error has not already 
  3.  * been set.
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public
  6.  * License Version 1.1 (the "License"); you may not use this file
  7.  * except in compliance with the License. You may obtain a copy of
  8.  * the License at http://www.mozilla.org/MPL/
  9.  * 
  10.  * Software distributed under the License is distributed on an "AS
  11.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  12.  * implied. See the License for the specific language governing
  13.  * rights and limitations under the License.
  14.  * 
  15.  * The Original Code is the Netscape security libraries.
  16.  * 
  17.  * The Initial Developer of the Original Code is Netscape
  18.  * Communications Corporation.  Portions created by Netscape are 
  19.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  20.  * Rights Reserved.
  21.  * 
  22.  * Contributor(s):
  23.  * 
  24.  * Alternatively, the contents of this file may be used under the
  25.  * terms of the GNU General Public License Version 2 or later (the
  26.  * "GPL"), in which case the provisions of the GPL are applicable 
  27.  * instead of those above.  If you wish to allow use of your 
  28.  * version of this file only under the terms of the GPL and not to
  29.  * allow others to use your version of this file under the MPL,
  30.  * indicate your decision by deleting the provisions above and
  31.  * replace them with the notice and other provisions required by
  32.  * the GPL.  If you do not delete the provisions above, a recipient
  33.  * may use your version of this file under either the MPL or the
  34.  * GPL.
  35.  *
  36.  * $Id: sslerr.c,v 1.2 2000/09/07 03:35:31 nelsonb%netscape.com Exp $
  37.  */
  38. #include "prerror.h"
  39. #include "secerr.h"
  40. #include "sslerr.h"
  41. #include "seccomon.h"
  42. /* look at the current value of PR_GetError, and evaluate it to see
  43.  * if it is meaningful or meaningless (out of context). 
  44.  * If it is meaningless, replace it with the hiLevelError.
  45.  * Returns the chosen error value.
  46.  */
  47. int
  48. ssl_MapLowLevelError(int hiLevelError)
  49. {
  50.     int oldErr = PORT_GetError();
  51.     switch (oldErr) {
  52.     case 0:
  53.     case PR_IO_ERROR:
  54.     case SEC_ERROR_IO:
  55.     case SEC_ERROR_BAD_DATA:
  56.     case SEC_ERROR_LIBRARY_FAILURE:
  57.     case SEC_ERROR_EXTENSION_NOT_FOUND:
  58.     case SSL_ERROR_BAD_CLIENT:
  59.     case SSL_ERROR_BAD_SERVER:
  60.     case SSL_ERROR_SESSION_NOT_FOUND:
  61.      PORT_SetError(hiLevelError);
  62. return hiLevelError;
  63.     default: /* leave the majority of error codes alone. */
  64. return oldErr;
  65.     }
  66. }