在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
package teleport import ( // "net" )
const ( // 返回成功 SUCCESS = 0 // 返回失败 FAILURE = -1 // 返回非法请求 LLLEGAL = -2 )
// 定义数据传输结构 type NetData struct { // 消息体 Body interface{} // 操作代号 Operation string // 发信节点uid From string // 收信节点uid To string // 返回状态 Status int // 标识符 Flag string }
func NewNetData(from, to, operation string, flag string, body interface{}) *NetData { return &NetData{ From: from, To: to, Body: body, Operation: operation, Status: SUCCESS, Flag: flag, } }
|
请发表评论