1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/inbound_detour.go

12 lines
166 B
Go
Raw Normal View History

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