All Downloads are FREE. Search and download functionalities are using the official Maven repository.

v2ray.com.core.app.dns.config.proto Maven / Gradle / Ivy

The newest version!
syntax = "proto3";

package v2ray.core.app.dns;
option csharp_namespace = "V2Ray.Core.App.Dns";
option go_package = "dns";
option java_package = "com.v2ray.core.app.dns";
option java_multiple_files = true;

import "v2ray.com/core/common/net/address.proto";
import "v2ray.com/core/common/net/destination.proto";

message Config {
  // Nameservers used by this DNS. Only traditional UDP servers are support at the moment.
  // A special value 'localhost' as a domain address can be set to use DNS on local system.
  repeated v2ray.core.common.net.Endpoint NameServers = 1;

  // Static hosts. Domain to IP.
  map Hosts = 2;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy