mirror of https://github.com/v2ray/v2ray-core
13 lines
334 B
Protocol Buffer
13 lines
334 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
package com.v2ray.core.app.dns;
|
||
|
option go_package = "dns";
|
||
|
|
||
|
import "v2ray.com/core/common/net/address.proto";
|
||
|
import "v2ray.com/core/common/net/destination.proto";
|
||
|
|
||
|
message Config {
|
||
|
repeated com.v2ray.core.common.net.DestinationPB NameServers = 1;
|
||
|
map<string, com.v2ray.core.common.net.AddressPB> Hosts = 2;
|
||
|
}
|