1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| #ifndef __MOD_SOCKET_H__
| #define __MOD_SOCKET_H__
|
| #include "shm_socket.h"
| #ifdef __cplusplus
| extern "C" {
| #endif
|
| enum shm_mod_t
| {
| PULL_PUSH = 1,
| REQ_REP = 2,
| PAIR = 3,
| PUB_SUB = 4,
| SURVEY = 5,
| BUS = 6
|
| };
|
|
|
|
| #ifdef __cplusplus
| }
| #endif
|
| #endif
|
|