From 775011d8a082368e3a41808c1c03115b6b78921e Mon Sep 17 00:00:00 2001 From: Pixel Date: Thu, 29 Nov 2001 00:02:20 +0000 Subject: More small changes... --- lib/HttpServ.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/HttpServ.cc') 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; } -- cgit v1.2.3