26 lines
583 B
C
26 lines
583 B
C
/* This file is part of the Project Athena Zephyr Notification System.
|
|
* It contains definitions for the ACL library
|
|
*
|
|
* Created by: John T. Kohl
|
|
*
|
|
* $Id$
|
|
*
|
|
* Copyright (c) 1987 by the Massachusetts Institute of Technology.
|
|
* For copying and distribution information, see the file
|
|
* "mit-copyright.h".
|
|
*/
|
|
|
|
#include <zephyr/mit-copyright.h>
|
|
|
|
#ifndef __ACL__
|
|
#define __ACL__
|
|
|
|
int acl_add(char *, char *);
|
|
int acl_check(char *, char *, struct sockaddr_in *);
|
|
int acl_delete(char *, char *);
|
|
int acl_initialize(char *, int);
|
|
void acl_cache_reset(void);
|
|
|
|
#endif /* __ACL__ */
|
|
|