mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 16:47:11 +08:00
17 lines
337 B
Go
Executable File
17 lines
337 B
Go
Executable File
package schema
|
|
|
|
type ACL struct {
|
|
Name string `json:"name"`
|
|
Rules []ACLRule `json:"rules"`
|
|
}
|
|
|
|
type ACLRule struct {
|
|
Name string `json:"name"`
|
|
SrcIp string `json:"src"`
|
|
DstIp string `json:"dst"`
|
|
Proto string `json:"proto"`
|
|
SrcPort int `json:"sport"`
|
|
DstPort int `json:"dport"`
|
|
Action string `json:"action"`
|
|
}
|