Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Suppose i wish to pause the download, and start it again. Can we know before hand whether the link is resumable
As far as I know <code>Content-Range</code> and <code>Accept-Ranges</code> headers are present if the server supports resumable downloads.
Thanks a lot! worked like a charm @if(!replySegment->rawHeaderList().contains("Content-Range")&&!replySegment->rawHeaderList().contains("Accept-Ranges")) { isResumable=false; return; }@