智能DNS初步支持搜索引擎线路

This commit is contained in:
GoEdgeLab
2022-12-13 18:39:11 +08:00
parent bbbc546ec5
commit e333fd326a
15 changed files with 1975 additions and 403 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message ClientAgent {
int64 id = 1;
string name = 2;
string code = 3;
string description = 4;
int64 countIPs = 5;
}

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_client_agent.proto";
message ClientAgentIP {
int64 id = 1;
string ip = 2;
string ptr = 3;
ClientAgent clientAgent = 30;
}

View File

@@ -18,4 +18,5 @@ message NSCluster {
bool autoRemoteStart = 9;
string timeZone = 10;
bytes answerJSON = 11;
bool detectAgents = 14;
}