Files
openrtb/adcom1/user_agent_source.go
T
2022-05-12 23:33:01 -04:00

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)
)