blob: 03c924c717de1135293c65ff3b9b563330ef2e12 (
plain)
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
|
/* $Id: kdc.h,v 1.1 1995/12/14 06:52:34 tholo Exp $ */
/*-
* Copyright 1987, 1988 by the Massachusetts Institute of Technology.
*
* For copying and distribution information, please see the file
* <mit-copyright.h>.
*
* Include file for the Kerberos Key Distribution Center.
*/
#ifndef KDC_DEFS
#define KDC_DEFS
#define S_AD_SZ sizeof(struct sockaddr_in)
#define max(a,b) (a>b ? a : b)
#define min(a,b) (a<b ? a : b)
#define TRUE 1
#define FALSE 0
#define KRB_PROG "./kerberos"
#define ONE_MINUTE 60
#define FIVE_MINUTES (5 * ONE_MINUTE)
#define ONE_HOUR (60 * ONE_MINUTE)
#define ONE_DAY (24 * ONE_HOUR)
#define THREE_DAYS (3 * ONE_DAY)
#endif /* KDC_DEFS */
|