-rw-r--r-- | noncore/net/ubrowser/httpfactory.cpp | 8 | ||||
-rw-r--r-- | noncore/net/ubrowser/opie-ubrowser.control | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/noncore/net/ubrowser/httpfactory.cpp b/noncore/net/ubrowser/httpfactory.cpp index b37e9f9..154d5d0 100644 --- a/noncore/net/ubrowser/httpfactory.cpp +++ b/noncore/net/ubrowser/httpfactory.cpp | |||
@@ -263,9 +263,9 @@ const QByteArray HttpFactory::recieveNormal( int sockfd, int dataLen ) const | |||
263 | QByteArray temp( dataLen ); | 263 | QByteArray temp( dataLen ); |
264 | int recieved, i; | 264 | int recieved, i; |
265 | 265 | ||
266 | recieved = recv( sockfd, temp.data(), temp.size(), 0 ); | 266 | recieved = recv( sockfd, temp.data(), temp.size(), 0 ); |
267 | printf( "HttpFactory::recieveNormal: found some data: %s\n", (char *)temp.data() ); | 267 | //printf( "HttpFactory::recieveNormal: found some data: %s\n", (char *)temp.data() ); |
268 | for( i = 0; i < recieved; i++ ) | 268 | for( i = 0; i < recieved; i++ ) |
269 | { | 269 | { |
270 | data[i] = temp[i]; | 270 | data[i] = temp[i]; |
271 | } | 271 | } |
@@ -295,9 +295,9 @@ const QByteArray HttpFactory::recieveChunked( int sockfd ) const | |||
295 | QByteArray temp( 1 ); | 295 | QByteArray temp( 1 ); |
296 | int recieved, i = 0, cSize = 0; | 296 | int recieved, i = 0, cSize = 0; |
297 | QString cSizeS; | 297 | QString cSizeS; |
298 | 298 | ||
299 | printf( "HttpFactory::recieveChunked: temp.size(): %d\n", temp.size() ); | 299 | //printf( "HttpFactory::recieveChunked: temp.size(): %d\n", temp.size() ); |
300 | recv( sockfd, temp.data(), temp.size(), 0 ); | 300 | recv( sockfd, temp.data(), temp.size(), 0 ); |
301 | while( *(temp.data()) != '\n' && *(temp.data()) != ';' ) | 301 | while( *(temp.data()) != '\n' && *(temp.data()) != ';' ) |
302 | { | 302 | { |
303 | // printf( "HttpFactory::recieveChunked: temp.size(): %d\n", temp.size() ); | 303 | // printf( "HttpFactory::recieveChunked: temp.size(): %d\n", temp.size() ); |
@@ -334,9 +334,9 @@ const QByteArray HttpFactory::recieveChunked( int sockfd ) const | |||
334 | } | 334 | } |
335 | temp.fill('\0', cSize); | 335 | temp.fill('\0', cSize); |
336 | } | 336 | } |
337 | 337 | ||
338 | printf( "HttpFactory::recieveChunked: current data:\n%s", data.data() ); | 338 | // printf( "HttpFactory::recieveChunked: current data:\n%s", data.data() ); |
339 | 339 | ||
340 | temp.fill('\0', 1); | 340 | temp.fill('\0', 1); |
341 | cSizeS = ""; | 341 | cSizeS = ""; |
342 | cSize = 0; | 342 | cSize = 0; |
@@ -349,9 +349,9 @@ const QByteArray HttpFactory::recieveChunked( int sockfd ) const | |||
349 | recv( sockfd, temp.data(), temp.size(), 0 ); | 349 | recv( sockfd, temp.data(), temp.size(), 0 ); |
350 | while( *(temp.data()) != '\n' && *(temp.data()) != ';' ) | 350 | while( *(temp.data()) != '\n' && *(temp.data()) != ';' ) |
351 | { | 351 | { |
352 | // printf( "HttpFactory::recieveChunked: temp.size(): %d\n", temp.size() ); | 352 | // printf( "HttpFactory::recieveChunked: temp.size(): %d\n", temp.size() ); |
353 | printf( "HttpFactory::recieveChunked: temp.data(): %d\n", temp[0] ); | 353 | // printf( "HttpFactory::recieveChunked: temp.data(): %d\n", temp[0] ); |
354 | cSizeS += temp[0]; | 354 | cSizeS += temp[0]; |
355 | recv( sockfd, temp.data(), temp.size(), 0 ); | 355 | recv( sockfd, temp.data(), temp.size(), 0 ); |
356 | } | 356 | } |
357 | 357 | ||
diff --git a/noncore/net/ubrowser/opie-ubrowser.control b/noncore/net/ubrowser/opie-ubrowser.control index b60098b..17c716e 100644 --- a/noncore/net/ubrowser/opie-ubrowser.control +++ b/noncore/net/ubrowser/opie-ubrowser.control | |||
@@ -2,8 +2,8 @@ Files: bin/ubrowser apps/Applications/ubrowser.desktop pics/ubrowser/*.png | |||
2 | Priority: optional | 2 | Priority: optional |
3 | Section: opie/applications | 3 | Section: opie/applications |
4 | Maintainer: Thomas Stephens <spiralman@softhome.net> | 4 | Maintainer: Thomas Stephens <spiralman@softhome.net> |
5 | Architecture: arm | 5 | Architecture: arm |
6 | Version: 0.0-$SUB_VERSION | 6 | Version: 0.1-$SUB_VERSION |
7 | Depends: opie-base | 7 | Depends: opie-base |
8 | License: GPL | 8 | License: GPL |
9 | Description: a very small web browser | 9 | Description: a very small web browser |