4 * Copyright 1990,1991 by the Massachusetts Institute of Technology
5 * For distribution and copying rights, see the file "mit-copyright.h"
11 #include <afsconfig.h>
14 #include "linked_list.h"
22 void aklog
ARGS((int, char *[]));
25 * If we have krb.h, use the definition of CREDENTIAL from there. Otherwise,
26 * inline it. When we inline it we're using the inline definition from the
27 * Heimdal sources (since Heimdal doesn't include a definition of struct
28 * credentials with the sources
31 #ifdef HAVE_KERBEROSIV_KRB_H
32 #include <kerberosIV/krb.h>
33 #else /* HAVE_KERBEROSIV_KRB_H */
36 #define MAX_KTXT_LEN 1250
37 #endif /* MAX_KTXT_LEN */
52 #define u_int32_t uint32_t
57 unsigned char dat
[MAX_KTXT_LEN
];
62 char service
[ANAME_SZ
];
63 char instance
[INST_SZ
];
68 struct ktext ticket_st
;
74 typedef struct credentials CREDENTIALS
;
75 #endif /* ! HAVE_KERBEROSIV_KRB_H */
77 #endif /* __AKLOG_H__ */