]> git.sur5r.net Git - openldap/blob - servers/slapd/sets.h
Minor cleanup of last commit
[openldap] / servers / slapd / sets.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6
7 /* this routine needs to return the bervals instead of
8  * plain strings, since syntax is not known.  It should
9  * also return the syntax or some "comparison cookie"
10  * that is used by set_filter.
11  */
12 typedef char **(*SET_GATHER) (void *cookie, char *name, char *attr);
13
14 long set_size (char **set);
15 void set_dispose (char **set);
16
17 int set_filter (SET_GATHER gatherer, void *cookie, char *filter, char *user, char *this, char ***results);
18