1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-06 03:54:22 -04:00
v2fly/inbound_detour.go

12 lines
166 B
Go
Raw Normal View History

2016-10-12 10:46:02 -04:00
package core
2015-10-31 19:11:41 -04:00
import (
2016-08-20 14:55:45 -04:00
"v2ray.com/core/proxy"
2015-10-31 19:11:41 -04:00
)
type InboundDetourHandler interface {
Start() error
Close()
GetConnectionHandler() (proxy.InboundHandler, int)
2015-10-31 19:11:41 -04:00
}