We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6caea3 commit 857c2daCopy full SHA for 857c2da
2 files changed
daemon/firewall/config/config.go
@@ -61,16 +61,16 @@ type Expressions struct {
61
type FwRule struct {
62
// we need to keep old fields in the struct. Otherwise when receiving a conf from the GUI, the legacy rules would be deleted.
63
Chain string // TODO: deprecated, remove
64
- Table string
65
- Parameters string
+ Table string // TODO: deprecated, remove
+ Parameters string // TODO: deprecated, remove
66
67
UUID string
68
Description string
69
Expressions []*Expressions
70
Target string
71
TargetParameters string
72
73
- Position uint64
+ Position uint64 `json:",string"`
74
Enabled bool
75
}
76
0 commit comments