mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Include cleanup Reworked buildsystem (Linux only) Removed dynamic libs, Linux now again uses static linking (like windows)
22 lines
503 B
C++
22 lines
503 B
C++
#ifndef CLIENTTHREAD_H
|
|
#define CLIENTTHREAD_H
|
|
|
|
namespace Pol
|
|
{
|
|
namespace Network
|
|
{
|
|
class Client;
|
|
}
|
|
namespace Core
|
|
{
|
|
bool client_io_thread( Network::Client* client, bool login );
|
|
bool process_data( Network::Client* client );
|
|
bool check_inactivity( Network::Client* client );
|
|
|
|
void handle_unknown_packet( Network::Client* client );
|
|
void handle_undefined_packet( Network::Client* client );
|
|
void handle_humongous_packet( Network::Client* client, unsigned int reported_size );
|
|
}
|
|
}
|
|
|
|
#endif // CLIENTTHREAD_H
|