Esempio n. 1
0
void PrintHexDump(DWORD p_length, const void* p_buffer)
{
  if(g_session && g_session->GetSocketLogging() >= SOCK_LOGGING_TRACE)
  {
    PrintHexDumpActual(p_length,p_buffer);
  }
}
Esempio n. 2
0
void PrintHexDump(DWORD length, const void * const buf, const bool verbose)
{
	if (debug)
	PrintHexDumpActual(length, buf, verbose);
}
Esempio n. 3
0
void PrintHexDump(DWORD length, const void * const buf)
{
	if (debug)
	PrintHexDumpActual(length, buf, false);
}