diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-03-02 19:40:02 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-03-02 19:40:02 +0000 |
commit | 3f064aa71f19725fa652fcd20fcf3816664fbaf2 (patch) | |
tree | 5a89ca67f9f7c2d4b341df18fbc074898907f622 /src/http.cpp | |
parent | 9e85e4d8f31fcfa97cc95e43fa8c3b51434dcb7b (diff) | |
download | libbu++-3f064aa71f19725fa652fcd20fcf3816664fbaf2.tar.gz libbu++-3f064aa71f19725fa652fcd20fcf3816664fbaf2.tar.bz2 libbu++-3f064aa71f19725fa652fcd20fcf3816664fbaf2.tar.xz libbu++-3f064aa71f19725fa652fcd20fcf3816664fbaf2.zip |
Removed debugging from the Hash
Diffstat (limited to '')
-rw-r--r-- | src/http.cpp | 12 |
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 | } |