inbound_detour.go 180 B

1234567891011
  1. package point
  2. import (
  3. "github.com/v2ray/v2ray-core/proxy"
  4. )
  5. type InboundDetourHandler interface {
  6. Start() error
  7. Close()
  8. GetConnectionHandler() (proxy.InboundHandler, int)
  9. }