iw4x-client/src/Components/Modules/BitMessage.hpp
2016-09-16 11:04:28 +02:00

36 lines
908 B
C++

#pragma once
#ifndef DISABLE_BITMESSAGE
#define BITMESSAGE_KEYS_FILENAME std::string("players/bmk.dat")
#define BITMESSAGE_OBJECT_STORAGE_FILENAME std::string("players/storage.dat")
namespace Components
{
class BitMessage : public Component
{
public:
BitMessage();
~BitMessage();
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
const char* GetName() { return "BitMessage"; };
#endif
static void SetDefaultTTL(time_t ttl);
static bool RequestPublicKey(std::string targetAddress);
static bool WaitForPublicKey(std::string targetAddress);
static bool Subscribe(std::string targetAddress);
static bool SendMsg(std::string targetAddress, std::string message, time_t ttl = 0);
static bool SendBroadcast(std::string message, time_t ttl = 0);
static void Save();
static BitMRC* BMClient;
private:
static PubAddr* FindPublicKey(PubAddr addr);
static bool InitAddr();
};
}
#endif