]> git.sur5r.net Git - openldap/blob - servers/slapd/back-sql/other.c
a736b1d63da43c7e70c831e59ce28ac573b47a63
[openldap] / servers / slapd / back-sql / other.c
1 /*
2  *       Copyright 1999, Dmitry Kovalev (zmit@mail.ru), All rights reserved.
3  *
4  *       Redistribution and use in source and binary forms are permitted only
5  *       as authorized by the OpenLDAP Public License.  A copy of this
6  *       license is available at http://www.OpenLDAP.org/license.html or
7  *       in file LICENSE in the top-level directory of the distribution.
8  */
9
10 #include "portable.h"
11
12 #include <stdio.h>
13 #include <sys/types.h>
14 #include "slap.h"
15 #include "back-sql.h"
16 #include "sql-wrap.h"
17
18 int backsql_dummy()
19 {
20  return 0;
21 }
22
23 int backsql_compare(BackendDB *be,Connection *conn,Operation *op,
24         char *dn,char *ndn,Ava *ava)
25 {
26  Debug(LDAP_DEBUG_TRACE,"==>backsql_compare()\n",0,0,0);
27  return 0;
28 }
29
30 int backsql_abandon( BackendDB *be,
31         Connection *conn, Operation *op, int msgid )
32 {
33  Debug(LDAP_DEBUG_TRACE,"==>backsql_abandon()\n",0,0,0);
34  Debug(LDAP_DEBUG_TRACE,"<==backsql_abandon()\n",0,0,0);
35  return 0;
36 }