From: Stefan Schantl <stefan.schantl@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH] perl: Add get_continent_code()
Date: Wed, 11 Dec 2019 11:38:14 +0100 [thread overview]
Message-ID: <20191211103814.4130-1-stefan.schantl@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1023 bytes --]
This function allows to get the continent code by a given country code.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/perl/Location.xs | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/src/perl/Location.xs b/src/perl/Location.xs
index 02dff7d..5693744 100644
--- a/src/perl/Location.xs
+++ b/src/perl/Location.xs
@@ -166,6 +166,31 @@ lookup_asn(db, address)
OUTPUT:
RETVAL
+#
+# Get functions
+#
+SV*
+get_continent_code(db, ccode)
+ struct loc_database* db;
+ char* ccode;
+
+ CODE:
+ RETVAL = &PL_sv_undef;
+
+ // Lookup country code
+ struct loc_country *country;
+ int err = loc_database_get_country(db, &country, ccode);
+ if(!err) {
+ //Extract the continent code for the given country code.
+ const char* continent_code = loc_country_get_continent_code(country);
+ RETVAL = newSVpv(continent_code, strlen(continent_code));
+
+ loc_country_unref(country);
+ }
+
+ OUTPUT:
+ RETVAL
+
void
DESTROY(db)
struct loc_database* db;
--
2.20.1
reply other threads:[~2019-12-11 10:38 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191211103814.4130-1-stefan.schantl@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=location@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox