mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 16:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			270 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			270 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 GoEdge goedge.cdn@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
 | 
						|
}
 |