inbound_detour.go 166 B

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