Files
openlan/pkg/config/router.go
2024-07-19 16:20:57 +08:00

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() {
}