home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Wtestowe / Clico / UNIX / SAMBA / SOURCE / SAMBA.TAR / samba-1.9.17 / source / local.h < prev    next >
C/C++ Source or Header  |  1997-07-18  |  5KB  |  161 lines

  1. /* local definitions for file server */
  2. #ifndef _LOCAL_H
  3. #define _LOCAL_H
  4.  
  5. /* This defines the section name in the configuration file that will contain */
  6. /* global parameters - that is, parameters relating to the whole server, not */
  7. /* just services. This name is then reserved, and may not be used as a       */
  8. /* a service name. It will default to "global" if not defined here.          */
  9. #define GLOBAL_NAME "global"
  10. #define GLOBAL_NAME2 "globals"
  11.  
  12. /* This defines the section name in the configuration file that will
  13.    refer to the special "homes" service */
  14. #define HOMES_NAME "homes"
  15.  
  16. /* This defines the section name in the configuration file that will
  17.    refer to the special "printers" service */
  18. #define PRINTERS_NAME "printers"
  19.  
  20. /* This defines the name of the printcap file. It is MOST UNLIKELY that
  21.    this will change BUT! Specifying a file with the format of a printcap
  22.    file but containing only a subset of the printers actually in your real 
  23.    printcap file is a quick-n-dirty way to allow dynamic access to a subset
  24.    of available printers.
  25. */
  26. #define PRINTCAP_NAME "/etc/printcap"
  27.  
  28. /* set these to define the limits of the server. NOTE These are on a
  29.    per-client basis. Thus any one machine can't connect to more than
  30.    MAX_CONNECTIONS services, but any number of machines may connect at
  31.    one time. */
  32. #define MAX_CONNECTIONS 127
  33. #define MAX_OPEN_FILES 100
  34.  
  35. /* the max number of connections that the smbstatus program will show */
  36. #define MAXSTATUS 1000
  37.  
  38. /* max number of directories open at once */
  39. /* note that with the new directory code this no longer requires a
  40.    file handle per directory, but large numbers do use more memory */
  41. #define MAXDIR 64
  42.  
  43. #define WORDMAX 0xFFFF
  44.  
  45.  
  46. /* separators for lists */
  47. #define LIST_SEP " \t,;:\n\r"
  48.  
  49. #ifndef LOCKDIR
  50. /* this should have been set in the Makefile */
  51. #define LOCKDIR "/tmp/samba"
  52. #endif
  53.  
  54. /* this is where browse lists are kept in the lock dir */
  55. #define SERVER_LIST "browse.dat"
  56.  
  57. /* shall guest entries in printer queues get changed to user entries,
  58.    so they can be deleted using the windows print manager? */
  59. #define LPQ_GUEST_TO_USER
  60.  
  61. /* shall filenames with illegal chars in them get mangled in long
  62.    filename listings? */
  63. #define MANGLE_LONG_FILENAMES 
  64.  
  65. /* define this if you want to stop spoofing with .. and soft links
  66.    NOTE: This also slows down the server considerably */
  67. #define REDUCE_PATHS
  68.  
  69. /* the size of the directory cache */
  70. #define DIRCACHESIZE 20
  71.  
  72. /* what type of filesystem do we want this to show up as in a NT file
  73.    manager window? */
  74. #define FSTYPE_STRING "Samba"
  75.  
  76. /* do you want smbd to send a 1 byte packet to nmbd to trigger it to start 
  77.    when smbd starts? */
  78. #ifndef PRIME_NMBD
  79. #define PRIME_NMBD 1
  80. #endif
  81.  
  82. /* do you want session setups at user level security with a invalid
  83.    password to be rejected or allowed in as guest? WinNT rejects them
  84.    but it can be a pain as it means "net view" needs to use a password 
  85.  
  86.    You have 3 choices:
  87.  
  88.    GUEST_SESSSETUP = 0 means session setups with an invalid password
  89.    are rejected.
  90.  
  91.    GUEST_SESSSETUP = 1 means session setups with an invalid password
  92.    are rejected, unless the username does not exist, in which case it
  93.    is treated as a guest login
  94.  
  95.    GUEST_SESSSETUP = 2 means session setups with an invalid password
  96.    are treated as a guest login
  97.  
  98.    Note that GUEST_SESSSETUP only has an effect in user or server
  99.    level security.
  100.    */
  101. #ifndef GUEST_SESSSETUP
  102. #define GUEST_SESSSETUP 0
  103. #endif
  104.  
  105. /* the default pager to use for the client "more" command. Users can
  106.    override this with the PAGER environment variable */
  107. #ifndef PAGER
  108. #define PAGER "more"
  109. #endif
  110.  
  111. /* the size of the uid cache used to reduce valid user checks */
  112. #define UID_CACHE_SIZE 4
  113.  
  114. /* the following control timings of various actions. Don't change 
  115.    them unless you know what you are doing. These are all in seconds */
  116. #define DEFAULT_SMBD_TIMEOUT (60*60*24*7)
  117. #define SMBD_RELOAD_CHECK (60)
  118. #define IDLE_CLOSED_TIMEOUT (60)
  119. #define DPTR_IDLE_TIMEOUT (120)
  120. #define SMBD_SELECT_LOOP (10)
  121. #define NMBD_SELECT_LOOP (10)
  122. #define BROWSE_INTERVAL (60)
  123. #define REGISTRATION_INTERVAL (10*60)
  124. #define NMBD_INETD_TIMEOUT (120)
  125. #define NMBD_MAX_TTL (24*60*60)
  126. #define LPQ_LOCK_TIMEOUT (5)
  127.  
  128. /* the following are in milliseconds */
  129. #define LOCK_RETRY_TIMEOUT (100)
  130.  
  131. /* do you want to dump core (carefully!) when an internal error is
  132.    encountered? Samba will be careful to make the core file only
  133.    accessible to root */
  134. #define DUMP_CORE 1
  135.  
  136. /* what is the longest significant password available on your system? 
  137.  Knowing this speeds up password searches a lot */
  138. #ifndef PASSWORD_LENGTH
  139. #define PASSWORD_LENGTH 8
  140. #endif
  141.  
  142. #define SMB_ALIGNMENT 1
  143.  
  144.  
  145. /* shall we support browse requests via a FIFO to nmbd? */
  146. #define ENABLE_FIFO 1
  147.  
  148. /* keep the password server open, this uses up a aocket, but is needed
  149.    by many apps */
  150. #define KEEP_PASSWORD_SERVER_OPEN 1
  151.  
  152. /* how long to wait for a socket connect to happen */
  153. #define LONG_CONNECT_TIMEOUT 30
  154. #define SHORT_CONNECT_TIMEOUT 5
  155.  
  156.  
  157. /* the directory to sit in when idle */
  158. /* #define IDLE_DIR "/" */
  159.  
  160. #endif
  161.