Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
6600ae49
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6600ae49
编写于
1月 16, 2022
作者:
dengyihao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor code
上级
60b48e3e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
18 addition
and
8 deletion
+18
-8
source/libs/transport/src/transport.c
source/libs/transport/src/transport.c
+18
-8
未找到文件。
source/libs/transport/src/transport.c
浏览文件 @
6600ae49
...
...
@@ -151,6 +151,7 @@ typedef struct SRpcConn {
}
SRpcConn
;
// auth function
static
int
uvAuthMsg
(
SRpcConn
*
pConn
,
char
*
msg
,
int
msgLen
);
static
int
rpcAuthenticateMsg
(
void
*
pMsg
,
int
msgLen
,
void
*
pAuth
,
void
*
pKey
);
static
void
rpcBuildAuthHead
(
void
*
pMsg
,
int
msgLen
,
void
*
pAuth
,
void
*
pKey
);
static
int
rpcAddAuthPart
(
SRpcConn
*
pConn
,
char
*
msg
,
int
msgLen
);
...
...
@@ -259,7 +260,7 @@ static bool isReadAll(SConnBuffer* data) {
SRpcHead
rpcHead
;
int32_t
headLen
=
sizeof
(
rpcHead
);
if
(
data
->
len
>=
headLen
)
{
memcpy
((
char
*
)
&
rpcHead
,
data
->
buf
,
headLen
);
memcpy
((
char
*
)
&
rpcHead
,
data
->
buf
+
RPC_RESERVE_SIZE
,
headLen
);
int32_t
msgLen
=
(
int32_t
)
htonl
((
uint32_t
)
rpcHead
.
msgLen
);
if
(
msgLen
>
data
->
len
)
{
data
->
left
=
msgLen
-
data
->
len
;
...
...
@@ -283,7 +284,7 @@ static void uvDoProcess(SRecvInfo* pRecv) {
// do auth and check
}
static
int
uvAuth
Data
(
SRpcConn
*
pConn
,
char
*
msg
,
int
len
)
{
static
int
uvAuth
Msg
(
SRpcConn
*
pConn
,
char
*
msg
,
int
len
)
{
SRpcHead
*
pHead
=
(
SRpcHead
*
)
msg
;
int
code
=
0
;
...
...
@@ -334,16 +335,16 @@ static int uvAuthData(SRpcConn* pConn, char* msg, int len) {
return
code
;
}
static
void
uvProcessData
(
SRpcConn
*
ctx
)
{
static
void
uvProcessData
(
SRpcConn
*
pConn
)
{
SRecvInfo
info
;
SRecvInfo
*
p
=
&
info
;
SConnBuffer
*
pBuf
=
&
ctx
->
connBuf
;
SConnBuffer
*
pBuf
=
&
pConn
->
connBuf
;
p
->
msg
=
pBuf
->
buf
+
RPC_RESERVE_SIZE
;
p
->
msgLen
=
pBuf
->
len
;
p
->
ip
=
0
;
p
->
port
=
0
;
p
->
shandle
=
ctx
->
shandle
;
//
p
->
thandle
=
ctx
;
p
->
shandle
=
pConn
->
shandle
;
//
p
->
thandle
=
pConn
;
p
->
chandle
=
NULL
;
//
...
...
@@ -351,9 +352,14 @@ static void uvProcessData(SRpcConn* ctx) {
assert
(
rpcIsReq
(
pHead
->
msgType
));
SRpcInfo
*
pRpc
=
(
SRpcInfo
*
)
p
->
shandle
;
SRpcConn
*
pConn
=
(
SRpcConn
*
)
p
->
thandle
;
pConn
->
ahandle
=
(
void
*
)
pHead
->
ahandle
;
// auth here
int8_t
code
=
uvAuthMsg
(
pConn
,
(
char
*
)
pHead
,
p
->
msgLen
);
if
(
code
!=
0
)
{
terrno
=
code
;
}
// rpcCheckAuthentication(pConn, (char*)pHead, pBuf->len);
pHead
->
code
=
htonl
(
pHead
->
code
);
SRpcMsg
rpcMsg
;
...
...
@@ -383,6 +389,9 @@ void uvOnReadCb(uv_stream_t* cli, ssize_t nread, const uv_buf_t* buf) {
}
return
;
}
if
(
terrno
!=
0
)
{
// handle err code
}
if
(
nread
!=
UV_EOF
)
{
tDebug
(
"Read error %s
\n
"
,
uv_err_name
(
nread
));
...
...
@@ -547,6 +556,7 @@ static void connDestroy(SRpcConn* conn) {
uv_timer_stop
(
conn
->
pTimer
);
free
(
conn
->
pTimer
);
uv_close
((
uv_handle_t
*
)
conn
->
pTcp
,
NULL
);
free
(
conn
->
connBuf
.
buf
);
free
(
conn
->
pTcp
);
free
(
conn
->
pWriter
);
free
(
conn
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录