From 3843b689bbdf6b93a72e88cc5df2ca69b06f0461 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Wed, 16 Mar 2022 22:19:43 +0800 Subject: [PATCH] handle except --- include/libs/transport/trpc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/libs/transport/trpc.h b/include/libs/transport/trpc.h index 3e42036567..6bc28e3ea0 100644 --- a/include/libs/transport/trpc.h +++ b/include/libs/transport/trpc.h @@ -38,12 +38,14 @@ typedef struct SRpcConnInfo { typedef struct SRpcMsg { tmsg_t msgType; + tmsg_t expectMsgType; void * pCont; int contLen; int32_t code; void * handle; // rpc handle returned to app void * ahandle; // app handle set by client int noResp; // has response or not(default 0 indicate resp); + } SRpcMsg; typedef struct SRpcInit {