b1ebdd50cb
These are the start of a lot of work to clean up the FreeBSD eBones code. these changes include, but are not limited to: - Create prototypes for all the library routines - Make all the libraries compile clean with -Wall set - Fix numerous small bugs shown up in the above process - Prepare the code for libdes's removal to secure/ - add register, registerd and make_keypair to the make Lots more will follow in days to come. OK'ed by: rgrimes
37 lines
901 B
C
37 lines
901 B
C
/*
|
|
* Copyright 1987, 1988 by the Massachusetts Institute of Technology.
|
|
* For copying and distribution information, please see the file
|
|
* <Copyright.MIT>.
|
|
*
|
|
* Include file for the Kerberos Key Distribution Center.
|
|
*
|
|
* from: kdc.h,v 4.1 89/01/24 17:54:04 jon Exp $
|
|
* $Id: kdc.h,v 1.3 1995/07/18 16:36:29 mark Exp $
|
|
*/
|
|
|
|
#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 MKEYFILE "/etc/kerberosIV/master_key"
|
|
#define K_LOGFIL "/var/log/kpropd.log"
|
|
#define KS_LOGFIL "/var/log/kerberos_slave.log"
|
|
#define KRB_ACL "/etc/kerberosIV/kerberos.acl"
|
|
#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 */
|
|
|