摘要:#include <vector>#include <iostream>#include "compacket.h"using namespace std;char szBuf[4096];const int INT = 4;const int STRING = 100;void EncodeMsg(char *pPos){int tmp = 80000;memcpy((void *) pPos, (void *) &tmp, INT);pPos+=INT;char Role[] = "艾迪";memcpy((void *
阅读全文