From 8b89e81b09adbb06f6e5e64aa115a1eef6e75b57 Mon Sep 17 00:00:00 2001
From: wangzhengquan <wangzhengquan85@126.com>
Date: 星期一, 30 十一月 2020 11:10:15 +0800
Subject: [PATCH] update

---
 src/socket/net_mod_socket_wrapper.c |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/socket/net_mod_socket_wrapper.c b/src/socket/net_mod_socket_wrapper.c
index e3d5c8d..7e7ed92 100644
--- a/src/socket/net_mod_socket_wrapper.c
+++ b/src/socket/net_mod_socket_wrapper.c
@@ -125,6 +125,13 @@
 	net_mod_socket_t *sockt = (net_mod_socket_t *)_socket;
 	return sockt->sockt->pub(node_arr, node_arr_len, topic, topic_size, content, content_size);
 }
+int net_mod_socket_pub_timeout(void *_sockt, net_node_t *node_arr, int node_arr_len, char *topic, int topic_size, void *content, int content_size, int timeout){
+	return 0;
+}
+int net_mod_socket_pub_nowait(void *_sockt, net_node_t *node_arr, int node_arr_len, char *topic, int topic_size, void *content, int content_size){
+	return 0;
+}
+
 
 
 
@@ -208,3 +215,14 @@
 	 
 	return NetModSocket::free_recv_msg_arr(arr, len);
 }
+
+
+
+int shm_mod_socket_remove_keys(int keys[], int length){
+	return ShmModSocket::remove_keys(keys, length);
+}
+
+int shm_mod_socket_remove_key(int key){
+	int keys[] = {key};
+	return ShmModSocket::remove_keys(keys, 1);
+}

--
Gitblit v1.8.0