comments + todo

This commit is contained in:
Luuk van Oijen
2023-11-09 15:53:29 +01:00
parent ff5a5204c9
commit 6c60f220eb
2 changed files with 8 additions and 0 deletions

View File

@@ -138,6 +138,7 @@ impl Client {
// I think I will simply keep a counter around that will
// track what the next mod is per client.
// TODO: Clean this up. It also needs to be moved out of the client code IMO
let id = self.read_raw(1).await?[0] as usize;
debug!("HandleDownload connection for client id: {}", id);
@@ -151,6 +152,11 @@ impl Client {
*next_id += 1;
if *next_id >= config.mods.len() {
// I think this is where the connection should be closed, instead of after
// just 1 mod.
}
bmod.0.clone()
};