mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 06:36:54 +00:00
46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef LOGMSGHANDLER_H
|
|
#define LOGMSGHANDLER_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "Socket.h"
|
|
#include "utlvector.h"
|
|
#include "player.h"
|
|
#include "rcon.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Socket handler for pinging internet servers
|
|
//-----------------------------------------------------------------------------
|
|
class CLogMsgHandlerDetails : public CMsgHandler
|
|
{
|
|
public:
|
|
CLogMsgHandlerDetails(IResponse *baseobject, HANDLERTYPE type, void *typeinfo = NULL);
|
|
~CLogMsgHandlerDetails();
|
|
|
|
virtual bool Process(netadr_t *from, CMsgBuffer *msg);
|
|
|
|
// indicates if a new message has arrived
|
|
bool NewMessage();
|
|
|
|
// returns the text of the last message recieved
|
|
const char *GetBuf();
|
|
|
|
|
|
private:
|
|
|
|
IResponse *m_pLogList;
|
|
bool m_bNewMessage;
|
|
char message[512];
|
|
};
|
|
|
|
#endif // LOGMSGHANDLER_H
|