From: raster Date: Thu, 29 Dec 2011 13:06:30 +0000 (+0000) Subject: increase eet_connection max msg size to 1Mb - more reasonable X-Git-Tag: 2.0_alpha~26^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ea484bd6f1023b3a8b8bdcdf4f6be9c88f30917b;p=framework%2Fuifw%2Feet.git increase eet_connection max msg size to 1Mb - more reasonable git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eet@66634 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/ChangeLog b/ChangeLog index fdfdefb..160fab8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. + diff --git a/src/lib/eet_connection.c b/src/lib/eet_connection.c index 0aaa566..7b6b934 100644 --- a/src/lib/eet_connection.c +++ b/src/lib/eet_connection.c @@ -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