r21041: Change some "private" to "private_data", and change one (void **) function
[Samba/ekacnet.git] / source4 / include / local.h
blobefffacd3f55d39b6d03af32742b1f5eb4ec7a111
1 /* Copyright (C) 1995-1998 Samba-Team */
2 /* Copyright (C) 1998 John H Terpstra <jht@aquasoft.com.au> */
4 /* local definitions for file server */
5 #ifndef _LOCAL_H
6 #define _LOCAL_H
8 /* The default workgroup - usually overridden in smb.conf */
9 #ifndef DEFAULT_WORKGROUP
10 #define DEFAULT_WORKGROUP "WORKGROUP"
11 #endif
13 /* the maximum debug level to compile into the code. This assumes a good
14 optimising compiler that can remove unused code
15 for embedded or low-memory systems set this to a value like 2 to get
16 only important messages. This gives *much* smaller binaries
18 #ifndef MAX_DEBUG_LEVEL
19 #define MAX_DEBUG_LEVEL 1000
20 #endif
22 /* This defines the section name in the configuration file that will contain */
23 /* global parameters - that is, parameters relating to the whole server, not */
24 /* just services. This name is then reserved, and may not be used as a */
25 /* a service name. It will default to "global" if not defined here. */
26 #define GLOBAL_NAME "global"
27 #define GLOBAL_NAME2 "globals"
29 /* define what facility to use for syslog */
30 #ifndef SYSLOG_FACILITY
31 #define SYSLOG_FACILITY LOG_DAEMON
32 #endif
34 /* separators for lists */
35 #define LIST_SEP " \t,\n\r"
37 /* what default type of filesystem do we want this to show up as in a
38 NT file manager window? */
39 #define FSTYPE_STRING "NTFS"
41 /* user to test password server with as invalid in security=server mode. */
42 #ifndef INVALID_USER_PREFIX
43 #define INVALID_USER_PREFIX "sambatest"
44 #endif
46 /* the default pager to use for the client "more" command. Users can
47 override this with the PAGER environment variable */
48 #ifndef PAGER
49 #define PAGER "more"
50 #endif
53 * Default passwd chat script.
55 #define DEFAULT_PASSWD_CHAT "*new*password* %n\\n *new*password* %n\\n *changed*"
57 /* Max number of jobs per print queue. */
58 #define PRINT_MAX_JOBID 10000
60 #endif