Great work Steven! Closing Go bugs is always appreciated by the community.
> On Nov 18, 2024, at 11:49 AM, Jason E. Aten wrote:
>
> Brilliant. Yes, that was my bug. Thank you Steven!
>
> On Monday, November 18, 2024 at 11:30:18 AM UTC-6 Steven Hartland wrote:
> I believe the problem you have is
Brilliant. Yes, that was my bug. Thank you Steven!
On Monday, November 18, 2024 at 11:30:18 AM UTC-6 Steven Hartland wrote:
I believe the problem you have is that your readFull can return a partial
read if an error occurs e.g. timeout so when that happens you lose data by
overwriting the partia
I believe the problem you have is that your readFull can return a partial
read if an error occurs e.g. timeout so when that happens you lose data by
overwriting the partial result with the next read.
If you apply something like the following, which returns the bytes read and
continues the read fro