summaryrefslogtreecommitdiff
path: root/httptnt
diff options
context:
space:
mode:
Diffstat (limited to 'httptnt')
-rw-r--r--httptnt/resourceStreamer.ecpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/httptnt/resourceStreamer.ecpp b/httptnt/resourceStreamer.ecpp
index 9579fe6..ecb3eae 100644
--- a/httptnt/resourceStreamer.ecpp
+++ b/httptnt/resourceStreamer.ecpp
@@ -67,6 +67,8 @@ int doRequest(tnt::HttpReply reply, tnt::HttpRequest request, std::string object
if(to <= 0 || to > contentLength) to = contentLength;
length = to - from;
hasRange = true;
+
+ cerr << from << " - " << to << "/" << contentLength << endl;
std::stringstream contentRangeHeader;
contentRangeHeader << "bytes " << from << "-" << to << "/" << contentLength;