コード例 #1
0
ファイル: ServerSession.cpp プロジェクト: edwig/Marlin
void PrintHexDump(DWORD p_length, const void* p_buffer)
{
  if(g_session && g_session->GetSocketLogging() >= SOCK_LOGGING_TRACE)
  {
    PrintHexDumpActual(p_length,p_buffer);
  }
}
コード例 #2
0
ファイル: Utilities.cpp プロジェクト: david-maw/StreamSSL
void PrintHexDump(DWORD length, const void * const buf, const bool verbose)
{
	if (debug)
	PrintHexDumpActual(length, buf, verbose);
}
コード例 #3
0
ファイル: Utilities.cpp プロジェクト: david-maw/StreamSSL
void PrintHexDump(DWORD length, const void * const buf)
{
	if (debug)
	PrintHexDumpActual(length, buf, false);
}