diff options
Diffstat (limited to 'eBones/include/rkinit.h')
-rw-r--r-- | eBones/include/rkinit.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/eBones/include/rkinit.h b/eBones/include/rkinit.h deleted file mode 100644 index faf1435..0000000 --- a/eBones/include/rkinit.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * $Id$ - * $Source: /home/ncvs/src/eBones/include/rkinit.h,v $ - * $Author: jkh $ - * - * Main header file for rkinit library users - */ - -#ifndef __RKINIT_H__ -#define __RKINIT_H__ - -#if !defined(lint) && !defined(SABER) && !defined(LOCORE) && defined(RCS_HDRS) -static char *rcsid_rkinit_h = "$Id$"; -#endif /* lint || SABER || LOCORE || RCS_HDRS */ - -#include <krb.h> -#include <sys/param.h> - -#ifdef __STDC__ -#define RK_PROTO(x) x -#else -#define RK_PROTO(x) () -#endif /* __STDC__ */ - -typedef struct { - char aname[ANAME_SZ + 1]; - char inst[INST_SZ + 1]; - char realm[REALM_SZ + 1]; - char sname[ANAME_SZ + 1]; - char sinst[INST_SZ + 1]; - char username[9]; /* max local name length + 1 */ - char tktfilename[MAXPATHLEN + 1]; - u_int lifetime; -} rkinit_info; - -#define RKINIT_SUCCESS 0 - -/* Function declarations */ -extern int rkinit RK_PROTO((char *, char *, rkinit_info *, int)); -extern char *rkinit_errmsg RK_PROTO((char *)); - -#endif /* __RKINIT_H__ */ |