]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/extended.c
Sync with HEAD
[openldap] / servers / slapd / back-bdb / extended.c
1 /* extended.c - bdb backend extended routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2003 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20 #include <ac/string.h>
21
22 #include "back-bdb.h"
23 #include "external.h"
24 #include "lber_pvt.h"
25
26 static struct exop {
27         struct berval *oid;
28         BI_op_extended  *extended;
29 } exop_table[] = {
30         { (struct berval *)&slap_EXOP_MODIFY_PASSWD, bdb_exop_passwd },
31         { NULL, NULL }
32 };
33
34 int
35 bdb_extended( Operation *op, SlapReply *rs )
36 /*      struct berval           *reqoid,
37         struct berval   *reqdata,
38         char            **rspoid,
39         struct berval   **rspdata,
40         LDAPControl *** rspctrls,
41         const char**    text,
42         BerVarray       *refs 
43 ) */
44 {
45         int i;
46
47         for( i=0; exop_table[i].extended != NULL; i++ ) {
48                 if( ber_bvcmp( exop_table[i].oid, &op->oq_extended.rs_reqoid ) == 0 ) {
49                         return (exop_table[i].extended)( op, rs );
50                 }
51         }
52
53         rs->sr_text = "not supported within naming context";
54         return LDAP_UNWILLING_TO_PERFORM;
55 }
56