Files
openlan/pkg/schema/ipsec.go
2024-06-22 20:24:10 +08:00

13 lines
327 B
Go

package schema
type IPSecTunnel struct {
Left string `json:"local"`
LeftId string `json:"localid"`
LeftPort int `json:"localport"`
Right string `json:"remote"`
RightId string `json:"remoteid"`
RightPort int `json:"remoteport"`
Transport string `json:"protocol"`
Secret string `json:"secret"`
}