1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 05:44:28 -04:00
v2fly/proxy/dns/config.proto

22 lines
689 B
Protocol Buffer
Raw Normal View History

2019-02-06 04:21:04 -05:00
syntax = "proto3";
package v2ray.core.proxy.dns;
option csharp_namespace = "V2Ray.Core.Proxy.Dns";
option go_package = "github.com/v2fly/v2ray-core/v5/proxy/dns";
2019-02-06 04:21:04 -05:00
option java_package = "com.v2ray.core.proxy.dns";
option java_multiple_files = true;
import "common/net/destination.proto";
import "common/protoext/extensions.proto";
2019-02-12 16:34:43 -05:00
2019-02-06 04:21:04 -05:00
message Config {
// Server is the DNS server address. If specified, this address overrides the
// original one.
2019-02-12 16:34:43 -05:00
v2ray.core.common.net.Endpoint server = 1;
uint32 user_level = 2;
2019-02-06 04:21:04 -05:00
}
message SimplifiedConfig {
option (v2ray.core.common.protoext.message_opt).type = "outbound";
option (v2ray.core.common.protoext.message_opt).short_name = "dns";
}