diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-11-09 22:27:10 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-11-09 22:27:10 +0000 |
commit | 76e04d54d648395ea5e9884882350f3e1a39a086 (patch) | |
tree | 8759a57460cda1aba2d3f845fc9bb252755dc44f | |
parent | 1f04f620cf426735033e8da507cf2e4f629fa702 (diff) | |
download | libbu++-76e04d54d648395ea5e9884882350f3e1a39a086.tar.gz libbu++-76e04d54d648395ea5e9884882350f3e1a39a086.tar.bz2 libbu++-76e04d54d648395ea5e9884882350f3e1a39a086.tar.xz libbu++-76e04d54d648395ea5e9884882350f3e1a39a086.zip |
Just modified the debugging for the HttpGet class.
Diffstat (limited to '')
-rw-r--r-- | src/httpget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/httpget.cpp b/src/httpget.cpp index dc25aa1..dd0585a 100644 --- a/src/httpget.cpp +++ b/src/httpget.cpp | |||
@@ -157,6 +157,7 @@ SBuffer *HttpGet::get() | |||
157 | 157 | ||
158 | Connection con; | 158 | Connection con; |
159 | con.open( sHost.c_str(), nPort ); | 159 | con.open( sHost.c_str(), nPort ); |
160 | printf("Connected, sending request.\n"); | ||
160 | con.appendOutput( sData.c_str(), sData.size() ); | 161 | con.appendOutput( sData.c_str(), sData.size() ); |
161 | con.writeOutput(); | 162 | con.writeOutput(); |
162 | while( con.readInput() ) | 163 | while( con.readInput() ) |