mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 22:15:14 +00:00
0cba607400
We now have the following enums and all related functions return them and consume them : enum pat_match_res { PAT_NOMATCH = 0, /* sample didn't match any pattern */ PAT_MATCH = 3, /* sample matched at least one pattern */ }; enum acl_test_res { ACL_TEST_FAIL = 0, /* test failed */ ACL_TEST_MISS = 1, /* test may pass with more info */ ACL_TEST_PASS = 3, /* test passed */ }; enum acl_cond_pol { ACL_COND_NONE, /* no polarity set yet */ ACL_COND_IF, /* positive condition (after 'if') */ ACL_COND_UNLESS, /* negative condition (after 'unless') */ }; It's just in order to avoid doubts when reading some code.
36 lines
941 B
C
36 lines
941 B
C
/*
|
|
* User authentication & authorization.
|
|
*
|
|
* Copyright 2010 Krzysztof Piotr Oledzki <ole@ans.pl>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version
|
|
* 2 of the License, or (at your option) any later version.
|
|
*
|
|
*/
|
|
|
|
#ifndef _PROTO_AUTH_H
|
|
#define _PROTO_AUTH_H
|
|
|
|
#include <common/config.h>
|
|
#include <types/auth.h>
|
|
|
|
extern struct userlist *userlist;
|
|
|
|
struct userlist *auth_find_userlist(char *name);
|
|
unsigned int auth_resolve_groups(struct userlist *l, char *groups);
|
|
void userlist_free(struct userlist *ul);
|
|
enum pat_match_res pat_match_auth(struct sample *smp, struct pattern *pattern);
|
|
int check_user(struct userlist *ul, unsigned int group_mask, const char *user, const char *pass);
|
|
|
|
#endif /* _PROTO_AUTH_H */
|
|
|
|
/*
|
|
* Local variables:
|
|
* c-indent-level: 8
|
|
* c-basic-offset: 8
|
|
* End:
|
|
*/
|
|
|