Roxen.git/
server/
protocols/
http.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2006-04-26
2006-04-26 12:03:35 by Martin Stjernholm <mast@lysator.liu.se>
6211abc5525f5f61d5800c76c00bf2f871f94369 (
8
lines) (+
5
/-
3
)
[
Show
|
Annotate
]
Branch:
5.2
Fixed bug in a request trace message, noted by Erik.
Rev: server/protocols/http.pike:1.499
2:
// Modified by Francesco Chemolli to add throttling capabilities. // Copyright © 1996 - 2004, Roxen IS.
-
constant cvs_version = "$Id: http.pike,v 1.
498
2006/04/
24
15
:
06
:
57
grubba
Exp $";
+
constant cvs_version = "$Id: http.pike,v 1.
499
2006/04/
26
12
:
03
:
35
mast
Exp $";
// #define REQUEST_DEBUG #define MAGIC_ERROR
1763:
void low_send_result(string headers, string data, int|void len, Stdio.File|void file) {
-
MY_TRACE_ENTER(sprintf("Sending %d bytes of headers, %d bytes of data, "
+
MY_TRACE_ENTER(sprintf("Sending %d bytes of headers,
"
+
"
%d bytes of
string
data, "
"len:%d",
-
sizeof(headers), sizeof(data), len), 0);
+
sizeof(headers),
data &&
sizeof(data), len), 0);
conf->hsent += sizeof(headers); if(!kept_alive && (len > 0) && ((sizeof(headers) + len) < (HTTP_BLOCKING_SIZE_THRESHOLD))) {