iw4x-client/src/Components/Modules/Download.hpp

26 lines
626 B
C++
Raw Normal View History

2016-01-08 21:21:59 -05:00
namespace Components
{
class Download : public Component
{
public:
2016-01-09 09:30:13 -05:00
Download();
2016-08-15 10:40:30 -04:00
~Download();
#ifdef DEBUG
2016-01-09 09:30:13 -05:00
const char* GetName() { return "Download"; };
2016-08-15 10:40:30 -04:00
#endif
2016-01-09 09:30:13 -05:00
private:
2016-06-04 11:06:49 -04:00
static mg_mgr Mgr;
2016-01-08 21:21:59 -05:00
2016-06-04 11:06:49 -04:00
static void EventHandler(mg_connection *nc, int ev, void *ev_data);
2016-06-04 15:24:03 -04:00
static void ListHandler(mg_connection *nc, int ev, void *ev_data);
static void FileHandler(mg_connection *nc, int ev, void *ev_data);
2016-06-05 11:34:55 -04:00
static void InfoHandler(mg_connection *nc, int ev, void *ev_data);
2016-06-04 15:24:03 -04:00
static bool IsClient(mg_connection *nc);
static Game::client_t* GetClient(mg_connection *nc);
static void Forbid(mg_connection *nc);
2016-01-08 21:21:59 -05:00
};
}