2001-12-03 09:49:47 +03:00
/*
Samba Unix / Linux SMB client library
Distributed SMB / CIFS Server Management Utility
Copyright ( C ) 2001 Andrew Bartlett ( abartlet @ samba . org )
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
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
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 0213 9 , USA . */
# define NET_FLAGS_MASTER 1
# define NET_FLAGS_DMB 2
/* Would it be insane to set 'localhost' as the default
remote host for this operation ?
For example , localhost is insane for a ' join ' operation .
*/
2001-12-05 14:00:26 +03:00
# define NET_FLAGS_LOCALHOST_DEFAULT_INSANE 4
2001-12-03 09:49:47 +03:00
2001-12-04 07:48:01 +03:00
/* We want to find the PDC only */
2001-12-05 14:00:26 +03:00
# define NET_FLAGS_PDC 8
2001-12-04 07:48:01 +03:00
2001-12-05 06:14:35 +03:00
/* We want an anonymous connection */
2001-12-05 14:00:26 +03:00
# define NET_FLAGS_ANONYMOUS 16
2001-12-05 06:14:35 +03:00
2001-12-03 09:49:47 +03:00
extern int opt_maxusers ;
extern char * opt_comment ;
extern int opt_flags ;
2001-12-04 07:48:01 +03:00
extern char * opt_comment ;
extern char * opt_target_workgroup ;
2001-12-03 09:49:47 +03:00
extern int opt_long_list_entries ;
2001-12-31 16:00:59 +03:00
extern int opt_reboot ;
extern int opt_force ;
extern int opt_timeout ;
2002-04-10 17:28:28 +04:00
extern char * opt_host ;
extern char * opt_user_name ;
extern char * opt_password ;
extern BOOL opt_user_specified ;