X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=main.c;h=47951e64349593071a2f3d6067c51cb1a3517a69;hp=3654c1503842929c50cafe8f84f97f404176c49a;hb=e791a6a39a4f06b33fedaefe03a42354f3a85b6d;hpb=24e1ba98e43d44ad7ba5780afd0b98e19ee14570 diff --git a/main.c b/main.c index 3654c15..47951e6 100644 --- a/main.c +++ b/main.c @@ -186,15 +186,13 @@ stop(struct fw3_state *state, bool complete, bool reload) if (!family_used(family) || !restore_pipe(family, true)) continue; - info("Removing %s rules ...", fw3_flag_names[family]); - for (table = FW3_TABLE_FILTER; table <= FW3_TABLE_RAW; table++) { if (!fw3_has_table(family == FW3_FAMILY_V6, fw3_flag_names[table])) continue; - info(" * %sing %s table", - complete ? "Flush" : "Clear", fw3_flag_names[table]); + info(" * %sing %s %s table", complete ? "Flush" : "Clear", + fw3_flag_names[family], fw3_flag_names[table]); fw3_pr("*%s\n", fw3_flag_names[table]); @@ -234,7 +232,7 @@ stop(struct fw3_state *state, bool complete, bool reload) if (complete && (ct = fopen("/proc/net/nf_conntrack", "w")) != NULL) { - info("Flushing conntrack table ..."); + info(" * Flushing conntrack table ..."); fwrite("f\n", 2, 1, ct); fclose(ct); @@ -279,14 +277,13 @@ start(struct fw3_state *state, bool reload) if (!family_loaded(state, family) || !restore_pipe(family, false)) continue; - info("Constructing %s rules ...", fw3_flag_names[family]); - for (table = FW3_TABLE_FILTER; table <= FW3_TABLE_RAW; table++) { if (!fw3_has_table(family == FW3_FAMILY_V6, fw3_flag_names[table])) continue; - info(" * Populating %s table", fw3_flag_names[table]); + info(" * Populating %s %s table", + fw3_flag_names[family], fw3_flag_names[table]); fw3_pr("*%s\n", fw3_flag_names[table]); fw3_print_default_chains(table, family, state);