mirror of https://github.com/v2ray/v2ray-core
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)
|
||
|
}
|