mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
17 lines
275 B
Go
17 lines
275 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
//go:build !plus
|
|
// +build !plus
|
|
|
|
package nodes
|
|
|
|
func (this *HTTPRequest) isUAMRequest() bool {
|
|
// stub
|
|
return false
|
|
}
|
|
|
|
// UAM
|
|
func (this *HTTPRequest) doUAM() (block bool) {
|
|
// stub
|
|
return false
|
|
}
|