r1875: - move 'net' code into a subdir
[samba.git] / source4 / utils / net / 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 #define NET_FLAGS_MASTER 1
21 #define NET_FLAGS_DMB 2
22
23 /* Would it be insane to set 'localhost' as the default
24    remote host for this operation? 
25
26    For example, localhost is insane for a 'join' operation.
27 */
28 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE 4 
29
30 /* We want to find the PDC only */
31 #define NET_FLAGS_PDC 8 
32
33 /* We want an anonymous connection */
34 #define NET_FLAGS_ANONYMOUS 16 
35
36
37 extern int opt_maxusers;
38 extern const char *opt_comment;
39 extern char *opt_container;
40 extern int opt_flags;
41
42 extern const char *opt_comment;
43
44 extern const char *opt_target_workgroup;
45 extern const char *opt_workgroup;
46 extern int opt_long_list_entries;
47 extern int opt_reboot;
48 extern int opt_force;
49 extern int opt_timeout;
50 extern const char *opt_host;
51 extern const char *opt_user_name;
52 extern const char *opt_password;
53 extern BOOL opt_user_specified;
54
55 extern BOOL opt_have_ip;
56 extern struct in_addr opt_dest_ip;
57
58 extern const char *share_type[];
59