mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-12-28 08:26:35 +08:00
WAF策略中增加验证码相关定制设置
This commit is contained in:
@@ -7,6 +7,17 @@ import (
|
||||
)
|
||||
|
||||
type BaseAction struct {
|
||||
currentActionId int64
|
||||
}
|
||||
|
||||
// ActionId 读取ActionId
|
||||
func (this *BaseAction) ActionId() int64 {
|
||||
return this.currentActionId
|
||||
}
|
||||
|
||||
// SetActionId 设置Id
|
||||
func (this *BaseAction) SetActionId(actionId int64) {
|
||||
this.currentActionId = actionId
|
||||
}
|
||||
|
||||
// CloseConn 关闭连接
|
||||
|
||||
Reference in New Issue
Block a user