Fix com_stat() for arguments greater than one.
[paraslash.git] / acl.h
diff --git a/acl.h b/acl.h
index 994fd6fe29c1d337158d24b8fb0058d65fb6d0ec..0e53ce0520b4687076c66e8addab95ffd2e70c90 100644 (file)
--- a/acl.h
+++ b/acl.h
@@ -1,8 +1,15 @@
+/*
+ * Copyright (C) 2008 Andre Noll <maan@systemlinux.org>
+ *
+ * Licensed under the GPL v2. For licencing details see COPYING.
+ */
 
-void init_acl(struct list_head *acl, char * const *acl_info, int num);
-int host_in_acl(int fd, struct list_head *acl);
-void add_acl_entry(struct list_head *acl, struct in_addr addr,
-               int netmask);
-void del_acl_entry(struct list_head *acl, struct in_addr addr,
-               int netmask);
-char *get_acl_contents(struct list_head *acl);
+/** \file acl.h Exported functions of acl.c. */
+
+void acl_init(struct list_head *acl, char * const *acl_info, int num);
+char *acl_get_contents(struct list_head *acl);
+int acl_check_access(int fd, struct list_head *acl, int default_deny);
+void acl_allow(struct in_addr addr, int netmask,
+               struct list_head *acl, int default_deny);
+void acl_deny(struct in_addr addr, int netmask,
+               struct list_head *acl, int default_deny);