#include "stdafx.h" // ======================================================================================= ////////////////////////////////////////////////////////////////////////// // //static BYTE* ////////////////////////////////////////////////////////////////////////// BOOL ISecureSimplexSNK01::DoEarlyProcess( BYTE*& pSendingMsg, WORD& wSendingSize ) { pSendingMsg = NULL; wSendingSize = 0; return FALSE; }; // [for CLIENT] Client::Application::Heartbeat¿¡¼­ È£Ãâ (TRUE, PTR, SZ) ¸ðµÎ ÂüÀÏ °æ¿ì ÆÐŶ Àü¼Û BOOL ISecureWorkNode::DoEarlyProcess( BYTE*& pSendingMsg, WORD& wSendingSize ) { #if CODE_BACKUP __DEBUGGING_OUTPUT0( "ISecureWorkNode::DoEarlyProcess" ); if( m_pSendCrypt && m_pRecvCrypt ) { if( memcmp( &m_pSendCrypt->m_SNKey, &m_pRecvCrypt->m_SNKey, sizeof(sCLIENT_CRYPT_INFO) ) != 0 ) { __DEBUGGING_OUTPUT1( "MEMCMP SEND", *(DWORD*)&m_pSendCrypt->m_SNKey ); __DEBUGGING_OUTPUT1( "MEMCMP RECV", *(DWORD*)&m_pRecvCrypt->m_SNKey ); } } #endif #if SERVER_CODE pSendingMsg = NULL; wSendingSize = 0; #elif CLIENT_CODE pSendingMsg = NULL; wSendingSize = 0; #endif return FALSE; };