source: trunk/server/source4/dsdb/repl/drepl_replica.c

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 1.8 KB
Line 
1/*
2 Unix SMB/CIFS mplementation.
3
4 DSDB replication service - DsReplica{Add,Del,Mod} handling
5
6 Copyright (C) Andrew Tridgell 2010
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21*/
22
23#include "includes.h"
24#include "ldb_module.h"
25#include "dsdb/samdb/samdb.h"
26#include "smbd/service.h"
27#include "dsdb/repl/drepl_service.h"
28#include "param/param.h"
29#include "librpc/gen_ndr/ndr_drsuapi.h"
30
31/*
32 implement DsReplicaAdd (forwarded from DRS server)
33 */
34NTSTATUS drepl_replica_add(struct dreplsrv_service *service,
35 struct drsuapi_DsReplicaAdd *r)
36{
37 NDR_PRINT_FUNCTION_DEBUG(drsuapi_DsReplicaAdd, NDR_IN, r);
38 return NT_STATUS_NOT_IMPLEMENTED;
39}
40
41/*
42 implement DsReplicaDel (forwarded from DRS server)
43 */
44NTSTATUS drepl_replica_del(struct dreplsrv_service *service,
45 struct drsuapi_DsReplicaDel *r)
46{
47 NDR_PRINT_FUNCTION_DEBUG(drsuapi_DsReplicaDel, NDR_IN, r);
48 return NT_STATUS_NOT_IMPLEMENTED;
49}
50
51/*
52 implement DsReplicaMod (forwarded from DRS server)
53 */
54NTSTATUS drepl_replica_mod(struct dreplsrv_service *service,
55 struct drsuapi_DsReplicaMod *r)
56{
57 NDR_PRINT_FUNCTION_DEBUG(drsuapi_DsReplicaMod, NDR_IN, r);
58 return NT_STATUS_NOT_IMPLEMENTED;
59}
Note: See TracBrowser for help on using the repository browser.