Handle the kill packet

This commit is contained in:
Simon Gellis 2024-12-30 23:44:06 -05:00
parent 0a5e223ba7
commit 014b9ebbfa
1 changed files with 2 additions and 0 deletions

View File

@ -162,6 +162,8 @@ impl GdbConnection {
if body == "QStartNoAckMode" {
self.ack_messages = false;
res.send_ok().await?;
} else if body == "k" {
return Ok(());
} else {
// unrecognized command
res.send().await?;