HIPC  0.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
usoc.h
Go to the documentation of this file.
1 #ifndef HIPC_POSIX_USOC_H
2 #define HIPC_POSIX_USOC_H
3 
4 struct HIPC_usoc {
5  int fdr;
6  int fdw;
7 };
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13  void hipcPosixUsocInit(struct HIPC_usoc *so_p, const int fdr,
14  const int fdw);
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 #endif
void hipcPosixUsocInit(struct HIPC_usoc *so_p, const int fdr, const int fdw)
Initializes a universal socket.
Definition: posix_usoc.c:14
int fdw
Definition: usoc.h:6
Definition: usoc.h:4
int fdr
Definition: usoc.h:5