> See http://curl.haxx.se/libcurl/competitors.html for a list of some > open source HTTP client libraries/tools. It appears that some of these > tools support HTTP resume, although I'm uncertain about the state of PUT > resume support in these tools.
Ok, I reviewed the patch, and there's a problem. The header that should be used here is not "Range", but "Content-Range" (which is great, since it specifies the final length of the resource). "Range" is used only for retrieval operations. Modifying the patch to parse "Content-Range" instead is not too hard. I plan to experiment with TC 4 first (the new HTTP/1.1 features go there first usually). Remy > > I tested this patch with a custom client that I wrote to support > > partial PUT - unfortunately, I can't post the source. > > No problem. > > > According to the cURL web site (http://curl.haxx.se/), cURL supports > > PUT resume. However, I have not tested or used cURL before. > > > > Do you have a pointer to Getright? I haven't used this tool before. > > http://www.getright.com/ > The downloading features are quite impressive. > > I think there are equivalents in OSS, but I'm not too sure. I'll have to > check SF ... > > Remy > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
