mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-15 10:54:18 +00:00
Wrap NetLog stuff in !defined(PLASMA_EXTERNAL_RELEASE)
This commit is contained in:
@ -42,6 +42,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
//#define NO_ENCRYPTION
|
||||
|
||||
#ifndef PLASMA_EXTERNAL_RELEASE
|
||||
|
||||
struct NetLogMessage_Header
|
||||
{
|
||||
unsigned m_protocol;
|
||||
@ -50,22 +52,24 @@ struct NetLogMessage_Header
|
||||
unsigned m_size;
|
||||
};
|
||||
|
||||
#define HURU_PIPE_NAME "\\\\.\\pipe\\H-Uru_NetLog"
|
||||
|
||||
static CRITICAL_SECTION s_pipeCritical;
|
||||
static HANDLE s_netlog = 0;
|
||||
static ULARGE_INTEGER s_timeOffset;
|
||||
|
||||
static unsigned GetAdjustedTimer()
|
||||
{
|
||||
FILETIME time;
|
||||
ULARGE_INTEGER maths;
|
||||
GetSystemTimeAsFileTime(&time);
|
||||
maths.HighPart = time.dwHighDateTime;
|
||||
maths.LowPart = time.dwLowDateTime;
|
||||
maths.QuadPart -= s_timeOffset.QuadPart;
|
||||
return maths.LowPart % 864000000;
|
||||
}
|
||||
#define HURU_PIPE_NAME "\\\\.\\pipe\\H-Uru_NetLog"
|
||||
|
||||
static CRITICAL_SECTION s_pipeCritical;
|
||||
static HANDLE s_netlog = 0;
|
||||
static ULARGE_INTEGER s_timeOffset;
|
||||
|
||||
static unsigned GetAdjustedTimer()
|
||||
{
|
||||
FILETIME time;
|
||||
ULARGE_INTEGER maths;
|
||||
GetSystemTimeAsFileTime(&time);
|
||||
maths.HighPart = time.dwHighDateTime;
|
||||
maths.LowPart = time.dwLowDateTime;
|
||||
maths.QuadPart -= s_timeOffset.QuadPart;
|
||||
return maths.LowPart % 864000000;
|
||||
}
|
||||
|
||||
#endif // PLASMA_EXTERNAL_RELEASE
|
||||
|
||||
namespace pnNetCli {
|
||||
|
||||
@ -153,6 +157,7 @@ static void PutBufferOnWire (NetCli * cli, void * data, unsigned bytes) {
|
||||
|
||||
byte * temp, * heap = NULL;
|
||||
|
||||
#ifndef PLASMA_EXTERNAL_RELEASE
|
||||
// Write to the netlog
|
||||
if (s_netlog) {
|
||||
NetLogMessage_Header header;
|
||||
@ -167,6 +172,7 @@ static void PutBufferOnWire (NetCli * cli, void * data, unsigned bytes) {
|
||||
WriteFile(s_netlog, data, bytes, &bytesWritten, NULL);
|
||||
LeaveCriticalSection(&s_pipeCritical);
|
||||
}
|
||||
#endif // PLASMA_EXTERNAL_RELEASE
|
||||
|
||||
if (cli->mode == kNetCliModeEncrypted) {
|
||||
// Encrypt data...
|
||||
@ -862,6 +868,7 @@ static NetCli * ConnCreate (
|
||||
cli->mode = mode;
|
||||
cli->SetValue(kNilGuid);
|
||||
|
||||
#ifndef PLASMA_EXTERNAL_RELEASE
|
||||
// Network debug pipe
|
||||
if (!s_netlog) {
|
||||
InitializeCriticalSection(&s_pipeCritical);
|
||||
@ -882,6 +889,7 @@ static NetCli * ConnCreate (
|
||||
s_timeOffset.HighPart = timeBase.dwHighDateTime;
|
||||
s_timeOffset.LowPart = timeBase.dwLowDateTime;
|
||||
}
|
||||
#endif // PLASMA_EXTERNAL_RELEASE
|
||||
|
||||
ResetSendRecv(cli);
|
||||
|
||||
@ -1070,6 +1078,7 @@ bool NetCliDispatch (
|
||||
cli->input.Add(bytes, data);
|
||||
bool result = DispatchData(cli, param);
|
||||
|
||||
#ifndef PLASMA_EXTERNAL_RELEASE
|
||||
// Write to the netlog
|
||||
if (s_netlog) {
|
||||
NetLogMessage_Header header;
|
||||
@ -1077,13 +1086,14 @@ bool NetCliDispatch (
|
||||
header.m_direction = 1; // kSrv2Cli
|
||||
header.m_time = GetAdjustedTimer();
|
||||
header.m_size = bytes;
|
||||
|
||||
|
||||
EnterCriticalSection(&s_pipeCritical);
|
||||
DWORD bytesWritten;
|
||||
WriteFile(s_netlog, &header, sizeof(header), &bytesWritten, NULL);
|
||||
WriteFile(s_netlog, data, bytes, &bytesWritten, NULL);
|
||||
LeaveCriticalSection(&s_pipeCritical);
|
||||
}
|
||||
#endif // PLASMA_EXTERNAL_RELEASE
|
||||
|
||||
#ifdef SERVER
|
||||
cli->recvDispatch = result;
|
||||
|
Reference in New Issue
Block a user