clouseau: Refined packet sending

Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>

SVN revision: 71013
This commit is contained in:
Aharon Hillel 2012-05-14 14:38:12 +00:00 committed by Tom Hacohen
parent 9781cdf59c
commit 3ac75eede9
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ Eina_Bool
_add(void *data __UNUSED__, int type __UNUSED__, Ecore_Con_Event_Server_Add *ev)
{
void *p;
size_t size = compose_packet(&p, APP, ACK, "hello! - sent from the client");
size_t size = compose_packet(&p, GUI, ACK, "hello! - sent from the client");
Server *server = malloc(sizeof(*server));
server->sdata = 0;

View File

@ -121,7 +121,7 @@ Eina_Bool
_add(void *data __UNUSED__, int type __UNUSED__, Ecore_Con_Event_Client_Add *ev)
{
void *p;
size_t size = compose_packet(&p, APP, ACK, "hello! - sent from the server");
size_t size = compose_packet(&p, DAEMON, ACK, "hello! - sent from the server");
Ecore_Con_Server *srv;
Ecore_Con_Client *cl;
const Eina_List *clients, *l;