mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
13 lines
512 B
Go
13 lines
512 B
Go
package adcom1
|
|
|
|
// IPLocationService represents services and/or vendors used for resolving IP addresses to geolocations.
|
|
type IPLocationService int8
|
|
|
|
// Services and/or vendors used for resolving IP addresses to geolocations.
|
|
const (
|
|
LocationServiceIP2Location IPLocationService = 1 // ip2location
|
|
LocationServiceNeustar IPLocationService = 2 // Neustar (Quova)
|
|
LocationServiceMaxMind IPLocationService = 3 // MaxMind
|
|
LocationServiceNetAcuity IPLocationService = 4 // NetAcuity (Digital Element)
|
|
)
|