blob: a3afedcc48edea6d35ce4bc436cb9e76f5be7b4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* $Source$
* $Author$
* $Id$
*
* Copyright 1990 by the Massachusetts Institute of Technology.
*
* For copying and distribution information, please see the file
* <krb5/mit-copyright.h>.
*
* Declarations for policy.c
*/
#include <krb5/copyright.h>
#ifndef __KRB5_KDC_POLICY__
#define __KRB5_KDC_POLICY__
extern krb5_boolean against_postdate_policy PROTOTYPE((krb5_timestamp));
extern krb5_boolean against_flag_policy_as PROTOTYPE((krb5_as_req *));
extern krb5_boolean against_flag_policy_tgs PROTOTYPE((krb5_tgs_req *));
#endif /* __KRB5_KDC_POLICY__ */
|