I want to create simple download accelerator.
How it works
- Server wait for incoming connection.
- Client connect to server.
- Then, server send file size to client and wait for download connection.
- Client got file size, then create download thread and these thread are connect to server.
- After server got connection from each thread, server will wait for start and end offset file from thread.
- Each thread send start and end offset file to server.
- After server got offsets, server will send the portion of file to thread.
- Each thread will read and write to file. For example, buffer.p01, buffer.p02, buffer.p03
- Client merge all file into one file order by sequence. ( Not yet implemented )
I think server side it works correctly but client side it has some problem.
The problem is if I set MAXTHREAD to 1, it works correctly. But if I set more than one, it stuck somewhere forever.
This is server side code.. http://pastebin.com/TEakGB0c
and this is client side code with multithreading http://pastebin.com/wKhP7DxS
Thanks your.