lichao
2021-03-30 8cbb55f3066f71f5a4328193414d4555c87e96be
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
28
29
30
31
/*
 * =====================================================================================
 *
 *       Filename:  defs.h
 *
 *    Description:  
 *
 *        Version:  1.0
 *        Created:  2021年03月26日 19时26分17秒
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  Li Chao (), 
 *   Organization:  
 *
 * =====================================================================================
 */
 
#ifndef DEFS_KP8LKGD0
#define DEFS_KP8LKGD0
 
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
 
typedef boost::uuids::uuid MQId;
 
const MQId kBHBusQueueId = boost::uuids::string_generator()("01234567-89ab-cdef-8349-1234567890ff");
const int kBHCenterPort = 24287;
//TODO center can check shm for previous crash.
 
#endif // end of include guard: DEFS_KP8LKGD0