]> git.sur5r.net Git - openldap/blob - servers/slapd/slapi/slapi_ops.h
Ensure that global plugins are called after backend-specific plugins
[openldap] / servers / slapd / slapi / slapi_ops.h
1 /*
2  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5 /*
6  * (C) Copyright IBM Corp. 1997,2002
7  * Redistribution and use in source and binary forms are permitted
8  * provided that this notice is preserved and that due credit is 
9  * given to IBM Corporation. This software is provided ``as is'' 
10  * without express or implied warranty.
11  */
12
13 #ifndef SLAPI_OPS_H
14 #define SLAPI_OPS_H
15
16 LDAP_BEGIN_DECL
17
18 Slapi_PBlock *slapi_search_internal( char *base, int scope, char *filter, 
19                 LDAPControl **controls, char **attrs, int attrsonly );
20 Slapi_PBlock *slapi_search_internal_bind( char *bindDN, char *base,
21                 int scope, char *filter, LDAPControl **controls,
22                 char **attrs, int attrsonly ); /* d58508 */
23 Slapi_PBlock *slapi_modify_internal( char *dn, LDAPMod **mods,
24         LDAPControl **controls, int log_change );
25 Slapi_PBlock *slapi_add_entry_internal( Slapi_Entry * e,
26                 LDAPControl **controls, int log_change );
27 Slapi_PBlock *slapi_add_internal( char * dn, LDAPMod **attrs,
28                 LDAPControl **controls, int log_changes );
29 Slapi_PBlock *slapi_add_entry_internal( Slapi_Entry * e,
30                 LDAPControl **controls, int log_change );
31 Slapi_PBlock *slapi_delete_internal( char * dn,  LDAPControl **controls,
32                 int log_change );
33 Slapi_PBlock *slapi_modrdn_internal( char * olddn, char * newrdn,
34                 int deloldrdn, LDAPControl **controls, int log_change);
35 /*
36 Slapi_PBlock *slapi_modrdn_internal( char * olddn, char * newrdn,
37                 char *newParent, int deloldrdn, LDAPControl **controls,
38                 int log_change);
39 */
40 char **slapi_get_supported_extended_ops(void);
41 int duplicateBVMod( LDAPMod *pMod, LDAPMod **ppNewMod );
42
43 LDAP_END_DECL
44
45 #endif /* SLAPI_OPS_H */
46