2005-05-27 11:14:01 +04:00
/*
Unix SMB / CIFS implementation .
type definitions for loadparm
Copyright ( C ) Karl Auer 1993 - 1998
Largely re - written by Andrew Tridgell , September 1994
Copyright ( C ) Simo Sorce 2001
Copyright ( C ) Alexander Bokovoy 2002
Copyright ( C ) Stefan ( metze ) Metzmacher 2002
Copyright ( C ) Jim McDonough ( jmcd @ us . ibm . com ) 2003.
Copyright ( C ) James Myers 2003 < myersjj @ 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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2005-05-27 11:14:01 +04:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-05-27 11:14:01 +04:00
*/
/* the following are used by loadparm for option lists */
typedef enum {
2010-12-08 08:27:38 +03:00
P_BOOL , P_INTEGER , P_OCTAL , P_BYTES , P_LIST , P_CMDLIST , P_STRING , P_USTRING , P_ENUM
2005-05-27 11:14:01 +04:00
} parm_type ;
typedef enum {
2007-10-02 17:30:10 +04:00
P_LOCAL , P_GLOBAL , P_NONE
2005-05-27 11:14:01 +04:00
} parm_class ;
struct enum_list {
int value ;
const char * name ;
} ;
2007-09-09 00:49:43 +04:00
struct loadparm_context ;
2005-05-27 11:14:01 +04:00
struct parm_struct {
const char * label ;
parm_type type ;
2009-02-02 13:24:08 +03:00
parm_class pclass ;
2007-12-07 18:04:22 +03:00
int offset ;
2007-09-09 00:49:43 +04:00
bool ( * special ) ( struct loadparm_context * , const char * , char * * ) ;
2005-05-27 11:14:01 +04:00
const struct enum_list * enum_list ;
union {
2006-05-24 10:36:17 +04:00
int bvalue ;
2005-05-27 11:14:01 +04:00
int ivalue ;
char * svalue ;
char cvalue ;
const char * * lvalue ;
} def ;
} ;
2005-08-05 19:30:33 +04:00
2007-12-09 01:32:33 +03:00
# define FLAG_DEFAULT 0x0001 /* this option was a default */
# define FLAG_CMDLINE 0x0002 /* this option was set from the command line */
2005-08-05 19:30:33 +04:00
2006-01-06 05:13:01 +03:00
# ifndef PRINTERS_NAME
# define PRINTERS_NAME "printers"
# endif
# ifndef HOMES_NAME
# define HOMES_NAME "homes"
# endif
2008-10-24 19:53:38 +04:00
/* This defines the section name in the configuration file that will contain */
/* global parameters - that is, parameters relating to the whole server, not */
/* just services. This name is then reserved, and may not be used as a */
/* a service name. It will default to "global" if not defined here. */
# ifndef GLOBAL_NAME
# define GLOBAL_NAME "global"
# define GLOBAL_NAME2 "globals"
# endif
/* The default workgroup - usually overridden in smb.conf */
# ifndef DEFAULT_WORKGROUP
# define DEFAULT_WORKGROUP "WORKGROUP"
# endif
/*
* Default passwd chat script .
*/
# ifndef DEFAULT_PASSWD_CHAT
# define DEFAULT_PASSWD_CHAT "*new*password* %n\\n *new*password* %n\\n *changed*"
# endif
/* Max number of jobs per print queue. */
# ifndef PRINT_MAX_JOBID
# define PRINT_MAX_JOBID 10000
# endif