优化证书加载速度

This commit is contained in:
刘祥超
2022-12-31 17:22:10 +08:00
parent bd5a1c5eda
commit 37e045876e
3 changed files with 639 additions and 627 deletions

View File

@@ -18536,7 +18536,7 @@
}, },
{ {
"name": "ListEnabledServersMatchRequest", "name": "ListEnabledServersMatchRequest",
"code": "message ListEnabledServersMatchRequest {\n\tint64 offset = 1;\n\tint64 size = 2;\n\tint64 serverGroupId = 3; // 服务分组ID如果为-1表示查找未分组\n\tstring keyword = 4;\n\tint64 userId = 5;\n\tint64 nodeClusterId = 6;\n\tint32 auditingFlag = 7;\n\tstring protocolFamily = 8;\n\tbool trafficOutAsc = 9;\n\tbool trafficOutDesc = 10;\n\tbool ignoreServerNames = 11;\n}", "code": "message ListEnabledServersMatchRequest {\n\tint64 offset = 1;\n\tint64 size = 2;\n\tint64 serverGroupId = 3; // 服务分组ID如果为-1表示查找未分组\n\tstring keyword = 4;\n\tint64 userId = 5;\n\tint64 nodeClusterId = 6;\n\tint32 auditingFlag = 7;\n\tstring protocolFamily = 8;\n\tbool trafficOutAsc = 9;\n\tbool trafficOutDesc = 10;\n\tbool ignoreServerNames = 11; // 忽略域名\n\tbool ignoreSSLCerts = 12; // 忽略证书\n}",
"doc": "列出单页服务" "doc": "列出单页服务"
}, },
{ {

File diff suppressed because it is too large Load Diff

View File

@@ -340,7 +340,8 @@ message ListEnabledServersMatchRequest {
string protocolFamily = 8; string protocolFamily = 8;
bool trafficOutAsc = 9; bool trafficOutAsc = 9;
bool trafficOutDesc = 10; bool trafficOutDesc = 10;
bool ignoreServerNames = 11; bool ignoreServerNames = 11; // 忽略域名
bool ignoreSSLCerts = 12; // 忽略证书
} }
message ListEnabledServersMatchResponse { message ListEnabledServersMatchResponse {