bef5b87a8a
We started doing this in https://github.com/ooni/probe-cli/pull/432. This work is part of https://github.com/ooni/probe/issues/1733.
12 lines
265 B
Go
12 lines
265 B
Go
package resolver
|
|
|
|
import (
|
|
"github.com/ooni/probe-cli/v3/internal/netxlite"
|
|
)
|
|
|
|
// IDNAResolver is to support resolving Internationalized Domain Names.
|
|
// See RFC3492 for more information.
|
|
type IDNAResolver = netxlite.ResolverIDNA
|
|
|
|
var _ Resolver = &IDNAResolver{}
|