2021-09-28 12:42:01 +02:00
|
|
|
// Package dnsx contains the dnsx model.
|
|
|
|
package dnsx
|
2021-09-27 23:09:41 +02:00
|
|
|
|
|
|
|
// HTTPSSvc is an HTTPSSvc reply.
|
|
|
|
type HTTPSSvc struct {
|
|
|
|
// ALPN contains the ALPNs inside the HTTPS reply
|
|
|
|
ALPN []string
|
|
|
|
|
|
|
|
// IPv4 contains the IPv4 hints.
|
|
|
|
IPv4 []string
|
|
|
|
|
|
|
|
// IPv6 contains the IPv6 hints.
|
|
|
|
IPv6 []string
|
|
|
|
}
|