aboutsummaryrefslogtreecommitdiff
path: root/src/http.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/http.cpp')
-rw-r--r--src/http.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/http.cpp b/src/http.cpp
index 19122c3..92bd89c 100644
--- a/src/http.cpp
+++ b/src/http.cpp
@@ -58,7 +58,7 @@ bool Http::parseRequest()
58 else 58 else
59 { 59 {
60 setResponseStatus( statusHTTPVersionNotSupported ); 60 setResponseStatus( statusHTTPVersionNotSupported );
61 printf("Verson not supported.\n"); 61 //printf("Verson not supported.\n");
62 return true; 62 return true;
63 } 63 }
64 64
@@ -93,7 +93,7 @@ bool Http::parseRequest()
93 nLen = pCon->scanInputFor(':'); 93 nLen = pCon->scanInputFor(':');
94 if( nLen == -1 ) 94 if( nLen == -1 )
95 { 95 {
96 printf("No colon? what are you trying to pull?\n"); 96 //printf("No colon? what are you trying to pull?\n");
97 } 97 }
98 else 98 else
99 { 99 {
@@ -111,10 +111,10 @@ bool Http::parseRequest()
111 pValue->c_str() 111 pValue->c_str()
112 ); 112 );
113 113
114 printf("::%s = \"%s\"\n", 114 //printf("::%s = \"%s\"\n",
115 pName->c_str(), 115 // pName->c_str(),
116 pValue->c_str() 116 // pValue->c_str()
117 ); 117 // );
118 } 118 }
119 } 119 }
120 } 120 }