config.go 168 B

123456789101112
  1. package dns
  2. import (
  3. "net"
  4. v2net "github.com/v2ray/v2ray-core/common/net"
  5. )
  6. type Config struct {
  7. Hosts map[string]net.IP
  8. NameServers []v2net.Destination
  9. }