windows-cellservdb-lookup-20090525
[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      98304
14 #define CM_CONFIGDEFAULT_BLOCKSIZE      4096
15 #define CM_CONFIGDEFAULT_ASYNCSTORESIZE 131072  /* 128K */
16 #define CM_CONFIGDEFAULT_CELLS          1024
17 #define CM_CONFIGDEFAULT_STATS          10000
18 #define CM_CONFIGDEFAULT_CHUNKSIZE      18      /* 256KB */
19 #define CM_CONFIGDEFAULT_DAEMONS        4
20 #define CM_CONFIGDEFAULT_SVTHREADS      25
21 #define CM_CONFIGDEFAULT_TRACEBUFSIZE   10000
22
23 #ifndef __CM_CONFIG_INTERFACES_ONLY__
24
25 #include <stdio.h>
26
27 typedef FILE cm_configFile_t;
28
29 typedef long (cm_configProc_t)(void *rockp, struct sockaddr_in *addrp, char *namep, unsigned short);
30
31 typedef long (cm_enumCellRegistryProc_t)(void *rockp, char *cellNamep);
32
33 extern long cm_GetRootCellName(char *namep);
34
35 extern long cm_SearchCellFile(char *cellNamep, char *newCellNamep,
36                               cm_configProc_t *procp, void *rockp);
37
38 extern long cm_SearchCellFileEx(char *cellNamep, char *newCellNamep,
39                                 char *linkedNamep,
40                                 cm_configProc_t *procp, void *rockp);
41
42 extern long cm_SearchCellRegistry(afs_uint32 client, 
43                                   char *cellNamep, char *newCellNamep,
44                                   char *linkedNamep,
45                                   cm_configProc_t *procp, void *rockp);
46
47 extern long cm_EnumerateCellRegistry(afs_uint32 client, 
48                                      cm_enumCellRegistryProc_t *procp, 
49                                      void *rockp);
50
51 extern long cm_SearchCellByDNS(char *cellNamep, char *newCellNamep, int *ttl,
52                                cm_configProc_t *procp, void *rockp);
53
54 extern long cm_WriteConfigString(char *labelp, char *valuep);
55
56 extern long cm_WriteConfigInt(char *labelp, long value);
57
58 extern cm_configFile_t *cm_OpenCellFile(void);
59
60 extern long cm_AppendPrunedCellList(cm_configFile_t *filep, char *cellNamep);
61
62 extern long cm_AppendNewCell(cm_configFile_t *filep, char *cellNamep);
63
64 extern long cm_AppendNewCellLine(cm_configFile_t *filep, char *linep);
65
66 extern long cm_CloseCellFile(cm_configFile_t *filep);
67
68 extern long cm_GetCellServDB(char *cellNamep, afs_uint32 len);
69
70 extern void cm_GetConfigDir(char *dir, afs_uint32 len);
71
72 /* TODO: these should be pulled in from dirpath.h */
73 #define AFS_THISCELL "ThisCell"
74 #define AFS_CELLSERVDB_UNIX "CellServDB"
75 #define AFS_CELLSERVDB AFS_CELLSERVDB_UNIX
76
77 #endif /* __CM_CONFIG_INTERFACES_ONLY__ */
78
79 #endif /* __CONFIG_H_ENV_ */