1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-18 08:49:54 -04:00

refactor shell

This commit is contained in:
Darien Raymond
2016-10-12 16:46:02 +02:00
parent 22ef12a456
commit c1f91567ad
11 changed files with 13 additions and 18 deletions

11
inbound_detour.go Normal file
View File

@@ -0,0 +1,11 @@
package core
import (
"v2ray.com/core/proxy"
)
type InboundDetourHandler interface {
Start() error
Close()
GetConnectionHandler() (proxy.InboundHandler, int)
}