X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fsets.h;h=2478790080bb84034750c9840dd88468de335239;hb=e25f6ef0cdd1780577dffeaca8ba8b19b5697880;hp=134707fe5e023afcf6eaa0d414bd3ac360559fba;hpb=3705a26f2d003cc3126ef9e2d9df9a7dca75aa3c;p=openldap diff --git a/servers/slapd/sets.h b/servers/slapd/sets.h index 134707fe5e..2478790080 100644 --- a/servers/slapd/sets.h +++ b/servers/slapd/sets.h @@ -1,18 +1,32 @@ /* $OpenLDAP$ */ /* - * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 2000-2002 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ +#ifndef SLAP_SETS_H_ +#define SLAP_SETS_H_ + +#include + +LDAP_BEGIN_DECL + /* 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 char **(*SET_GATHER) (void *cookie, char *name, char *attr); +typedef BerVarray (SLAP_SET_GATHER)( + void *cookie, char *name, struct berval *attr); + +LDAP_SLAPD_F (long) slap_set_size (BerVarray set); +LDAP_SLAPD_F (void) slap_set_dispose (BerVarray set); -long set_size (char **set); -void set_dispose (char **set); +LDAP_SLAPD_F (int) +slap_set_filter (SLAP_SET_GATHER gatherer, + void *cookie, struct berval *filter, + char *user, char *this, BerVarray *results); -int set_filter (SET_GATHER gatherer, void *cookie, char *filter, char *user, char *this, char ***results); +LDAP_END_DECL +#endif \ No newline at end of file