节点如果没有设置DNS线路就使用默认线路

This commit is contained in:
GoEdgeLab
2021-08-25 17:16:43 +08:00
parent 5e9d2fe714
commit 0345be307c
7 changed files with 701 additions and 578 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message DNSIssue {
string target = 1;
int64 targetId = 2;
string type = 3;
string description = 4;
map<string, string> params = 5;
bool mustFix = 6; // 是否必须修复
}