net_vampire: move out display routines to one file.
[kai/samba.git] / source3 / libnet / libnet_samsync.h
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  libnet Support
4  *  Copyright (C) Guenther Deschner 2008
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 3 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, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 enum net_samsync_mode {
22         NET_SAMSYNC_MODE_FETCH_PASSDB = 0,
23         NET_SAMSYNC_MODE_FETCH_LDIF = 1,
24         NET_SAMSYNC_MODE_DUMP = 2
25 };
26
27 struct samsync_context {
28         enum net_samsync_mode mode;
29         const struct dom_sid *domain_sid;
30         const char *domain_sid_str;
31         const char *domain_name;
32         const char *output_filename;
33
34         char *result_message;
35         char *error_message;
36
37         void *private_data;
38 };
39
40 typedef NTSTATUS (*samsync_fn_t)(TALLOC_CTX *,
41                                  enum netr_SamDatabaseID,
42                                  struct netr_DELTA_ENUM_ARRAY *,
43                                  NTSTATUS,
44                                  struct samsync_context *);
45
46 NTSTATUS fetch_sam_entries_ldif(TALLOC_CTX *mem_ctx,
47                                 enum netr_SamDatabaseID database_id,
48                                 struct netr_DELTA_ENUM_ARRAY *r,
49                                 NTSTATUS result,
50                                 struct samsync_context *ctx);
51 NTSTATUS fetch_sam_entries(TALLOC_CTX *mem_ctx,
52                            enum netr_SamDatabaseID database_id,
53                            struct netr_DELTA_ENUM_ARRAY *r,
54                            NTSTATUS status,
55                            struct samsync_context *ctx);
56 NTSTATUS display_sam_entries(TALLOC_CTX *mem_ctx,
57                              enum netr_SamDatabaseID database_id,
58                              struct netr_DELTA_ENUM_ARRAY *r,
59                              NTSTATUS status,
60                              struct samsync_context *ctx);