mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 09:06:54 +08:00
10 lines
269 B
Go
Executable File
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
|
|
}
|