r7512: Fix net share migrate files to also migrate the ACLs of the top level
[jerry/samba.git] / source / utils / net.h
1 /* 
2    Samba Unix/Linux SMB client library 
3    Distributed SMB/CIFS Server Management Utility 
4    Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
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 2 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, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 /* 
21  * A function of this type is passed to the '
22  * run_rpc_command' wrapper.  Must go before the net_proto.h 
23  * include
24  */
25
26 typedef NTSTATUS (*rpc_command_fn)(const DOM_SID *, const char *, 
27                                    struct cli_state *, TALLOC_CTX *, int, const char **);
28                                    
29 typedef struct copy_clistate {
30         TALLOC_CTX *mem_ctx;
31         struct cli_state *cli_share_src;
32         struct cli_state *cli_share_dst;
33         char *cwd;
34         BOOL top_level_dir;
35         uint16 attribute;
36         int mode;
37 }copy_clistate; 
38
39 /* INCLUDE FILES */
40
41 #include "utils/net_proto.h"
42  
43 /* MACROS & DEFINES */
44
45 #define NET_FLAGS_MASTER 1
46 #define NET_FLAGS_DMB 2
47
48 /* Would it be insane to set 'localhost' as the default
49    remote host for this operation? 
50
51    For example, localhost is insane for a 'join' operation.
52 */
53 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE 4 
54
55 /* We want to find the PDC only */
56 #define NET_FLAGS_PDC 8 
57
58 /* We want an anonymous connection */
59 #define NET_FLAGS_ANONYMOUS 16 
60
61 /* don't open an RPC pipe */
62 #define NET_FLAGS_NO_PIPE 32
63
64 /* net share operation modes */
65 #define NET_MODE_SHARE_MIGRATE 1
66
67 extern int opt_maxusers;
68 extern const char *opt_comment;
69 extern const char *opt_container;
70 extern int opt_flags;
71
72 extern const char *opt_comment;
73
74 extern const char *opt_target_workgroup;
75 extern const char *opt_workgroup;
76 extern int opt_long_list_entries;
77 extern int opt_verbose;
78 extern int opt_reboot;
79 extern int opt_force;
80 extern int opt_machine_pass;
81 extern int opt_timeout;
82 extern const char *opt_host;
83 extern const char *opt_user_name;
84 extern const char *opt_password;
85 extern BOOL opt_user_specified;
86
87 extern BOOL opt_localgroup;
88 extern BOOL opt_domaingroup;
89 extern const char *opt_newntname;
90 extern int opt_rid;
91 extern int opt_acls;
92 extern int opt_attrs;
93 extern int opt_timestamps;
94 extern const char *opt_exclude;
95 extern const char *opt_destination;
96
97 extern BOOL opt_have_ip;
98 extern struct in_addr opt_dest_ip;
99
100 extern const char *share_type[];
101