#ifndef _MODHLSWPROXY_H_ #define _MODHLSWPROXY_H_ #include "config.h" #include "module.h" class ModHlswProxy : public Module { public: ModHlswProxy(Config& conf); ~ModHlswProxy(); void scan(MultiSock* msock); int parse(NetPkt* pkt, GameList* glist); const char* getName() { return "HlswProxy"; } }; #endif // _MODHLSWPROXY_H_