efl/legacy/ecore/src/lib/ecore_ipc/ecore_ipc_private.h

68 lines
1.2 KiB
C
Raw Normal View History

#ifndef _ECORE_IPC_PRIVATE_H
#define _ECORE_IPC_PRIVATE_H
#include "Ecore_Data.h"
#if USE_OPENSSL
#include <openssl/ssl.h>
#endif
#define ECORE_MAGIC_IPC_SERVER 0x87786556
#define ECORE_MAGIC_IPC_CLIENT 0x78875665
typedef struct _Ecore_Ipc_Client Ecore_Ipc_Client;
typedef struct _Ecore_Ipc_Server Ecore_Ipc_Server;
typedef struct _Ecore_Ipc_Msg_Head Ecore_Ipc_Msg_Head;
2005-04-02 07:59:55 -08:00
#ifdef __sgi
#pragma pack 4
#endif
struct _Ecore_Ipc_Msg_Head
{
int major;
int minor;
int ref;
int ref_to;
int response;
int size;
2005-04-02 07:59:55 -08:00
}
#ifdef _GNU_C_
__attribute__ ((packed));
#endif
;
#ifdef __sgi
#pragma pack 0
#endif
struct _Ecore_Ipc_Client
{
Ecore_List __list_data;
ECORE_MAGIC;
Ecore_Con_Client *client;
void *data;
unsigned char *buf;
int buf_size;
struct {
Ecore_Ipc_Msg_Head i, o;
} prev;
};
struct _Ecore_Ipc_Server
{
Ecore_List __list_data;
ECORE_MAGIC;
Ecore_Con_Server *server;
Ecore_Ipc_Client *clients;
void *data;
unsigned char *buf;
int buf_size;
struct {
Ecore_Ipc_Msg_Head i, o;
} prev;
};
#endif