tdlight/td/telegram/net/PublicRsaKeyWatchdog.h
levlam eaebfad034 Update copyright year.
GitOrigin-RevId: 359e2b43322222922c44c430d3814b0a4c778dc6
2019-01-01 01:02:34 +03:00

49 lines
1.2 KiB
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
#include "td/telegram/net/PublicRsaKeyShared.h"
#include "td/telegram/net/NetActor.h"
#include "td/telegram/net/NetQueryCreator.h"
#include "td/telegram/net/NetQueryDispatcher.h"
#include "td/telegram/telegram_api.h"
#include "td/actor/actor.h"
#include "td/utils/buffer.h"
#include "td/utils/common.h"
#include "td/utils/FloodControlStrict.h"
#include <memory>
namespace td {
class PublicRsaKeyWatchdog : public NetActor {
public:
explicit PublicRsaKeyWatchdog(ActorShared<> parent);
void add_public_rsa_key(std::shared_ptr<PublicRsaKeyShared> key);
private:
ActorShared<> parent_;
vector<std::shared_ptr<PublicRsaKeyShared>> keys_;
tl_object_ptr<telegram_api::cdnConfig> cdn_config_;
FloodControlStrict flood_control_;
bool has_query_{false};
void start_up() override;
void loop() override;
void on_result(NetQueryPtr net_query) override;
void sync(BufferSlice cdn_config_serialized);
void sync_key(std::shared_ptr<PublicRsaKeyShared> &key);
};
} // namespace td