summaryrefslogtreecommitdiff
path: root/server/access.h
blob: df1201d54dec2c2e1fc338737a0bc4d62b3797e6 (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
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * This file is part of the Project Athena Zephyr Notification System.
 *
 * It contains declarations for use in the server, relating to access
 * control.
 *
 * Created by Ken Raeburn.
 *
 * $Source$
 * $Author$
 * $Id$
 *
 * Copyright (c) 1990 by the Massachusetts Institute of Technology.
 * For copying and distribution information, see the file
 * "mit-copyright.h".
 */

#include <zephyr/mit-copyright.h>

#include <zephyr/acl.h>
#include "zstring.h"
#include "unix.h"

typedef	enum _ZAccess_t {
	TRANSMIT,			/* use transmission acl */
	SUBSCRIBE,			/* use subscription acl */
	INSTWILD,			/* use instance wildcard acl */
	INSTUID				/* use instance UID identity acl */
} ZAccess_t;

typedef struct _ZAcl_t {
  char *acl_filename;
  int	acl_types;	/* Flag field indcating which acls
			   are present.  Used ONLY in access.c */
} ZAcl_t;

#ifdef __STDC__
# define        P(s) s
#else
# define P(s) ()
#endif

/* found in access.c */
extern void access_init P((void)), access_reinit P((void));

/* found in acl_files.c */
extern int acl_load P((char *));

#undef P

/* external data relevant */
extern int zdebug;