mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 16:19:35 -05:00
include external.h
This commit is contained in:
parent
3c600e3a8c
commit
63df7da68e
4 changed files with 12 additions and 5 deletions
|
|
@ -13,6 +13,7 @@
|
||||||
#include <ac/unistd.h>
|
#include <ac/unistd.h>
|
||||||
|
|
||||||
#include "back-bdb.h"
|
#include "back-bdb.h"
|
||||||
|
#include "external.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
bdb_bind(
|
bdb_bind(
|
||||||
|
|
@ -243,4 +244,4 @@ done:
|
||||||
|
|
||||||
/* front end with send result on success (rc==0) */
|
/* front end with send result on success (rc==0) */
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
#include <ac/string.h>
|
#include <ac/string.h>
|
||||||
|
|
||||||
#include "back-bdb.h"
|
#include "back-bdb.h"
|
||||||
|
#include "external.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
bdb_exop_passwd(
|
bdb_exop_passwd(
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@
|
||||||
#include <ac/string.h>
|
#include <ac/string.h>
|
||||||
|
|
||||||
#include "back-bdb.h"
|
#include "back-bdb.h"
|
||||||
|
#include "external.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
bdb_referrals(
|
bdb_referrals(
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
#include <ac/string.h>
|
#include <ac/string.h>
|
||||||
|
|
||||||
#include "back-bdb.h"
|
#include "back-bdb.h"
|
||||||
|
#include "external.h"
|
||||||
|
|
||||||
static int base_candidate(
|
static int base_candidate(
|
||||||
BackendDB *be,
|
BackendDB *be,
|
||||||
|
|
@ -44,21 +45,24 @@ bdb_search(
|
||||||
char **attrs,
|
char **attrs,
|
||||||
int attrsonly )
|
int attrsonly )
|
||||||
{
|
{
|
||||||
int abandon;
|
|
||||||
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
||||||
|
int abandon;
|
||||||
int rc;
|
int rc;
|
||||||
const char *text = NULL;
|
const char *text = NULL;
|
||||||
time_t stoptime;
|
time_t stoptime;
|
||||||
ID candidates[BDB_IDL_SIZE];
|
|
||||||
ID id, cursor;
|
ID id, cursor;
|
||||||
|
ID candidates[BDB_IDL_SIZE];
|
||||||
Entry *e = NULL;
|
Entry *e = NULL;
|
||||||
struct berval **v2refs = NULL;
|
struct berval **v2refs = NULL;
|
||||||
Entry *matched = NULL;
|
Entry *matched = NULL;
|
||||||
char *realbase = NULL;
|
char *realbase = NULL;
|
||||||
int nentries = 0;
|
int nentries = 0;
|
||||||
int manageDSAit = get_manageDSAit( op );
|
int manageDSAit;
|
||||||
|
|
||||||
Debug(LDAP_DEBUG_TRACE, "=> ldbm_back_search\n", 0, 0, 0);
|
Debug( LDAP_DEBUG_TRACE, "=> bdb_back_search\n",
|
||||||
|
0, 0, 0);
|
||||||
|
|
||||||
|
manageDSAit = get_manageDSAit( op );
|
||||||
|
|
||||||
#ifdef BDB_ALIASES
|
#ifdef BDB_ALIASES
|
||||||
/* get entry with reader lock */
|
/* get entry with reader lock */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue