mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 09:47:56 -05:00
12 lines
166 B
Go
12 lines
166 B
Go
package core
|
|
|
|
import (
|
|
"v2ray.com/core/proxy"
|
|
)
|
|
|
|
type InboundDetourHandler interface {
|
|
Start() error
|
|
Close()
|
|
GetConnectionHandler() (proxy.InboundHandler, int)
|
|
}
|