-
Notifications
You must be signed in to change notification settings - Fork 42
0x2209
Kyuubi edited this page Jun 16, 2023
·
1 revision
4 bytes dwClientSessionId
2 bytes wMsgId
CMsg *ServerFramework::MakeRelayMsgToClient(WORD wMsgId, DWORD dwClientSessionId) {
CMsg *pMsg = g_pNetEngine->AllocNewMsg(false);
pMsg->SetMsgID(FRAMEWORKMSG_RELAY_MSG_TO_CLIENT_SINGLE);
*pMsg << dwClientSessionId << wMsgId;
return pMsg;
}