show endpoints when route not found

This commit is contained in:
Florian Hoss 2022-05-02 16:31:48 +02:00
parent e012c82e16
commit a40b81b45d
5 changed files with 96 additions and 23 deletions

View file

@ -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);