public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCHv2] perl: Add function to perform AS number lookups.
@ 2019-10-02 17:10 Stefan Schantl
  0 siblings, 0 replies; only message in thread
From: Stefan Schantl @ 2019-10-02 17:10 UTC (permalink / raw)
  To: location

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

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 src/perl/Location.xs | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/src/perl/Location.xs b/src/perl/Location.xs
index cdbc7e7..b6c4dc5 100644
--- a/src/perl/Location.xs
+++ b/src/perl/Location.xs
@@ -113,6 +113,29 @@ lookup_country_code(db, address)
 	OUTPUT:
 		RETVAL
 
+SV*
+lookup_asn(db, address)
+	struct loc_database* db;
+	char* address;
+
+	CODE:
+		RETVAL = &PL_sv_undef;
+
+		// Lookup network
+		struct loc_network *network;
+		int err = loc_database_lookup_from_string(db, address, &network);
+		if (!err) {
+			// Extract the ASN
+			unsigned int as_number = loc_network_get_asn(network);
+			if (as_number > 0) {
+				RETVAL = newSViv(as_number);
+			}
+
+			loc_network_unref(network);
+		}
+	OUTPUT:
+		RETVAL
+
 void
 DESTROY(db)
 	struct loc_database* db;
-- 
2.20.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-10-02 17:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-02 17:10 [PATCHv2] perl: Add function to perform AS number lookups Stefan Schantl

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