mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 00:57:03 +08:00
13 lines
328 B
Go
13 lines
328 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:"transport"`
|
|
Secret string `json:"secret"`
|
|
}
|