Change: remove InboundPort because already have OriginDst

This commit is contained in:
Dreamacro
2023-08-04 20:51:57 +08:00
parent c0e51f8556
commit 7c89301586
5 changed files with 1 additions and 5 deletions

View File

@ -41,7 +41,7 @@ func (p *Port) Match(metadata *C.Metadata) bool {
case PortTypeDest:
return metadata.DstPort == p.port
case PortTypeInbound:
return metadata.InboundPort == uint16(p.port)
return metadata.OriginDst.Port() == uint16(p.port)
default:
panic(fmt.Errorf("unknown port type: %v", p.portType))
}