Two useful "regshell" improvements
[ira/wip.git] / source4 / libnet / libnet_vampire.h
index 4bbdf2733a900ea6fa0371727e1e185582c1a1aa..5e0c7594b20f8aff5597e33df380d0c4b8841b65 100644 (file)
@@ -1,11 +1,13 @@
 /* 
    Unix SMB/CIFS implementation.
-
+   
+   Copyright (C) Stefan Metzmacher     2004
    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
+   Copyright (C) Brad Henry 2005
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#include "librpc/gen_ndr/ndr_netlogon.h"
-
-/* struct and enum for doing a remote domain vampire dump */
-struct libnet_SamSync {
-       struct {
-               const char *binding_string;
-               NTSTATUS (*delta_fn)(TALLOC_CTX *mem_ctx,               
-                                    void *private,                     
-                                    struct creds_CredentialState *creds,
-                                    enum netr_SamDatabaseID database,
-                                    struct netr_DELTA_ENUM *delta,
-                                    char **error_string);
-               void *fn_ctx;
-               struct cli_credentials *machine_account;
-       } in;
-       struct {
-               const char *error_string;
-       } out;
-};
-
-struct libnet_SamDump {
-       struct {
-               const char *binding_string;
-               struct cli_credentials *machine_account;
-       } in;
-       struct {
-               const char *error_string;
-       } out;
-};
+#ifndef __LIBNET_VAMPIRE_H__
+#define __LIBNET_VAMPIRE_H__
 
-struct libnet_SamDump_keytab {
+struct libnet_Vampire {
        struct {
-               const char *binding_string;
-               const char *keytab_name;
-               struct cli_credentials *machine_account;
+               const char *domain_name;
+               const char *netbios_name;
+               const char *targetdir;
        } in;
+       
        struct {
+               struct dom_sid *domain_sid;
+               const char *domain_name;
                const char *error_string;
        } out;
 };
 
-struct libnet_samsync_ldb {
-       struct {
-               const char *binding_string;
-               struct cli_credentials *machine_account;
-       } in;
-       struct {
-               const char *error_string;
-       } out;
-};
 
+#endif /* __LIBNET_VAMPIRE_H__ */