mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Generate tlo and other changes after merge
This commit is contained in:
parent
eb9d601d4e
commit
89771e2a2c
5 changed files with 7 additions and 7 deletions
|
@ -621,7 +621,7 @@ void AdnlPeerPairImpl::process_message(const adnlmessage::AdnlMessageQueryError
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
td::actor::send_closure_later(Q->second, &AdnlQuery::reject_query);
|
td::actor::send_closure_later(Q->second, &AdnlQuery::set_error, td::Status::Error("adnl query rejected"));
|
||||||
out_queries_.erase(Q);
|
out_queries_.erase(Q);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,9 +73,9 @@ class BroadcastSimple : public td::ListNode {
|
||||||
, date_(date)
|
, date_(date)
|
||||||
, signature_(std::move(signature))
|
, signature_(std::move(signature))
|
||||||
, is_valid_(is_valid)
|
, is_valid_(is_valid)
|
||||||
|
, is_ours_(is_ours)
|
||||||
, overlay_(overlay)
|
, overlay_(overlay)
|
||||||
, src_peer_id_(src_peer_id)
|
, src_peer_id_(src_peer_id) {
|
||||||
, is_ours_(is_ours) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Overlay::BroadcastHash get_hash() const {
|
Overlay::BroadcastHash get_hash() const {
|
||||||
|
|
|
@ -284,10 +284,10 @@ class OverlayFecBroadcastPart : public td::ListNode {
|
||||||
, date_(date)
|
, date_(date)
|
||||||
, signature_(std::move(signature))
|
, signature_(std::move(signature))
|
||||||
, is_short_(is_short)
|
, is_short_(is_short)
|
||||||
|
, is_ours_(is_ours)
|
||||||
, bcast_(bcast)
|
, bcast_(bcast)
|
||||||
, overlay_(overlay)
|
, overlay_(overlay)
|
||||||
, src_peer_id_(src_peer_id)
|
, src_peer_id_(src_peer_id) {
|
||||||
, is_ours_(is_ours) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
td::uint32 data_size() const {
|
td::uint32 data_size() const {
|
||||||
|
|
|
@ -238,7 +238,7 @@ void RldpIn::process_message(adnl::AdnlNodeIdShort source, adnl::AdnlNodeIdShort
|
||||||
ton_api::rldp_queryError &message) {
|
ton_api::rldp_queryError &message) {
|
||||||
auto it = queries_.find(message.query_id_);
|
auto it = queries_.find(message.query_id_);
|
||||||
if (it != queries_.end()) {
|
if (it != queries_.end()) {
|
||||||
td::actor::send_closure(it->second, &adnl::AdnlQuery::reject_query);
|
td::actor::send_closure(it->second, &adnl::AdnlQuery::set_error, td::Status::Error("adnl query rejected"));
|
||||||
queries_.erase(it);
|
queries_.erase(it);
|
||||||
} else {
|
} else {
|
||||||
VLOG(RLDP_INFO) << "received reject to unknown query " << message.query_id_;
|
VLOG(RLDP_INFO) << "received reject to unknown query " << message.query_id_;
|
||||||
|
|
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue