increase eet_connection max msg size to 1Mb - more reasonable

SVN revision: 66634
This commit is contained in:
Carsten Haitzler 2011-12-29 13:06:30 +00:00
parent 1a27eb8813
commit 76b51f889f
2 changed files with 7 additions and 1 deletions

View File

@ -556,3 +556,8 @@
* added eet_file_get to return the filename of an Eet_File
* Eet_File filenames are now stringshared
* added mempool allocators
2011-12-29 Carsten Haitzler (The Rasterman)
* increase eet_connection packet size to 1Mb - more reasonable.

View File

@ -35,7 +35,8 @@ void *alloca(size_t);
#include "Eet.h"
#include "Eet_private.h"
#define MAX_MSG_SIZE (64 * 1024)
/* max message size: 1Mb - raised from original 64Kb */
#define MAX_MSG_SIZE (1024 * 1024)
#define MAGIC_EET_DATA_PACKET 0x4270ACE1
struct _Eet_Connection