加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MsgHandle.h 594 Bytes
一键复制 编辑 原始数据 按行查看 历史
qykings 提交于 2015-01-13 21:41 . modified: CByteArrays.cpp
/***
*qykings
*socket消息处理
*
*增加这个方法方便以后做 跨平台
***/
#ifndef __MSG_HANDLE_H__
#define __MSG_HANDLE_H__
#include <stdio.h>
#include <iostream>
#include "base.h"
#include "CByteArrays.h"
#include "./topPro/LoginLogic.h"
#include "SGameSocket.h"
#include "MySqlCenter.h"
#define MSGTYPE_LOGIN 1
class MsgHandle
{
public:
static MsgHandle* GetInstance();
//处理
int decodeMsg(CByteArrays msg,int socketId);
//广播
int broadcast();
int sendMsg(int socketid,CByteArrays byt);
private:
MsgHandle(void);
~MsgHandle(void);
static MsgHandle *_instance;
};
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化