You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 21, 2023. It is now read-only.
In the code below, since receiver_id is declared as uint32_t, this block will be never activated.
network.cc: 325
elseif (receiver_id < 0) {
for (constauto &[id, peer] : peers_) {
// do not resend to self, also do not send to excludedif (id == sender_id || id == -receiver_id) {
continue;
}
peer->Send(event->Channel(), payload.segment, nullptr);
}
if (-receiver_id != 1) {
payloads_.push_back(payload);
}
}