00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00023 #ifndef _ERIPCPRIVATE_H_
00024 #define _ERIPCPRIVATE_H_
00025
00026 #include <stdio.h>
00027 #include <stddef.h>
00028 #include <stdlib.h>
00029 #include <string.h>
00030 #include <sys/types.h>
00031 #include <sys/socket.h>
00032 #include <netinet/in.h>
00033 #include <arpa/inet.h>
00034 #include <unistd.h>
00035
00036 #include "eripc.h"
00037
00038 #ifdef __cplusplus
00039 extern "C"
00040 {
00041 #endif
00042
00043 typedef struct erInternalClientChannel_t
00044 {
00045 int sockfd;
00046 struct sockaddr_in serverAdr;
00047 } erInternalClientChannel_t;
00048
00049 typedef struct erInternalServerChannel_t
00050 {
00051 int sockfd;
00052 } erInternalServerChannel_t;
00053
00054 #ifdef __cplusplus
00055 }
00056 #endif
00057
00058 #endif