blob: 8c060b517e327337616b10b0036f5c5ba00177b7 [file] [log] [blame]
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001/*
2 * User authentication & authorization.
3 *
4 * Copyright 2010 Krzysztof Piotr Oledzki <ole@ans.pl>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#ifndef _PROTO_AUTH_H
14#define _PROTO_AUTH_H
15
16#include <common/config.h>
17#include <types/auth.h>
18
19extern struct userlist *userlist;
20
21struct userlist *auth_find_userlist(char *name);
22unsigned int auth_resolve_groups(struct userlist *l, char *groups);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +010023void userlist_free(struct userlist *ul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +010024int acl_match_auth(struct acl_test *test, struct acl_pattern *pattern);
25
26#endif /* _PROTO_AUTH_H */
27
28/*
29 * Local variables:
30 * c-indent-level: 8
31 * c-basic-offset: 8
32 * End:
33 */
34