source: trunk/athena/bin/discuss/include/discuss/acl.h @ 12350

Revision 12350, 382 bytes checked in by ghudson, 26 years ago (diff)
Some RCS ID cleanup: delete $Log$ and replace other RCS keywords with $Id$.
Line 
1/*
2 *      $Id: acl.h,v 1.6 1999-01-22 23:09:49 ghudson Exp $
3 *
4 *      Copyright (C) 1986 by the Student Information Processing Board
5 *
6 */
7
8typedef struct dsc_acl_entry {
9        char *principal;        /* The principal */
10        char *modes;            /* The allowed modes */
11} dsc_acl_entry;
12
13typedef struct dsc_acl {
14        int acl_length;
15        dsc_acl_entry *acl_entries; /* Members of list (gets realloc'ed) */
16} dsc_acl;
Note: See TracBrowser for help on using the repository browser.