1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* This file is part of the Project Athena Zephyr Notification System.
* It contains site-specific definitions for use in the server.
*
* Created by: John T. Kohl
*
* $Id$
*
* Copyright (c) 1988 by the Massachusetts Institute of Technology.
* For copying and distribution information, see the file
* "mit-copyright.h".
*/
#ifndef __ZSRV_CONF_H__
#define __ZSRV_CONF_H__
#include <zephyr/mit-copyright.h>
/* Path names are relative to CONFDIR, except for the class registry and
ticket files. */
#define SERVER_LIST_FILE "server.list"
#define REALM_LIST_FILE "realm.list"
#ifdef HAVE_KRB5
#define ZEPHYR_KEYTAB "krb5.keytab"
#define ZEPHYR_TK5FILE "/var/run/zephyrd.tkt"
#endif
#ifdef HAVE_KRB4
#define ZEPHYR_SRVTAB "srvtab"
#define ZEPHYR_TKFILE "/var/run/zephyrd.tkt4"
#endif
#define ZEPHYR_ACL_DIR "acl/"
#define ZEPHYR_CLASS_REGISTRY "class-registry.acl"
#define DEFAULT_SUBS_FILE "default.subscriptions"
#define REXMIT_TIMES { 2, 2, 4, 4, 8, 8, 16, 32, 64, 128, 256, 512, -1 }
#define NUM_REXMIT_TIMES 12
#define CLIENT_GIVEUP_MIN 512
/* hostmanager defines */
#define LOSE_TIMO (60) /* time during which a losing host
must respond to a ping */
/* server-server defines */
#define TIMO_UP ((long) 60) /* timeout between up and tardy */
#define TIMO_TARDY ((long) 120) /* timeout btw tardy hellos */
#define TIMO_DEAD ((long)(15*60)) /* timeout between hello's for dead */
#define H_NUM_TARDY 5 /* num hello's before going dead
when tardy */
#define H_NUM_STARTING 2 /* num hello's before going dead
when starting */
#define SWEEP_INTERVAL 3600 /* Time between sweeps of the ticket
hash table */
#endif /* __ZSRV_CONF_H__ */
|