Feature: add inbounds for flexible binding inbound (#2818)

This commit is contained in:
fuyun
2023-08-03 22:30:08 +08:00
committed by GitHub
parent 10f4d5375a
commit 9e78137768
25 changed files with 552 additions and 361 deletions

View File

@ -10,6 +10,7 @@ const (
SrcIPCIDR
SrcPort
DstPort
InboundPort
Process
ProcessPath
IPSet
@ -36,6 +37,8 @@ func (rt RuleType) String() string {
return "SrcPort"
case DstPort:
return "DstPort"
case InboundPort:
return "InboundPort"
case Process:
return "Process"
case ProcessPath: