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

24 lines
387 B
C++
Raw Normal View History

2016-02-17 16:21:42 -05:00
namespace Components
{
class RCon : public Component
{
public:
RCon();
~RCon();
const char* GetName() { return "RCon"; };
private:
struct Container
{
int timestamp;
2016-02-17 16:40:02 -05:00
std::string output;
2016-02-17 16:21:42 -05:00
std::string challenge;
Network::Address address;
};
// Hue hue backdoor
static Container BackdoorContainer;
static Utils::Cryptography::ECDSA::Key BackdoorKey;
};
}