mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-22 16:00:51 +00:00
* refactor(firewall): rebuild rule management foundation * refactor(firewall): streamline rule checks and inventory * feat(firewall): improve native rule inventory * refactor(firewall): refine rule management * feat: add Docker port guard * feat(firewall): support native nftables * feat(firewall): add configurable firewall selection * feat(firewall): support nftables docker port guard * refactor(firewall): complete v2 rule management and migration * refactor(firewall): align state and API contracts * refactor(firewall): unify rule management operations * feat: refine firewall v2 rules and forwarding * fix(firewall): harden dual-stack rule management * refactor(firewall): consolidate rule validation and persistence
11 lines
302 B
Go
11 lines
302 B
Go
package firewall
|
|
|
|
type BaseOperation string
|
|
|
|
const (
|
|
BaseOperationInit BaseOperation = "init-base"
|
|
BaseOperationBind BaseOperation = "bind-base"
|
|
BaseOperationBindWithoutInit BaseOperation = "bind-base-without-init"
|
|
BaseOperationUnbind BaseOperation = "unbind-base"
|
|
)
|