Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8c55d486
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
8c55d486
编写于
11月 16, 2019
作者:
S
slguan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TBASE-1164]
上级
9c7fb6b0
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
3 addition
and
8 deletion
+3
-8
src/os/darwin/src/tdarwin.c
src/os/darwin/src/tdarwin.c
+0
-1
src/os/linux/src/tlinux.c
src/os/linux/src/tlinux.c
+0
-1
src/rpc/src/ttcpserver.c
src/rpc/src/ttcpserver.c
+2
-1
src/util/src/tglobalcfg.c
src/util/src/tglobalcfg.c
+1
-1
src/util/src/tsocket.c
src/util/src/tsocket.c
+0
-4
未找到文件。
src/os/darwin/src/tdarwin.c
浏览文件 @
8c55d486
...
...
@@ -204,7 +204,6 @@ int taosOpenUDServerSocket(char *ip, short port) {
char
name
[
128
];
pTrace
(
"open ud socket:%s"
,
name
);
// if (tsAllowLocalhost) ip = "0.0.0.0";
sprintf
(
name
,
"%s.%d"
,
ip
,
port
);
bzero
((
char
*
)
&
serverAdd
,
sizeof
(
serverAdd
));
...
...
src/os/linux/src/tlinux.c
浏览文件 @
8c55d486
...
...
@@ -197,7 +197,6 @@ int taosOpenUDServerSocket(char *ip, short port) {
char
name
[
128
];
pTrace
(
"open ud socket:%s"
,
name
);
// if (tsAllowLocalhost) ip = "0.0.0.0";
sprintf
(
name
,
"%s.%d"
,
ip
,
port
);
bzero
((
char
*
)
&
serverAdd
,
sizeof
(
serverAdd
));
...
...
src/rpc/src/ttcpserver.c
浏览文件 @
8c55d486
...
...
@@ -195,8 +195,9 @@ static void taosProcessTcpData(void *param) {
void
*
buffer
=
malloc
(
1024
);
int
headLen
=
taosReadMsg
(
pFdObj
->
fd
,
buffer
,
sizeof
(
STaosHeader
));
if
(
headLen
!=
sizeof
(
STaosHeader
))
{
tError
(
"%s read error, headLen:%d
"
,
pThreadObj
->
label
,
headLen
);
tError
(
"%s read error, headLen:%d
, errno:%d"
,
pThreadObj
->
label
,
headLen
,
errno
);
taosCleanUpFdObj
(
pFdObj
);
tfree
(
buffer
);
continue
;
...
...
src/util/src/tglobalcfg.c
浏览文件 @
8c55d486
...
...
@@ -77,7 +77,7 @@ float tsRatioOfQueryThreads = 0.5;
char
tsPublicIp
[
TSDB_IPv4ADDR_LEN
]
=
{
0
};
char
tsInternalIp
[
TSDB_IPv4ADDR_LEN
]
=
{
0
};
char
tsPrivateIp
[
TSDB_IPv4ADDR_LEN
]
=
{
0
};
char
tsServerIpStr
[
TSDB_IPv4ADDR_LEN
]
=
"
0.0.0.0
"
;
char
tsServerIpStr
[
TSDB_IPv4ADDR_LEN
]
=
"
127.0.0.1
"
;
short
tsNumOfVnodesPerCore
=
8
;
short
tsNumOfTotalVnodes
=
0
;
short
tsCheckHeaderFile
=
0
;
...
...
src/util/src/tsocket.c
浏览文件 @
8c55d486
...
...
@@ -280,7 +280,6 @@ int taosOpenUdpSocket(char *ip, short port) {
int
bufSize
=
8192000
;
pTrace
(
"open udp socket:%s:%d"
,
ip
,
port
);
// if (tsAllowLocalhost) ip = "0.0.0.0";
memset
((
char
*
)
&
localAddr
,
0
,
sizeof
(
localAddr
));
localAddr
.
sin_family
=
AF_INET
;
...
...
@@ -345,7 +344,6 @@ int taosOpenTcpClientSocket(char *destIp, short destPort, char *clientIp) {
int
ret
;
pTrace
(
"open tcp client socket:%s:%d"
,
destIp
,
destPort
);
// if (tsAllowLocalhost) destIp = "0.0.0.0";
sockFd
=
(
int
)
socket
(
PF_INET
,
SOCK_STREAM
,
IPPROTO_TCP
);
...
...
@@ -441,7 +439,6 @@ int taosOpenTcpServerSocket(char *ip, short port) {
int
reuse
;
pTrace
(
"open tcp server socket:%s:%d"
,
ip
,
port
);
// if (tsAllowLocalhost) ip = "0.0.0.0";
bzero
((
char
*
)
&
serverAdd
,
sizeof
(
serverAdd
));
serverAdd
.
sin_family
=
AF_INET
;
...
...
@@ -483,7 +480,6 @@ int taosOpenRawSocket(char *ip) {
struct
sockaddr_in
rawAdd
;
pTrace
(
"open udp raw socket:%s"
,
ip
);
// if (tsAllowLocalhost) ip = "0.0.0.0";
fd
=
(
int
)
socket
(
AF_INET
,
SOCK_RAW
,
IPPROTO_UDP
);
if
(
fd
<
0
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录