mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
763c0de59b
Misc cleanup / lint removal
23 lines
671 B
C
23 lines
671 B
C
/* $OpenLDAP$ */
|
|
/*
|
|
* Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
/* this routine needs to return the bervals instead of
|
|
* plain strings, since syntax is not known. It should
|
|
* also return the syntax or some "comparison cookie"
|
|
* that is used by set_filter.
|
|
*/
|
|
typedef BVarray (SLAP_SET_GATHER)(
|
|
void *cookie, char *name, struct berval *attr);
|
|
|
|
LDAP_SLAPD_F (long) slap_set_size (BVarray set);
|
|
LDAP_SLAPD_F (void) slap_set_dispose (BVarray set);
|
|
|
|
LDAP_SLAPD_F (int)
|
|
slap_set_filter (SLAP_SET_GATHER gatherer,
|
|
void *cookie, struct berval *filter,
|
|
char *user, char *this, BVarray *results);
|
|
|