Files
openlan/pkg/config/output.go
2024-04-09 10:31:24 +08:00

10 lines
269 B
Go
Executable File

package config
type Output struct {
Segment int `json:"segment"`
Protocol string `json:"protocol,omitempty"` // gre, vxlan, etc.
Remote string `json:"remote"`
DstPort int `json:"dstport,omitempty"`
Link string `json:"link,omitempty"` // link name
}