From 82b028cf63953d8080b63d85468eae488d212194 Mon Sep 17 00:00:00 2001 From: fujuntang <fujuntang@smartai.com> Date: 星期四, 23 九月 2021 14:30:07 +0800 Subject: [PATCH] Fix the data parsing when in multiple threads. --- src/net/net_mod_socket_wrapper.cpp | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/src/net/net_mod_socket_wrapper.cpp b/src/net/net_mod_socket_wrapper.cpp index 5233635..479b0d4 100644 --- a/src/net/net_mod_socket_wrapper.cpp +++ b/src/net/net_mod_socket_wrapper.cpp @@ -103,11 +103,6 @@ return sockt->sendandrecv(node_arr, arrlen, send_buf, send_size, recv_arr, recv_arr_size, err_arr, err_arr_size, -1); } -int net_mod_socket_bind_proc_id(void * _socket, char *proc_id, int len){ - NetModSocket *sockt = (NetModSocket *)_socket; - return sockt->bind_proc_id(proc_id, len); -} - void net_mod_socket_int_set(void * _socket, int data) { NetModSocket *sockt = (NetModSocket *)_socket; sockt->int_set(data); -- Gitblit v1.8.0