/*
|
* =====================================================================================
|
*
|
* 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
|