blob: 3f11b4a04a3663831d770a4f2019f6900e1bdd59 [file] [log] [blame]
package control
//EgressConfig is a standardized model
type EgressConfig struct {
Hosts []string
Ports []*EgressPort
}
//EgressPort protocol and the corresponding port
type EgressPort struct {
Port int32
Protocol string
}