mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-16 20:49:16 +08:00
16 lines
427 B
Go
16 lines
427 B
Go
package client
|
|
|
|
type FireInfo struct {
|
|
Family string `json:"family"` // ipv4 ipv6
|
|
Address string `json:"address"` // Anywhere
|
|
Port string `json:"port"`
|
|
Protocol string `json:"protocol"` // tcp udp tcp/upd
|
|
Strategy string `json:"strategy"` // accept drop
|
|
}
|
|
|
|
type Forward struct {
|
|
Protocol string `json:"protocol"`
|
|
Address string `json:"address"`
|
|
Port string `json:"port"`
|
|
Target string `json:"target"`
|
|
}
|