From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gisle Vanem To: location@lists.ipfire.org Subject: Checking for Bogons Date: Sat, 23 Oct 2021 12:18:01 +0200 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5067512110126142125==" List-Id: --===============5067512110126142125== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Hello list. I want to check if the result from 'loc_database_lookup()' is on a "Bogon network". My C-code would go something like: struct loc_network *net; struct in6_addr addr; ... int rc = loc_database_lookup (libloc.db, &addr, &net); if (rc == 0 && net) { ... if (loc_network_has_flag(net, LOC_NETWORK_FLAG_BOGON)) ... } ----------------- This flag 'LOC_NETWORK_FLAG_BOGON' does not exist (yet). Would it be possible? And is there any relationship between a "Bogon" and 'LOC_NETWORK_FLAG_DROP' flag? So I guess I have to do what: Database_iterate_all(self, LOC_DB_ENUMERATE_BOGONS, family, 0); does and create my own list to check against (?) And BTW, I'm on Windows-10. -- --gv --===============5067512110126142125==--