r4904: sync up with 3.0 for 3.0.11pre2
[Samba.git] / source / utils / net.h
blob2d9fbd16448fcab7f8515d175a131900969d33ff
1 /*
2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
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.
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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
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
26 typedef NTSTATUS (*rpc_command_fn)(const DOM_SID *, const char *,
27 struct cli_state *, TALLOC_CTX *, int, const char **);
29 /* INCLUDE FILES */
31 #include "utils/net_proto.h"
33 /* MACROS & DEFINES */
35 #define NET_FLAGS_MASTER 1
36 #define NET_FLAGS_DMB 2
38 /* Would it be insane to set 'localhost' as the default
39 remote host for this operation?
41 For example, localhost is insane for a 'join' operation.
43 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE 4
45 /* We want to find the PDC only */
46 #define NET_FLAGS_PDC 8
48 /* We want an anonymous connection */
49 #define NET_FLAGS_ANONYMOUS 16
51 /* don't open an RPC pipe */
52 #define NET_FLAGS_NO_PIPE 32
54 extern int opt_maxusers;
55 extern const char *opt_comment;
56 extern const char *opt_container;
57 extern int opt_flags;
59 extern const char *opt_comment;
61 extern const char *opt_target_workgroup;
62 extern const char *opt_workgroup;
63 extern int opt_long_list_entries;
64 extern int opt_verbose;
65 extern int opt_reboot;
66 extern int opt_force;
67 extern int opt_machine_pass;
68 extern int opt_timeout;
69 extern const char *opt_host;
70 extern const char *opt_user_name;
71 extern const char *opt_password;
72 extern BOOL opt_user_specified;
74 extern BOOL opt_localgroup;
75 extern BOOL opt_domaingroup;
76 extern const char *opt_newntname;
77 extern int opt_rid;
78 extern int opt_acls;
79 extern int opt_attrs;
80 extern int opt_timestamps;
81 extern const char *opt_exclude;
82 extern const char *opt_destination;
84 extern BOOL opt_have_ip;
85 extern struct in_addr opt_dest_ip;
87 extern const char *share_type[];