r3220: merging current 3.0 code to release branch
[Samba.git] / source / utils / net.h
blob5e65ca0d4cdfbf17956b885c9468fd30f670ee2e
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 #include "utils/net_proto.h"
22 #define NET_FLAGS_MASTER 1
23 #define NET_FLAGS_DMB 2
25 /* Would it be insane to set 'localhost' as the default
26 remote host for this operation?
28 For example, localhost is insane for a 'join' operation.
30 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE 4
32 /* We want to find the PDC only */
33 #define NET_FLAGS_PDC 8
35 /* We want an anonymous connection */
36 #define NET_FLAGS_ANONYMOUS 16
38 /* don't open an RPC pipe */
39 #define NET_FLAGS_NO_PIPE 32
41 extern int opt_maxusers;
42 extern const char *opt_comment;
43 extern const char *opt_container;
44 extern int opt_flags;
46 extern const char *opt_comment;
48 extern const char *opt_target_workgroup;
49 extern const char *opt_workgroup;
50 extern int opt_long_list_entries;
51 extern int opt_verbose;
52 extern int opt_reboot;
53 extern int opt_force;
54 extern int opt_machine_pass;
55 extern int opt_timeout;
56 extern const char *opt_host;
57 extern const char *opt_user_name;
58 extern const char *opt_password;
59 extern BOOL opt_user_specified;
61 extern BOOL opt_localgroup;
62 extern BOOL opt_domaingroup;
63 extern const char *opt_newntname;
64 extern int opt_rid;
65 extern int opt_acls;
66 extern int opt_attrs;
67 extern int opt_timestamps;
68 extern const char *opt_exclude;
69 extern const char *opt_destination;
71 extern BOOL opt_have_ip;
72 extern struct in_addr opt_dest_ip;
74 extern const char *share_type[];