config.go 155 B

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