diff --git a/server/fw_util_ipf.c b/server/fw_util_ipf.c index dbb4f499..41d2b177 100644 --- a/server/fw_util_ipf.c +++ b/server/fw_util_ipf.c @@ -153,7 +153,8 @@ process_spa_request(const fko_srv_options_t *opts, const acc_stanza_t *acc, spa_ * firewall rules. */ void -check_firewall_rules(const fko_srv_options_t *opts) +check_firewall_rules(const fko_srv_options_t *opts, + const int chk_rm_all) { /* TODO: Implement me */ diff --git a/server/fw_util_ipfw.c b/server/fw_util_ipfw.c index 1cde108d..9f49aea9 100644 --- a/server/fw_util_ipfw.c +++ b/server/fw_util_ipfw.c @@ -601,7 +601,8 @@ process_spa_request(const fko_srv_options_t * const opts, * firewall rules. */ void -check_firewall_rules(const fko_srv_options_t * const opts) +check_firewall_rules(const fko_srv_options_t * const opts, + const int chk_rm_all) { char exp_str[12] = {0}; char rule_num_str[6] = {0}; diff --git a/server/fw_util_pf.c b/server/fw_util_pf.c index 1a47b975..d25e278c 100644 --- a/server/fw_util_pf.c +++ b/server/fw_util_pf.c @@ -336,7 +336,8 @@ process_spa_request(const fko_srv_options_t * const opts, * firewall rules. */ void -check_firewall_rules(const fko_srv_options_t * const opts) +check_firewall_rules(const fko_srv_options_t * const opts, + const int chk_rm_all) { char exp_str[12] = {0}; char anchor_rules_copy[STANDARD_CMD_OUT_BUFSIZE] = {0};