]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/sets.h
s/forms/form in PADL copyright
[openldap] / servers / slapd / sets.h
index 134707fe5e023afcf6eaa0d414bd3ac360559fba..02b9f9f35a0051b356ba42e20201a6111264a1d5 100644 (file)
@@ -1,18 +1,36 @@
 /* $OpenLDAP$ */
 /*
- * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2003 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
+#ifndef SLAP_SETS_H_
+#define SLAP_SETS_H_
+
+#include <ldap_cdefs.h>
+
+LDAP_BEGIN_DECL
+
+typedef struct slap_set_cookie {
+       struct slap_op *op;
+} SetCookie;
+
 /* 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)(
+       SetCookie *cookie, struct berval *name, struct berval *attr);
+
+LDAP_SLAPD_F (long) slap_set_size(BerVarray set);
+LDAP_SLAPD_F (void) slap_set_dispose(SetCookie *cookie, BerVarray set);
 
-long set_size (char **set);
-void set_dispose (char **set);
+LDAP_SLAPD_F (int) slap_set_filter(
+       SLAP_SET_GATHER gatherer,
+       SetCookie *cookie, struct berval *filter,
+       struct berval *user, struct berval *this, BerVarray *results);
 
-int set_filter (SET_GATHER gatherer, void *cookie, char *filter, char *user, char *this, char ***results);
+LDAP_END_DECL
 
+#endif