winnt-port-cleanup-20010111
[openafs.git] / src / WINNT / afssvrmgr / svr_prop.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 SVR_PROP_H
11 #define SVR_PROP_H
12
13
14 /*
15  * DEFINITIONS ________________________________________________________________
16  *
17  */
18
19 typedef struct
20    {
21    LPIDENT lpiServer;
22    BOOL fEnableAuth;
23    } SVR_SETAUTH_PARAMS, *LPSVR_SETAUTH_PARAMS;
24
25
26 typedef struct
27    {
28    LPIDENT lpiServer;
29
30    BOOL fIDC_SVR_WARN_AGGFULL;
31    WORD wIDC_SVR_WARN_AGGFULL_PERCENT;
32
33    BOOL fIDC_SVR_WARN_SETFULL;
34    WORD wIDC_SVR_WARN_SETFULL_PERCENT;
35
36    BOOL fIDC_SVR_WARN_AGGALLOC;
37    BOOL fIDC_SVR_WARN_SVCSTOP;
38    BOOL fIDC_SVR_WARN_TIMEOUT;
39    BOOL fIDC_SVR_WARN_SETNOVLDB;
40    BOOL fIDC_SVR_WARN_SETNOSERV;
41    BOOL fIDC_SVR_WARN_AGGNOSERV;
42
43    BOOL fIDC_SVR_AUTOREFRESH;
44    size_t dwIDC_SVR_AUTOREFRESH_MINUTES;
45    } SVR_SCOUT_APPLY_PACKET, *LPSVR_SCOUT_APPLY_PACKET;
46
47
48 /*
49  * PROTOTYPES _________________________________________________________________
50  *
51  */
52
53 void Server_ShowProperties (LPIDENT lpiServer, size_t nAlerts);
54
55
56 #endif
57