mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 03:28:19 +00:00
25 lines
360 B
C++
25 lines
360 B
C++
#ifndef ENGINE_SHARED_E_ENGINE_H
|
|
#define ENGINE_SHARED_E_ENGINE_H
|
|
|
|
#include "jobs.h"
|
|
|
|
class CHostLookup
|
|
{
|
|
public:
|
|
CJob m_Job;
|
|
char m_aHostname[128];
|
|
NETADDR m_Addr;
|
|
};
|
|
|
|
class CEngine
|
|
{
|
|
class CJobPool m_HostLookupPool;
|
|
|
|
public:
|
|
void Init(const char *pAppname);
|
|
void InitLogfile();
|
|
void HostLookup(CHostLookup *pLookup, const char *pHostname);
|
|
};
|
|
|
|
#endif
|