Tagged Questions

3
votes
2answers
377 views

Writing memory to socket in chunks in C

I'm attempting to write memory contents to a socket in chunks. I can write files that are smaller than my buffer, but anything else and I'm in deep water. /* allocate memory for file contents */ char ...
0
votes
2answers
249 views

WebClient.OpenRead download data in chunks

I am trying to download data using a Webclient object in chunks of 5% each. The reason is that I need to report progress for each downloaded chunk. Here is the code I wrote to do this task: ...