PDA

View Full Version : extending QHttp?



gfunk
13th September 2007, 02:27
I'd like to add the ability to specify additional http headers to QHttp - in particular, I'd like to make my app able to resume partially downloaded files, which might be possible if I could add a Range: header to its get requests. Anyone see a way to do this?

wysota
13th September 2007, 08:41
Use request() instead of get() - you can add your own headers there by manipulating the QHttpRequestHeader object.