forked from nicolasff/webdis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacl.h
More file actions
39 lines (28 loc) · 615 Bytes
/
acl.h
File metadata and controls
39 lines (28 loc) · 615 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef ACL_H
#define ACL_H
#include <netinet/in.h>
struct evhttp_request;
struct cmd;
struct conf;
struct acl_commands {
unsigned int count;
char **commands;
};
struct acl {
/* CIDR subnet + mask */
struct {
int enabled;
in_addr_t subnet;
in_addr_t mask;
} cidr;
char *http_basic_auth;
/* commands that have been enabled or disabled */
struct acl_commands enabled;
struct acl_commands disabled;
struct acl *next;
};
int
acl_match_client(struct acl *a, struct evhttp_request *rq, in_addr_t *ip);
int
acl_allow_command(struct cmd *cmd, struct conf *cfg, struct evhttp_request *rq);
#endif