lower example client/server stack buffer sizes

This commit is contained in:
toddouska
2013-03-29 14:06:36 -07:00
parent 332fd68347
commit f8848aaa1b
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -127,8 +127,8 @@ THREAD_RETURN CYASSL_THREAD client_test(void* args)
char resumeMsg[] = "resuming cyassl!";
int resumeSz = sizeof(resumeMsg);
char msg[64] = "hello cyassl!";
char reply[1024];
char msg[32] = "hello cyassl!"; /* GET may make bigger */
char reply[80];
int input;
int msgSz = (int)strlen(msg);
+1 -1
View File
@@ -120,7 +120,7 @@ THREAD_RETURN CYASSL_THREAD server_test(void* args)
SSL* ssl = 0;
char msg[] = "I hear you fa shizzle!";
char input[1024];
char input[80];
int idx;
int ch;
int version = SERVER_DEFAULT_VERSION;