GDB command progress

This commit is contained in:
momo5502
2025-01-18 09:20:08 +01:00
parent b180d9629c
commit 2044a3c4ab
4 changed files with 134 additions and 31 deletions

View File

@@ -47,7 +47,7 @@ namespace gdb_stub
return std::nullopt;
}
void connection_handler::send_packet(const std::string_view data) const
void connection_handler::send_reply(const std::string_view data) const
{
const auto checksum = utils::string::to_hex_string(compute_checksum(data));
this->send_raw_data("$" + std::string(data) + "#" + checksum);