feat: added the ability to run commands remotely

commands can now be sent and their outputs received
This commit is contained in:
Andrew Rioux
2023-09-05 19:58:40 -04:00
parent 52538ac7d7
commit 9bb31ee6fa
3 changed files with 115 additions and 55 deletions

View File

@@ -67,7 +67,7 @@ impl Connection {
bail!("received packet from wrong computer");
}
dbg!(self.decrypt_and_verify(&buffer[..read]))
self.decrypt_and_verify(&buffer[..read])
}
}