mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 17:17:00 +08:00
13 lines
313 B
Go
13 lines
313 B
Go
package config
|
|
|
|
type RouterSpecifies struct {
|
|
Mss int `json:"tcpMss,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Link string `json:"link,omitempty"`
|
|
Subnets []Subnet `json:"subnets,omitempty"`
|
|
Loopback string `json:"loopback,omitempty"`
|
|
}
|
|
|
|
func (n *RouterSpecifies) Correct() {
|
|
}
|