diff options
Diffstat (limited to '')
-rw-r--r-- | src/acl.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -21,10 +21,11 @@ #ifndef TINYPROXY_ACL_H #define TINYPROXY_ACL_H -typedef enum { ACL_ALLOW, ACL_DENY } acl_access_t; +typedef enum +{ ACL_ALLOW, ACL_DENY } acl_access_t; -extern int insert_acl(char *location, acl_access_t access_type); -extern int check_acl(int fd, const char *ip_address, - const char *string_address); +extern int insert_acl (char *location, acl_access_t access_type); +extern int check_acl (int fd, const char *ip_address, + const char *string_address); #endif |