Fix: finally working now

This commit is contained in:
2022-12-27 01:17:37 +08:00
parent ef9c4e765d
commit 4074719c8c
8 changed files with 14 additions and 8 deletions

View File

@ -28,6 +28,6 @@ function is_valid() {
if pub_is_invalid_net_length() then return false;
if is_bogon_prefix() then return false;
if is_bogon_asn() then return false;
if is_rpki_invalid() then return false;
if is_rpki_invalid() && source = RTS_BGP then return false;
return true;
}