From 48ae739d196e8a1ad681e5a54ad992302119bd83 Mon Sep 17 00:00:00 2001 From: wangzhengquan <wangzhengquan85@126.com> Date: 星期六, 25 七月 2020 16:37:36 +0800 Subject: [PATCH] update --- src/socket/include/dgram_mod_socket.h | 59 +++++++++++++++++++++++++++++++++++++++++++++++------------ 1 files changed, 47 insertions(+), 12 deletions(-) diff --git a/src/socket/include/dgram_mod_socket.h b/src/socket/include/dgram_mod_socket.h index 5e6c424..29e16eb 100644 --- a/src/socket/include/dgram_mod_socket.h +++ b/src/socket/include/dgram_mod_socket.h @@ -7,41 +7,76 @@ #endif -enum socket_mod_t -{ - PULL_PUSH = 1, - REQ_REP = 2, - PAIR = 3, - PUB_SUB = 4, - SURVEY = 5, - BUS = 6 - -}; - +/** + * 鍒涘缓socket + * @return socket鍦板潃 +*/ void *dgram_mod_open_socket(); +/** + * 鍏抽棴socket + * @return 0 鎴愬姛锛� 鍏朵粬鍊� 澶辫触鐨勯敊璇爜 +*/ int dgram_mod_close_socket(void * _socket); +/** + * 缁戝畾绔彛鍒皊ocket, 濡傛灉涓嶇粦瀹氬垯绯荤粺鑷姩鍒嗛厤涓�涓� + * @return 0 鎴愬姛锛� 鍏朵粬鍊� 澶辫触鐨勯敊璇爜 +*/ int dgram_mod_bind(void * _socket, int port); +/** + * 鍙戦�佷俊鎭� + * @port 鍙戦�佺粰璋� + * @return 0 鎴愬姛锛� 鍏朵粬鍊� 澶辫触鐨勯敊璇爜 + */ int dgram_mod_sendto(void *_socket, const void *buf, const int size, const int port); + +/** + * 鎺ユ敹淇℃伅 + * @port 浠庤皝鍝噷鏀跺埌鐨勪俊鎭� + * @return 0 鎴愬姛锛� 鍏朵粬鍊� 澶辫触鐨勯敊璇爜 +*/ int dgram_mod_recvfrom(void *_socket, void **buf, int *size, int *port); +/** + * 鍙戦�佽姹備俊鎭苟绛夊緟鎺ユ敹搴旂瓟 + * @port 鍙戦�佺粰璋� + * @return 0 鎴愬姛锛� 鍏朵粬鍊� 澶辫触鐨勯敊璇爜 +*/ int dgram_mod_sendandrecv(void * _socket, const void *send_buf, const int send_size, const int port, void **recv_buf, int *recv_size) ; -int dgram_mod_get_socket_port(void * _socket) ; +/** + * 鑾峰彇soket绔彛鍙� + */ +int dgram_mod_get_port(void * _socket) ; + +/** + * 閲婃斁瀛樺偍鎺ユ敹淇℃伅鐨刡uf + */ void dgram_mod_free(void *buf) ; +/** + * 鍚姩bus + * + * @return 0 鎴愬姛锛� 鍏朵粬鍊� 澶辫触鐨勯敊璇爜 +*/ int start_bus(void * _socket); /** + * 璁㈤槄鎸囧畾涓婚 + * @topic 涓婚 + * @size 涓婚闀垮害 * @port 鎬荤嚎绔彛 */ int sub(void * _socket, void *topic, int size, int port); /** + * 鍙戝竷涓婚 + * @topic 涓婚 + * @content 涓婚鍐呭 * @port 鎬荤嚎绔彛 */ int pub(void * _socket, void *topic, int topic_size, void *content, int content_size, int port); -- Gitblit v1.8.0