public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* Checking for Bogons
@ 2021-10-23 10:18 Gisle Vanem
  2021-10-23 10:40 ` Peter Müller
  0 siblings, 1 reply; 4+ messages in thread
From: Gisle Vanem @ 2021-10-23 10:18 UTC (permalink / raw)
  To: location

[-- Attachment #1: Type: text/plain, Size: 738 bytes --]

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-23 15:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-23 10:18 Checking for Bogons Gisle Vanem
2021-10-23 10:40 ` Peter Müller
2021-10-23 11:40   ` Gisle Vanem
2021-10-23 15:55     ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox