2963ff227d04ca4350c8c0aa33761dba67c0cf3e
[openafs.git] / src / WINNT / afsd / cm_config.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #ifndef __CONFIG_H_ENV_
11 #define __CONFIG_H_ENV_ 1
12
13 #define CM_CONFIGDEFAULT_CACHESIZE      20480
14 #define CM_CONFIGDEFAULT_BLOCKSIZE      4096
15 #define CM_CONFIGDEFAULT_STATS          1000
16 #define CM_CONFIGDEFAULT_CHUNKSIZE      15
17 #define CM_CONFIGDEFAULT_DAEMONS        2
18 #define CM_CONFIGDEFAULT_SVTHREADS      4
19 #define CM_CONFIGDEFAULT_TRACEBUFSIZE   5000
20
21 #ifndef __CM_CONFIG_INTERFACES_ONLY__
22
23 #include <stdio.h>
24
25 extern char AFSConfigKeyName[];
26
27 typedef FILE cm_configFile_t;
28
29 typedef long (cm_configProc_t)(void *rockp, struct sockaddr_in *addrp, char *namep);
30
31 extern long cm_GetRootCellName(char *namep);
32
33 extern long cm_SearchCellFile(char *cellNamep, char *newCellNamep,
34         cm_configProc_t *procp, void *rockp);
35
36 extern long cm_WriteConfigString(char *labelp, char *valuep);
37
38 extern long cm_WriteConfigInt(char *labelp, long value);
39
40 extern cm_configFile_t *cm_OpenCellFile(void);
41
42 extern long cm_AppendPrunedCellList(cm_configFile_t *filep, char *cellNamep);
43
44 extern long cm_AppendNewCell(cm_configFile_t *filep, char *cellNamep);
45
46 extern long cm_AppendNewCellLine(cm_configFile_t *filep, char *linep);
47
48 extern long cm_CloseCellFile(cm_configFile_t *filep);
49
50 #endif /* __CM_CONFIG_INTERFACES_ONLY__ */
51
52 #endif /* __CONFIG_H_ENV_ */