Change buffer sizes to support GR-PEACH

Dependencies:   CyaSSL

Dependents:   GR-PEACH_Azure_Speech

Fork of HTTPClient-SSL by MultiTech

Revision:
32:d9db238bb8a3
Parent:
31:0675a342e45c
Child:
33:3b2809748a9e
--- a/HTTPClient.cpp	Wed Aug 27 21:19:58 2014 +0000
+++ b/HTTPClient.cpp	Thu Aug 28 00:07:09 2014 +0000
@@ -57,9 +57,9 @@
 
 static  TCPSocketConnection m_sock;
 #define CHUNK_SIZE    256
-#define SEND_BUF_SIZE 512
+#define SEND_BUF_SIZE 1024
 static char send_buf[SEND_BUF_SIZE] ;
-static char *send_buf_p ;
+static char *send_buf_p = NULL;
 
 static int SocketReceive(CYASSL* ssl, char *buf, int sz, void *ctx)
 {