lichao
2021-05-20 4ad4f24f18cf7d0af22ca885baebc6a3eb37e7d0
rename socket.h/cpp to shm_socket.h/cpp.
2 文件已重命名
4个文件已修改
20 ■■■■ 已修改文件
box/center.h 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/defs.cpp 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/msg.cpp 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/shm_socket.cpp 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/shm_socket.h 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/topic_node.h 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
box/center.h
@@ -18,7 +18,7 @@
#ifndef CENTER_TM9OUQTG
#define CENTER_TM9OUQTG
#include "socket.h"
#include "shm_socket.h"
#include <functional>
#include <map>
#include <memory>
src/defs.cpp
@@ -18,7 +18,7 @@
#include "defs.h"
#include "msg.h"
#include "shm_msg_queue.h"
#include "socket.h"
#include "shm_socket.h"
#include <boost/uuid/random_generator.hpp>
#include <boost/uuid/string_generator.hpp>
#include <boost/uuid/uuid.hpp>
src/msg.cpp
@@ -18,7 +18,7 @@
#include "msg.h"
#include "bh_util.h"
#include "defs.h"
#include "socket.h"
#include "shm_socket.h"
namespace bhome_msg
{
src/shm_socket.cpp
File was renamed from src/socket.cpp
@@ -1,7 +1,7 @@
/*
 * =====================================================================================
 *
 *       Filename:  socket.cpp
 *       Filename:  shm_socket.cpp
 *
 *    Description:  
 *
@@ -16,7 +16,7 @@
 * =====================================================================================
 */
#include "socket.h"
#include "shm_socket.h"
#include "bh_util.h"
#include "defs.h"
#include "msg.h"
src/shm_socket.h
File was renamed from src/socket.h
@@ -1,7 +1,7 @@
/*
 * =====================================================================================
 *
 *       Filename:  socket.h
 *       Filename:  shm_socket.h
 *
 *    Description:  
 *
@@ -16,8 +16,8 @@
 * =====================================================================================
 */
#ifndef SOCKET_GWTJHBPO
#define SOCKET_GWTJHBPO
#ifndef SHM_SOCKET_GWTJHBPO
#define SHM_SOCKET_GWTJHBPO
#include "bh_util.h"
#include "defs.h"
@@ -196,4 +196,4 @@
    std::atomic<int> alloc_id_;
};
#endif // end of include guard: SOCKET_GWTJHBPO
#endif // end of include guard: SHM_SOCKET_GWTJHBPO
src/topic_node.h
@@ -19,7 +19,7 @@
#define TOPIC_NODE_YVKWA6TF
#include "msg.h"
#include "socket.h"
#include "shm_socket.h"
#include <atomic>
#include <memory>
#include <mutex>