openldap/libraries/libldap/init.c
Kurt Zeilenga 8333a03346 struct ldap is now opaque to clients.
updated clients to use ldap_get/set_options
ld_options is renamed ld_booleans.  ldap-int.h has accessor macros.
updated libldap to use new accessor macros.
1998-11-04 01:41:00 +00:00

24 lines
348 B
C

#include "portable.h"
#include <stdio.h>
#include <stdlib.h>
#include <ac/socket.h>
#include <ac/string.h>
#include <ac/time.h>
#include "ldap-int.h"
struct ldap openldap_ld_globals;
int openldap_ldap_initialized = 0;
void openldap_ldap_initialize( void )
{
if ( openldap_ldap_initialized ) {
return;
}
openldap_ldap_initialized = 1;
}