wafsamba: remove unused Build.BuildContext.pre_build overload
[Samba.git] / source4 / dsdb / repl / drepl_replica.c
blobadb0e971eba65eadd76bbf03516571f1ee8c86d2
1 /*
2 Unix SMB/CIFS mplementation.
4 DSDB replication service - DsReplica{Add,Del,Mod} handling
6 Copyright (C) Andrew Tridgell 2010
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.
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.
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/>.
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"
31 #undef DBGC_CLASS
32 #define DBGC_CLASS DBGC_DRS_REPL
35 implement DsReplicaAdd (forwarded from DRS server)
37 NTSTATUS drepl_replica_add(struct dreplsrv_service *service,
38 struct drsuapi_DsReplicaAdd *r)
40 NDR_PRINT_FUNCTION_DEBUG(drsuapi_DsReplicaAdd, NDR_IN, r);
41 return NT_STATUS_NOT_IMPLEMENTED;
45 implement DsReplicaDel (forwarded from DRS server)
47 NTSTATUS drepl_replica_del(struct dreplsrv_service *service,
48 struct drsuapi_DsReplicaDel *r)
50 NDR_PRINT_FUNCTION_DEBUG(drsuapi_DsReplicaDel, NDR_IN, r);
51 return NT_STATUS_NOT_IMPLEMENTED;
55 implement DsReplicaMod (forwarded from DRS server)
57 NTSTATUS drepl_replica_mod(struct dreplsrv_service *service,
58 struct drsuapi_DsReplicaMod *r)
60 NDR_PRINT_FUNCTION_DEBUG(drsuapi_DsReplicaMod, NDR_IN, r);
61 return NT_STATUS_NOT_IMPLEMENTED;