blob: 07d57ce6edf26ef9017234891ca6252f6494c5a1 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
* NSS utility functions
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "prtypes.h"
#include "prinit.h"
#include "seccomon.h"
#include "secerr.h"
#include "ssl.h"
#include "sslimpl.h"
#include "sslproto.h"
static int ssl_isInited = 0;
static PRCallOnceType ssl_init = { 0 };
PR_STATIC_ASSERT(sizeof(unsigned long) <= sizeof(PRUint64));
PRStatus
ssl_InitCallOnce(void *arg)
{
int *error = (int *)arg;
SECStatus rv;
rv = ssl_InitializePRErrorTable();
if (rv != SECSuccess) {
*error = SEC_ERROR_NO_MEMORY;
return PR_FAILURE;
}
#ifdef DEBUG
ssl3_CheckCipherSuiteOrderConsistency();
#endif
rv = ssl3_ApplyNSSPolicy();
if (rv != SECSuccess) {
*error = PORT_GetError();
return PR_FAILURE;
}
return PR_SUCCESS;
}
SECStatus
ssl_Init(void)
{
PRStatus nrv;
/* short circuit test if we are already inited */
if (!ssl_isInited) {
int error;
/* only do this once at init time, block all others until we are done */
nrv = PR_CallOnceWithArg(&ssl_init, ssl_InitCallOnce, &error);
if (nrv != PR_SUCCESS) {
PORT_SetError(error);
return SECFailure;
}
ssl_isInited = 1;
}
return SECSuccess;
}
|