mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 19:08:20 +00:00
8 lines
309 B
Go
8 lines
309 B
Go
package firewall
|
|
|
|
type Match struct {
|
|
TCPDestinationPort uint64 `json:"tcp_destination_port,omitempty"`
|
|
Services []string `json:"services,omitempty"`
|
|
SourceAddresses []string `json:"source_addresses,omitempty"`
|
|
DestinationAddresses []string `json:"destination_addresses,omitempty"`
|
|
}
|