实现基本的匹配条件管理

This commit is contained in:
GoEdgeLab
2020-09-29 11:28:52 +08:00
parent b6ef74d2fb
commit 3af4c6052c
7 changed files with 85 additions and 78 deletions

View File

@@ -11,4 +11,5 @@ message HTTPGzip {
int32 level = 3;
SizeCapacity minLength = 4;
SizeCapacity maxLength = 5;
bytes CondGroupsJSON = 6;
}

View File

@@ -22,6 +22,7 @@ message CreateHTTPGzipRequest {
int32 level = 1;
SizeCapacity minLength = 2;
SizeCapacity maxLength = 3;
bytes condGroupsJSON = 4;
}
message CreateHTTPGzipResponse {
@@ -43,4 +44,5 @@ message UpdateHTTPGzipRequest {
int32 level = 2;
SizeCapacity minLength = 3;
SizeCapacity maxLength = 4;
bytes condGroupsJSON = 5;
}