#include "Context.hpp" Context::Context(const std::array &privateKey, const std::array &publicKey) : me(publicKey) { this->cryptoRsaPrivateKey = privateKey; this->socket = -1; this->broadcastAddressInfo = nullptr; this->server = nullptr; this->latestPeerDiscovery = std::chrono::high_resolution_clock::now(); }