]> git.sur5r.net Git - openldap/blob - servers/slapd/slapi/slapi_ops.h
SLAPI - Netscape plugin API for slapd - based on patch contributed by Steve Omrani...
[openldap] / servers / slapd / slapi / slapi_ops.h
1 /*
2  * Copyright 1998-2002 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 Slapi_PBlock *slapi_search_internal( char *base, int scope, char *filter, 
17         LDAPControl **controls, char **attrs, int attrsonly );
18 Slapi_PBlock *slapi_search_internal_bind( char *bindDN, char *base, int scope, char *filter, 
19         LDAPControl **controls, char **attrs, int attrsonly ); /* d58508 */
20 Slapi_PBlock *slapi_modify_internal( char *dn, LDAPMod **mods,
21         LDAPControl **controls, int log_change );
22 Slapi_PBlock *slapi_add_entry_internal( Slapi_Entry * e, LDAPControl **controls, int log_change );
23 Slapi_PBlock *slapi_add_internal( char * dn, LDAPMod **attrs, LDAPControl **controls, int log_changes );
24 Slapi_PBlock *slapi_add_entry_internal( Slapi_Entry * e, LDAPControl **controls, int log_change );
25 Slapi_PBlock *slapi_delete_internal( char * dn,  LDAPControl **controls, int log_change );
26 Slapi_PBlock *slapi_modrdn_internal( char * olddn, char * newrdn, int deloldrdn, LDAPControl **controls, int log_change);
27 /*
28 Slapi_PBlock *slapi_modrdn_internal( char * olddn, char * newrdn, char *newParent, int deloldrdn, LDAPControl **controls, int log_change);
29 */
30 char **slapi_get_supported_extended_ops(void);
31 int duplicateBVMod( LDAPMod *pMod, LDAPMod **ppNewMod );
32
33 #endif /* SLAPI_OPS_H */
34