1
0
mirror of https://github.com/fatedier/frp.git synced 2025-07-08 08:49:29 +00:00

28 lines
379 B
Go
Raw Normal View History

2016-01-27 21:24:36 +08:00
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"`
}