2001-12-22 19:50:16 +08:00
|
|
|
/* operational.c - ldbm backend operational attributes function */
|
|
|
|
/*
|
|
|
|
* Copyright 1998-2001 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldbm.h"
|
|
|
|
#include "proto-back-ldbm.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sets the supported operational attributes (if required)
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_operational(
|
|
|
|
BackendDB *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
Entry *e,
|
2001-12-26 16:17:44 +08:00
|
|
|
struct berval **attrs,
|
2001-12-22 19:50:16 +08:00
|
|
|
int opattrs,
|
|
|
|
Attribute **a )
|
|
|
|
{
|
|
|
|
Attribute **aa = a;
|
|
|
|
|
|
|
|
assert( e );
|
|
|
|
|
|
|
|
if ( opattrs || ad_inlist( slap_schema.si_ad_hasSubordinates, attrs ) ) {
|
|
|
|
int hs;
|
|
|
|
|
|
|
|
hs = has_children( be, e );
|
2001-12-22 22:24:13 +08:00
|
|
|
*aa = slap_operational_hasSubordinate( hs );
|
|
|
|
if ( *aa != NULL ) {
|
|
|
|
aa = &(*aa)->a_next;
|
|
|
|
}
|
2001-12-22 19:50:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|