mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
28 lines
379 B
Go
28 lines
379 B
Go
package models
|
|
|
|
type GeneralRes struct {
|
|
Code int64 `json:"code"`
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
// type
|
|
const (
|
|
ControlConn = iota
|
|
WorkConn
|
|
)
|
|
|
|
type ClientCtlReq struct {
|
|
Type int64 `json:"type"`
|
|
ProxyName string `json:"proxy_name"`
|
|
Passwd string `json:"passwd"`
|
|
}
|
|
|
|
type ClientCtlRes struct {
|
|
GeneralRes
|
|
}
|
|
|
|
|
|
type ServerCtlReq struct {
|
|
Type int64 `json:"type"`
|
|
}
|