mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
		
			464 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			464 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 
								 | 
							
								// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								package waf
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import "github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/firewallconfigs"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								type ActionCategory = string
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								const (
							 | 
						||
| 
								 | 
							
									ActionCategoryAllow  ActionCategory = firewallconfigs.HTTPFirewallActionCategoryAllow
							 | 
						||
| 
								 | 
							
									ActionCategoryBlock  ActionCategory = firewallconfigs.HTTPFirewallActionCategoryBlock
							 | 
						||
| 
								 | 
							
									ActionCategoryVerify ActionCategory = firewallconfigs.HTTPFirewallActionCategoryVerify
							 | 
						||
| 
								 | 
							
								)
							 |