1999-07-04
1999-07-04 18:32:20 by David Hedbor <david@hedbor.org>
-
037f4ba822d00c612a31af75cd488168c2073c6f
(13 lines)
(+9/-4)
[
Show
| Annotate
]
Branch: 5.2
Range bugfixes.
Rev: server/protocols/http.pike:1.139
6: Inside #if defined(MAGIC_ERROR)
#ifdef MAGIC_ERROR
inherit "highlight_pike";
#endif
- constant cvs_version = "$Id: http.pike,v 1.138 1999/07/02 20:50:03 neotron Exp $";
+ constant cvs_version = "$Id: http.pike,v 1.139 1999/07/04 18:32:20 neotron Exp $";
// HTTP protocol module.
#include <config.h>
private inherit "roxenlib";
1124:
string out = stored_data;
int rlen, total = num_bytes;
num_bytes -= strlen(out);
+ stored_data = "";
foreach(ranges, array range)
{
rlen = range_info[0][0] - current_pos;
1158:
return out[..total-1];
}
}
- if(separator != 2) {
- // End boundary. Only write once.
+ if(!sizeof(ranges) && separator != 2) {
+ // End boundary. Only write once and only when
+ // no more ranges remain.
separator = 2;
out += "\r\n--" BOUND "--\r\n";
}
1169:
stored_data = out[total..];
return out[..total-1];
}
- stored_data = ""; // Very important. Ia.
+
return out ; // We are finally done.
}
1181:
case "set_nonblocking":
return 0;
+ case "query_fd":
+ return lambda() { return 0; };
+
default:
return file[what];
}