summaryrefslogtreecommitdiff
path: root/lib/HttpServ.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-29 00:02:20 +0000
committerPixel <Pixel>2001-11-29 00:02:20 +0000
commit775011d8a082368e3a41808c1c03115b6b78921e (patch)
tree32294d4d3450177bdf27dcddcad8d2d603e106d3 /lib/HttpServ.cc
parent0a7f6d0b5935f9794dda8935d37d4238bed3d611 (diff)
More small changes...
Diffstat (limited to 'lib/HttpServ.cc')
-rw-r--r--lib/HttpServ.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc
index 14e48e1..3f2e735 100644
--- a/lib/HttpServ.cc
+++ b/lib/HttpServ.cc
@@ -67,9 +67,9 @@ int ProcessRequest::Do() {
len = -1;
do {
b >> t;
- cerr << "Read Request (n): " << t << endl;
+ // cerr << "Read Request (n): " << t << endl;
if ((t.strstr("Content-Length: ") == 0) || (t.strstr("Content-length: ") == 0)) {
- cerr << "Saw 'Content-Lenght:', reading length from '" << t.extract(16) << "'\n";
+ // cerr << "Saw 'Content-Lenght:', reading length from '" << t.extract(16) << "'\n";
len = t.extract(16).to_int();
}
if (t.strstr("Host: ") == 0) {
@@ -89,7 +89,7 @@ int ProcessRequest::Do() {
bad = true;
Vars = new Variables();
} else {
- cerr << "Got a POST request. Parsing variables. (len = " << len << ")\n";
+ // cerr << "Got a POST request. Parsing variables. (len = " << len << ")\n";
// Les variables seront initialisées ici.
hasvars = true;
}