summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/init.c
blob: 54ac5f782d147d623770ee681f11abac00988d40 (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
/** BEGIN COPYRIGHT BLOCK
 * Copyright 2001 Sun Microsystems, Inc.
 * Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
 * All rights reserved.
 * END COPYRIGHT BLOCK **/
/* init.c - initialize various things */

#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#ifndef _WIN32
#include <sys/time.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netdb.h>
#endif
#include "slap.h"
#include "fe.h"

void
slapd_init()
{
#ifdef _WIN32
	WSADATA	wsadata;
	int	err;

	if( err = WSAStartup(0x0101, &wsadata ) != 0 ) {
		LDAPDebug( LDAP_DEBUG_ANY,
		    "Windows Sockets initialization failed, error %d (%s)\n",
		    err, slapd_system_strerror( err ), 0 );
		exit( 1 );
	}
#endif /* _WIN32 */

	ops_mutex = PR_NewLock();
	num_conns_mutex = PR_NewLock();
	g_set_num_sent_mutex( PR_NewLock() );
	g_set_current_conn_count_mutex( PR_NewLock() );
	slapd_re_init();

	if ( ops_mutex == NULL ||
	    num_conns_mutex == NULL ||
	    g_get_num_sent_mutex() == NULL ||
	    g_get_current_conn_count_mutex() == NULL )
	{
		LDAPDebug( LDAP_DEBUG_ANY,
		    "init: PR_NewLock failed\n", 0, 0, 0 );
		exit( -1 );
	}

#ifndef HAVE_TIME_R
	if ((time_func_mutex = PR_NewLock()) == NULL ) {
                LDAPDebug( LDAP_DEBUG_ANY,
                    "init: PR_NewLock failed\n", 0, 0, 0 );
                exit(-1);
        }

#endif /* HAVE_TIME_R */
}