src/acc.h

/* [<][>][^][v][top]
[bottom][index][help] */

DEFINITIONS

This source file includes following functions.

/* $Id: acc.h,v 1.2 1999/12/18 18:13:18 proff Exp $ 
 * $Copyright$
 */

#ifndef ACC_H
#define ACC_H

struct filter_chain /* linked list of filter chains */
{
        struct filter_chain *next;
        struct filter *filter;
        char *name;
};

struct authent
{
        struct authent *next;
        char *host;
        char *group;
        char *users; /* comma only separated list of users */
        struct authinfo *authinfo;
        struct filter_chain *filter_chain;
        unsigned int read:1;
        unsigned int post:1;
        unsigned int deny:1;
        unsigned int strip:1;
        unsigned int auth:1;
        unsigned int filter:1;
        unsigned int censor:1;
        unsigned int ihave:1;
        unsigned int quick:1;
        unsigned int nocem:1;
};

#include "acc.ext"

#endif /* ACC_H */

/* [<][>][^][v][top][bottom][index][help] */