mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
13 lines
545 B
Go
13 lines
545 B
Go
package adcom1
|
|
|
|
// UserAgentSource represents the source of a user agent.
|
|
type UserAgentSource int8
|
|
|
|
// Options for the user agent source.
|
|
const (
|
|
UASourceUnknown UserAgentSource = 0 // Unspecified/unknown
|
|
UASourceLowEntropy UserAgentSource = 1 // User-Agent Client Hints (only low-entropy headers were available)
|
|
UASourceHighEntropy UserAgentSource = 2 // User-Agent Client Hints (with high-entropy headers available)
|
|
UASourceParsed UserAgentSource = 3 // Parsed from User-Agent header (the same string carried by the ua field)
|
|
)
|