From 62729cc889509c440c75cb7fb42a4dbf94e68b7d Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 30 Aug 2022 13:29:40 +0200 Subject: [PATCH] Add new geoip metadata fields --- intel/geoip/location.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/intel/geoip/location.go b/intel/geoip/location.go index 91fb5164..c202a1f0 100644 --- a/intel/geoip/location.go +++ b/intel/geoip/location.go @@ -26,6 +26,9 @@ type Location struct { Coordinates Coordinates `maxminddb:"location"` AutonomousSystemNumber uint `maxminddb:"autonomous_system_number"` AutonomousSystemOrganization string `maxminddb:"autonomous_system_organization"` + IsAnycast bool `maxminddb:"is_anycast"` + IsSatelliteProvider bool `maxminddb:"is_satellite_provider"` + IsAnonymousProxy bool `maxminddb:"is_anonymous_proxy"` } // Coordinates holds geographic coordinates and their estimated accuracy.