Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aether/cloud_connections/cloud_server_connections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ CloudServerConnections::servers_update_event() {
return servers_update_event_;
}

std::vector<CloudServerConnection*> const& CloudServerConnections::selected_servers()
const {
std::vector<CloudServerConnection*> const&
CloudServerConnections::selected_servers() const {
return selected_servers_;
}

Expand Down
5 changes: 2 additions & 3 deletions aether/transport/system_sockets/udp/udp.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ class SendAction final : public PacketSendAction {
SetStatus(WriteAction::Status::kFail);
return;
}
AE_TELED_DEBUG("Data has been written size {}", data_.size());

AE_TELED_DEBUG("Data has been written size {}", *res);
if (*res == 0) {
reenqueue_ = true;
// Not sent yet
Expand All @@ -71,7 +70,7 @@ class SendAction final : public PacketSendAction {
AE_TELED_ERROR("Send error, sent size isn't same as packet size");
SetStatus(WriteAction::Status::kFail);
return;
}
}
SetStatus(WriteAction::Status::kSuccess);
}

Expand Down
Loading
Loading