wangzhengquan
2020-07-17 3afe38168c44b59f1732f2d55ec08b8f81d879bc
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