summaryrefslogtreecommitdiff
path: root/geoip.h
diff options
context:
space:
mode:
authorVadim Kochan <vadim4j@gmail.com>2016-04-22 07:05:47 +0300
committerTobias Klauser <tklauser@distanz.ch>2016-04-22 09:43:50 +0200
commit6b7f7cc3ff9590caa858808fb47f0a82ad17f8fc (patch)
treefa0b8421d955cf6bee1fe6801a291ec6aa0c9380 /geoip.h
parentbb9eb3eaa03eecbf169489d3be83ddccf7b77815 (diff)
flowtop: Fix compilation error when build without geoip
Commit f61f39d ("geoip: Allow to get country 3-code") added new helpers without considering HAVE_GEOIP definition. Fixed by adding dummy functions for get 3-code country name in case if HAVE_GEOIP is not defined. Tested only by manualy disabling HAVE_GEOIP in config.h and geoip.c compilation in Config file. Fixes: f61f39d (geoip: Allow to get country 3-code) Reported-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: Vadim Kochan <vadim4j@gmail.com> Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'geoip.h')
-rw-r--r--geoip.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/geoip.h b/geoip.h
index 0cbd619..5d5c221 100644
--- a/geoip.h
+++ b/geoip.h
@@ -104,6 +104,16 @@ static inline const char *geoip6_as_name(struct sockaddr_in6 *sa)
{
return NULL;
}
+
+static inline const char *geoip4_country_code3_name(struct sockaddr_in *sa)
+{
+ return NULL;
+}
+
+static inline const char *geoip6_country_code3_name(struct sockaddr_in6 *sa)
+{
+ return NULL;
+}
#endif
#endif /* GEOIPH_H */