1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/inbound_detour.go

12 lines
166 B
Go
Raw Normal View History

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