vampire keytab: add switch --repl-nodiff to trigger full replication.
[Samba.git] / source / libnet / libnet_dssync.h
blob7869b1620ac2f6fa2a853144a56b27d0b30aa15c
1 /*
2 * Unix SMB/CIFS implementation.
3 * libnet Support
4 * Copyright (C) Guenther Deschner 2008
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 3 of the License, or
9 * (at your option) any later version.
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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 struct dssync_context;
22 struct dssync_ops {
23 NTSTATUS (*startup)(struct dssync_context *ctx, TALLOC_CTX *mem_ctx,
24 struct replUpToDateVectorBlob **pold_utdv);
25 NTSTATUS (*process_objects)(struct dssync_context *ctx,
26 TALLOC_CTX *mem_ctx,
27 struct drsuapi_DsReplicaObjectListItemEx *objects,
28 struct drsuapi_DsReplicaOIDMapping_Ctr *mappings);
29 NTSTATUS (*finish)(struct dssync_context *ctx, TALLOC_CTX *mem_ctx,
30 struct replUpToDateVectorBlob *new_utdv);
33 struct dssync_context {
34 const char *domain_name;
35 const char *dns_domain_name;
36 struct rpc_pipe_client *cli;
37 const char *nc_dn;
38 bool single;
39 bool repl_nodiff;
40 const char *object_dn;
41 struct policy_handle bind_handle;
42 DATA_BLOB session_key;
43 const char *output_filename;
44 struct drsuapi_DsBindInfo28 remote_info28;
46 void *private_data;
48 const struct dssync_ops *ops;
50 char *result_message;
51 char *error_message;
54 extern const struct dssync_ops libnet_dssync_keytab_ops;