Clash.Meta/rule/port.go

56 lines
865 B
Go
Raw Normal View History

2019-05-09 21:00:29 +08:00
package rules
import (
"strconv"
C "github.com/Dreamacro/clash/constant"
)
type Port struct {
adapter string
port string
isSource bool
}
func (p *Port) RuleType() C.RuleType {
if p.isSource {
return C.SrcPort
}
return C.DstPort
}
func (p *Port) Match(metadata *C.Metadata) bool {
2019-05-09 21:00:29 +08:00
if p.isSource {
return metadata.SrcPort == p.port
}
return metadata.DstPort == p.port
}
func (p *Port) Adapter() string {
return p.adapter
}
func (p *Port) Payload() string {
return p.port
}
func (p *Port) ShouldResolveIP() bool {
return false
}
func (p *Port) ShouldFindProcess() bool {
return false
}
func NewPort(port string, adapter string, isSource bool) (*Port, error) {
2021-11-08 00:31:08 +08:00
_, err := strconv.ParseUint(port, 10, 16)
2019-05-09 21:00:29 +08:00
if err != nil {
return nil, errPayload
2019-05-09 21:00:29 +08:00
}
return &Port{
adapter: adapter,
port: port,
isSource: isSource,
}, nil
2019-05-09 21:00:29 +08:00
}