http_send.c: Add get_acl_contents() helper.
authorAndre Noll <maan@systemlinux.org>
Sun, 13 Jan 2008 15:13:27 +0000 (16:13 +0100)
committerAndre Noll <maan@systemlinux.org>
Sun, 13 Jan 2008 15:13:27 +0000 (16:13 +0100)
http_send.c

index e140f5f2c48b1cf806fbb4c70a0618df1d18290e..446cde4f72488c684696c13b41e91840df20fe0c 100644 (file)
@@ -436,18 +436,26 @@ static int http_com_allow(struct sender_command_data *scd)
        return 1;
 }
 
-static char *http_info(void)
+static char *get_acl_contents(struct list_head *acl)
 {
-       char *clnts = NULL, *ap = NULL, *ret;
        struct access_info *ai, *tmp_ai;
-       struct http_client *hc, *tmp_hc;
+       char *ret = NULL;
 
-       list_for_each_entry_safe(ai, tmp_ai, &http_acl, node) {
-               char *tmp = make_message("%s%s/%d ", ap? ap : "",
+       list_for_each_entry_safe(ai, tmp_ai, acl, node) {
+               char *tmp = make_message("%s%s/%d ", ret? ret : "",
                        inet_ntoa(ai->addr), ai->netmask);
-               free(ap);
-               ap = tmp;
+               free(ret);
+               ret = tmp;
        }
+       return ret;
+}
+
+static char *http_info(void)
+{
+       char *clnts = NULL, *ret;
+       struct http_client *hc, *tmp_hc;
+
+       char *acl_contents = get_acl_contents(&http_acl);
        list_for_each_entry_safe(hc, tmp_hc, &clients, node) {
                char *tmp = make_message("%s%s ", clnts? clnts : "", hc->name);
                free(clnts);
@@ -467,9 +475,9 @@ static char *http_info(void)
                conf.http_max_clients_arg > 0? "" : " (unlimited)",
                clnts? clnts : "(none)",
                conf.http_default_deny_given? "allow" : "deny",
-               ap? ap : "(none)"
+               acl_contents? acl_contents : "(none)"
        );
-       free(ap);
+       free(acl_contents);
        free(clnts);
        return ret;
 }