In this setup, I’m trying a read a piece whose length is 262144;
As per the challenge, I’m breaking it up into pieces of 16384 bytes.
For some examples, after reaching a specific part (16kb) that is NOT the last one, and sending the associated request, I’m getting an EOF error.
Is the error related to the fact that I’m using read_exact
which expects to read all of the data in one go? Because in terms of the length of the piece I’m trying to read, I’m pretty sure that’s not an issue.
[EDIT] Given that I’m not allowed to add multiple photos to this, I’ll drop the code below:
let mut fin_vec: Vec<u8> = Vec::<u8>::new();
for i in 0..((self.piece_length + Self::DEFAULT_PIECE_BYTE_SIZE - 1) / Self::DEFAULT_PIECE_BYTE_SIZE) {
self.send_part_request(i).await?;
let part = self.recv_part_piece().await?;
fin_vec.extend_from_slice(&part[8..]);
}
I am doing the rest of the bitfield/ interest/ unchoke shenanigans.