mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
24 lines
348 B
C
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;
|
||
|
}
|