func RecvMsg(c msgE.Controller, msg msgE.GetPacket) { fmt.Println(string(msg.Date)) session, ok := c.GetSession(msg.Name) if ok { session.Close() } }
func RecvMsg(c msgE.Controller, msg msgE.GetPacket) { fmt.Println(string(msg.Date)) session, ok := c.GetSession(msg.Name) if ok { hello := []byte("hello, I'm server") session.Send(111, &hello) session.Close() } }