blob: 09ae3562cd77fa32c3360f3fe9a907586766b4d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file is only included in ssl_client_socket_nss.cc and
// ssl_server_socket_nss.cc to share common functions of NSS.
#ifndef NET_SOCKET_NSS_SSL_UTIL_H_
#define NET_SOCKET_NSS_SSL_UTIL_H_
#include <prerror.h>
#include "net/base/net_export.h"
namespace net {
class BoundNetLog;
// Initalize NSS SSL library.
NET_EXPORT void EnsureNSSSSLInit();
// Log a failed NSS funcion call.
void LogFailedNSSFunction(const BoundNetLog& net_log,
const char* function,
const char* param);
// Map network error code to NSS error code.
PRErrorCode MapErrorToNSS(int result);
// Map NSS error code to network error code.
int MapNSSError(PRErrorCode err);
} // namespace net
#endif // NET_SOCKET_NSS_SSL_UTIL_H_
|