WAF参数中增加“请求来源”

This commit is contained in:
GoEdgeLab
2023-12-24 10:03:01 +08:00
parent 112087a76b
commit 3136f986d7
3 changed files with 14 additions and 1 deletions

View File

@@ -19,6 +19,9 @@ func TestRuleCheckpoint_Markdown(t *testing.T) {
row += "* 名称:" + def.Name + "\n"
row += "* 代号:`${" + def.Prefix + "}`\n"
row += "* 描述:" + def.Description + "\n"
if len(def.Version) > 0 {
row += "* 版本v" + def.Version + "\n"
}
result = append(result, row)
}