1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-20 04:04:15 -04:00
v2fly/shell/point/inbound_detour.go

12 lines
180 B
Go
Raw Normal View History

2015-10-31 19:11:41 -04:00
package point
import (
"github.com/v2ray/v2ray-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
}