Files
EdgeNode/internal/nodes/http_request_uam.go

17 lines
270 B
Go
Raw Permalink Normal View History

2024-05-17 18:30:33 +08:00
// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved.
2022-03-29 21:24:57 +08:00
//go:build !plus
// +build !plus
package nodes
func (this *HTTPRequest) isUAMRequest() bool {
// stub
return false
}
2022-03-29 21:24:57 +08:00
// UAM
func (this *HTTPRequest) doUAM() (block bool) {
// stub
2022-03-29 21:24:57 +08:00
return false
}