rules.go 209 B

1234567891011
  1. package config
  2. import (
  3. "github.com/v2ray/v2ray-core/app/point/config"
  4. v2net "github.com/v2ray/v2ray-core/common/net"
  5. )
  6. type Rule interface {
  7. Tag() *config.DetourTag
  8. Apply(dest v2net.Destination) bool
  9. }