26 lines
575 B
C++
26 lines
575 B
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
//
|
|
// 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/utils/buffer.h"
|
|
#include "td/utils/common.h"
|
|
|
|
namespace td {
|
|
namespace mtproto {
|
|
|
|
struct MtprotoQuery {
|
|
int64 message_id;
|
|
int32 seq_no;
|
|
BufferSlice packet;
|
|
bool gzip_flag;
|
|
std::vector<uint64> invoke_after_ids;
|
|
bool use_quick_ack;
|
|
};
|
|
|
|
} // namespace mtproto
|
|
} // namespace td
|