mirror of
				https://github.com/xjasonlyu/tun2socks.git
				synced 2025-10-31 12:06:37 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			132 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			132 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package filter
 | |
| 
 | |
| import (
 | |
| 	"io"
 | |
| )
 | |
| 
 | |
| // Filter is used for filtering IP packets comming from TUN.
 | |
| type Filter interface {
 | |
| 	io.Writer
 | |
| }
 | 
