mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
14 lines
448 B
Go
14 lines
448 B
Go
package openrtb
|
|
|
|
// 5.23 IP Location Services
|
|
//
|
|
// Services and/or vendors used for resolving IP addresses to geolocations.
|
|
type IPLocationService int8
|
|
|
|
const (
|
|
IPLocationServiceIP2location IPLocationService = 1 // ip2location
|
|
IPLocationServiceNeustar IPLocationService = 2 // Neustar (Quova)
|
|
IPLocationServiceMaxMind IPLocationService = 3 // MaxMind
|
|
IPLocationServiceNetAcuity IPLocationService = 4 // NetAcuity (Digital Element)
|
|
)
|