2019-05-06 18:59:49 +02:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2019-05-06 18:59:49 +02:00
|
|
|
//
|
|
|
|
// 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
|
2019-05-22 20:17:24 +02:00
|
|
|
|
|
|
|
#include "td/mtproto/AuthData.h"
|
2019-05-06 18:59:49 +02:00
|
|
|
#include "td/mtproto/RawConnection.h"
|
|
|
|
|
|
|
|
#include "td/actor/actor.h"
|
|
|
|
#include "td/actor/PromiseFuture.h"
|
2019-05-22 20:17:24 +02:00
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
|
2019-05-06 18:59:49 +02:00
|
|
|
namespace td {
|
|
|
|
namespace mtproto {
|
2019-05-22 20:17:24 +02:00
|
|
|
|
|
|
|
ActorOwn<> create_ping_actor(string debug, unique_ptr<RawConnection> raw_connection, unique_ptr<AuthData> auth_data,
|
|
|
|
Promise<unique_ptr<RawConnection>> promise, ActorShared<> parent);
|
|
|
|
|
2019-07-09 05:56:06 +02:00
|
|
|
} // namespace mtproto
|
2019-05-06 18:59:49 +02:00
|
|
|
} // namespace td
|