reverted HTTPCLient debug back to defaulted off
Fork of HTTPClient-SSL by
Revision 54:57ca8f2cf148, committed 2016-01-28
- Comitter:
- kruenhec
- Date:
- Thu Jan 28 21:32:04 2016 +0000
- Parent:
- 53:7eb484761f66
- Child:
- 55:be7aecd7d2ec
- Commit message:
- Doubled the chunk size in HTTP Client to address the serial rx byte dropped problem.
Changed in this revision
HTTPClient.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/HTTPClient.cpp Wed Jan 27 22:55:35 2016 +0000 +++ b/HTTPClient.cpp Thu Jan 28 21:32:04 2016 +0000 @@ -56,7 +56,7 @@ #include "HTTPClient.h" static TCPSocketConnection* m_sock; -#define CHUNK_SIZE 512 // changed from 256 to work with MedSentry site +#define CHUNK_SIZE 1024 // changed from 256 to work with large cookies #define SEND_BUF_SIZE 1024 static char send_buf[SEND_BUF_SIZE] ; static char *send_buf_p = NULL;