reverted HTTPCLient debug back to defaulted off

Dependencies:   CyaSSL

Fork of HTTPClient-SSL by Keith Ruenheck

Files at this revision

API Documentation at this revision

Comitter:
kruenhec
Date:
Fri Sep 11 21:51:39 2015 +0000
Parent:
49:240f3b4f2733
Child:
51:68aeee0a25f3
Child:
52:d49ba1ed624c
Commit message:
Made modem work with MedSentry site by increasing chunk size to 512 and changing encoding from text to url

Changed in this revision

HTTPClient.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/HTTPClient.cpp	Thu Jun 25 13:55:25 2015 +0000
+++ b/HTTPClient.cpp	Fri Sep 11 21:51:39 2015 +0000
@@ -55,7 +55,7 @@
 #include "HTTPClient.h"
 
 static  TCPSocketConnection* m_sock;
-#define CHUNK_SIZE    256
+#define CHUNK_SIZE    512 // changed from 256 to work with MedSentry site
 #define SEND_BUF_SIZE 1024
 static char send_buf[SEND_BUF_SIZE] ;
 static char *send_buf_p = NULL;