mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-31 01:39:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			180 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			180 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package point
 | |
| 
 | |
| import (
 | |
| 	"github.com/v2ray/v2ray-core/proxy"
 | |
| )
 | |
| 
 | |
| type InboundDetourHandler interface {
 | |
| 	Start() error
 | |
| 	Close()
 | |
| 	GetConnectionHandler() (proxy.InboundHandler, int)
 | |
| }
 | 
