addrfilt: explicitly handle unexpected addresses

This commit is contained in:
Miroslav Lichvar 2020-02-18 08:53:11 +01:00
parent 794cbfbbb5
commit f7f3667bcb

View file

@ -247,6 +247,8 @@ set_subnet_(ADF_AuthTable table,
set_subnet(&table->base6, ip6, 4, 0, new_state, delete_children) == ADF_SUCCESS) set_subnet(&table->base6, ip6, 4, 0, new_state, delete_children) == ADF_SUCCESS)
return ADF_SUCCESS; return ADF_SUCCESS;
break; break;
default:
break;
} }
return ADF_BADSUBNET; return ADF_BADSUBNET;
@ -359,10 +361,10 @@ ADF_IsAllowed(ADF_AuthTable table,
case IPADDR_INET6: case IPADDR_INET6:
split_ip6(ip_addr, ip6); split_ip6(ip_addr, ip6);
return check_ip_in_node(&table->base6, ip6); return check_ip_in_node(&table->base6, ip6);
} default:
return 0; return 0;
} }
}
/* ================================================== */ /* ================================================== */