2015-11-22 12:05:21 +01:00
|
|
|
package config
|
2015-11-21 21:43:40 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Rule interface {
|
2015-11-30 15:14:38 +00:00
|
|
|
Tag() string
|
2015-11-21 21:43:40 +01:00
|
|
|
Apply(dest v2net.Destination) bool
|
|
|
|
}
|