show endpoints when route not found
This commit is contained in:
parent
e012c82e16
commit
a40b81b45d
5 changed files with 96 additions and 23 deletions
|
@ -132,10 +132,10 @@ namespace fw
|
|||
return rule_ptr;
|
||||
}
|
||||
|
||||
void Storage::store_all_firewall_rules(firewall_rule_t *head)
|
||||
void Storage::store_all_firewall_rules(firewall_rule_t *rule_head)
|
||||
{
|
||||
#ifdef ESP32
|
||||
firewall_rule_t *temp = head;
|
||||
firewall_rule_t *temp = rule_head;
|
||||
while (temp != NULL)
|
||||
{
|
||||
store_firewall_rule(temp);
|
||||
|
|
Reference in a new issue