blob: 45f46bbf991626ecb13474d394ef2ff00f09cd60 (
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
33
34
35
36
37
38
39
40
|
/* $Id: krb_locl.h,v 1.1 1995/12/14 06:52:38 tholo Exp $ */
#ifndef __krb_locl_h
#define __krb_locl_h
#include <sys/cdefs.h>
#include "kerberosIV/site.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#include <time.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/file.h>
#include <errno.h>
#include <kerberosIV/krb.h>
#include <prot.h>
/* --- */
/* Globals! */
extern int krb_debug;
extern int krb_ap_req_debug;
/* Utils */
char *pkt_cipher __P((KTEXT));
int new_log __P((time_t, char *));
char *klog ();
char *month_sname __P((int));
int fgetst __P((FILE *, char *, int));
#endif /* __krb_locl_h */
|