v2ray-core/shell/point/inbound_detour.go

12 lines
167 B
Go

package point
import (
"v2ray.com/core/proxy"
)
type InboundDetourHandler interface {
Start() error
Close()
GetConnectionHandler() (proxy.InboundHandler, int)
}