Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / crypto / kerberosIV / lib / kdb / kdc.h
1 /*
2  * $Id: kdc.h,v 1.8 1997/04/01 03:59:05 assar Exp $
3  * $FreeBSD: src/crypto/kerberosIV/lib/kdb/kdc.h,v 1.3 1999/09/19 21:56:06 markm Exp $
4  * $DragonFly: src/crypto/kerberosIV/lib/kdb/Attic/kdc.h,v 1.2 2003/06/17 04:24:36 dillon Exp $
5  *
6  * Copyright 1987, 1988 by the Massachusetts Institute of Technology. 
7  *
8  * For copying and distribution information, please see the file
9  * <mit-copyright.h>. 
10  *
11  * Include file for the Kerberos Key Distribution Center. 
12  */
13
14 #ifndef KDC_DEFS
15 #define KDC_DEFS
16
17 /* Don't depend on this! */
18 #ifndef MKEYFILE
19 #if 1
20 #define MKEYFILE        "/etc/kerberosIV/master-key"
21 #else
22 #define MKEYFILE        "/.k"
23 #endif
24 #endif
25 #ifndef K_LOGFIL
26 #define K_LOGFIL        "/var/log/kpropd.log"
27 #endif
28
29 #define ONE_MINUTE      60
30 #define FIVE_MINUTES    (5 * ONE_MINUTE)
31 #define ONE_HOUR        (60 * ONE_MINUTE)
32 #define ONE_DAY         (24 * ONE_HOUR)
33 #define THREE_DAYS      (3 * ONE_DAY)
34
35 #endif /* KDC_DEFS */
36