2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-03 07:56:03 +00:00

Move some modules to lib_mtproto.

This commit is contained in:
John Preston
2019-11-18 12:28:14 +03:00
parent 782025a0a6
commit cfe12f773f
53 changed files with 143 additions and 148 deletions

View File

@@ -14,7 +14,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "mtproto/special_config_request.h"
#include "mtproto/connection.h"
#include "mtproto/sender.h"
#include "mtproto/rsa_public_key.h"
#include "mtproto/mtproto_rsa_public_key.h"
#include "storage/localstorage.h"
#include "calls/calls_instance.h"
#include "main/main_session.h" // Session::Exists.
@@ -37,8 +37,22 @@ constexpr auto kCheckKeyEach = 60 * crl::time(1000);
using namespace internal;
std::atomic<int> GlobalAtomicRequestId = 0;
} // namespace
namespace internal {
int GetNextRequestId() {
const auto result = ++GlobalAtomicRequestId;
if (result == std::numeric_limits<int>::max() / 2) {
GlobalAtomicRequestId = 0;
}
return result;
}
} // namespace internal
class Instance::Private : private Sender {
public:
Private(not_null<Instance*> instance, not_null<DcOptions*> options, Instance::Mode mode);