mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 16:19:35 -05:00
Add slap_operation_t
This commit is contained in:
parent
fe2492309a
commit
13a8d5046f
1 changed files with 22 additions and 0 deletions
|
|
@ -76,6 +76,10 @@ LDAP_BEGIN_DECL
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef LDAP_SLAPI
|
||||
#define SLAP_OVERLAY_ACCESS
|
||||
#endif
|
||||
|
||||
/*
|
||||
* ITS#3705: bail out if unknown config directives appear in slapd.conf
|
||||
*/
|
||||
|
|
@ -2169,6 +2173,24 @@ typedef struct slap_callback {
|
|||
|
||||
struct slap_overinfo;
|
||||
|
||||
typedef enum slap_operation_e {
|
||||
op_bind = 0,
|
||||
op_unbind,
|
||||
op_search,
|
||||
op_compare,
|
||||
op_modify,
|
||||
op_modrdn,
|
||||
op_add,
|
||||
op_delete,
|
||||
op_abandon,
|
||||
op_cancel,
|
||||
op_extended,
|
||||
op_aux_operational,
|
||||
op_aux_chk_referrals,
|
||||
op_aux_chk_controls,
|
||||
op_last
|
||||
} slap_operation_t;
|
||||
|
||||
typedef struct slap_overinst {
|
||||
BackendInfo on_bi;
|
||||
slap_response *on_response;
|
||||
|
|
|
|||
Loading…
Reference in a new issue