r2527: - add a dummy for a simple ldb backend
[abartlet/samba.git/.git] / source4 / ldap_server / ldap_simple_ldb.c
1 /* 
2    Unix SMB/CIFS implementation.
3    LDAP server SIMPLE LDB implementation
4    Copyright (C) Stefan Metzmacher 2004
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22
23 static NTSTATUS sldb_Search(struct ldapsrv_partition *partition, struct ldapsrv_call *call,
24                                      struct ldap_SearchRequest *r)
25 {
26         struct ldap_Result *done;
27         struct ldapsrv_reply *done_r;
28
29         DEBUG(0, ("sldb_Search: %s\n", r->filter));
30
31         done_r = ldapsrv_init_reply(call, LDAP_TAG_SearchResultDone);
32         if (!done_r) {
33                 ldapsrv_terminate_connection(call->conn, "ldapsrv_init_reply() failed");
34                 return NT_STATUS_NO_MEMORY;
35         }
36
37         done = &done_r->msg.r.SearchResultDone;
38         done->resultcode = 32;
39         done->dn = NULL;
40         done->errormessage = NULL;
41         done->referral = NULL;
42
43         ldapsrv_queue_reply(call, done_r);
44
45         return NT_STATUS_OK;
46 }
47
48 static const struct ldapsrv_partition_ops sldb_ops = {
49         .Search         = sldb_Search
50 };
51
52 const struct ldapsrv_partition_ops *ldapsrv_get_sldb_partition_ops(void)
53 {
54         return &sldb_ops;
55 }