修复5秒盾验证可能受WAF影响不能工作的问题

This commit is contained in:
GoEdgeLab
2024-01-16 12:03:06 +08:00
parent efe7234ff5
commit dac89cd3a8
2 changed files with 26 additions and 12 deletions

View File

@@ -4,7 +4,13 @@
package nodes
// UAM
func (this *HTTPRequest) doUAM() (block bool) {
func (this *HTTPRequest) isUAMRequest() bool {
// stub
return false
}
// UAM
func (this *HTTPRequest) doUAM() (block bool) {
// stub
return false
}