Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
oceanbase
miniob
提交
bd2379af
M
miniob
项目概览
oceanbase
/
miniob
1 年多 前同步成功
通知
74
Star
1521
Fork
537
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
分析
仓库
DevOps
项目成员
Pages
M
miniob
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Pages
分析
分析
仓库分析
DevOps
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
提交
提交
bd2379af
编写于
2月 23, 2022
作者:
羽飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
remove unused function
上级
3c83015e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
29 deletion
+0
-29
src/obclient/client.cpp
src/obclient/client.cpp
+0
-29
未找到文件。
src/obclient/client.cpp
浏览文件 @
bd2379af
...
...
@@ -116,36 +116,7 @@ int init_tcp_sock(const char *server_host, int server_port) {
return
sockfd
;
}
// 这里的代码本来是为了处理控制台不能接收超长字符串的问题
// 但是设置控制台模式为非 ICANON 后,不能再正常的处理 backspace
// 所以暂时不调用这个函数
// 需要测试超长字符串场景的同学,可以通过文本重定向的方式测试
int
set_terminal_noncanonical
()
{
int
fd
=
STDIN_FILENO
;
struct
termios
old_termios
;
int
ret
=
tcgetattr
(
fd
,
&
old_termios
);
if
(
ret
<
0
)
{
printf
(
"Failed to get tc attr. error=%s
\n
"
,
strerror
(
errno
));
return
-
1
;
}
struct
termios
new_attr
=
old_termios
;
new_attr
.
c_lflag
&=
~
ICANON
;
new_attr
.
c_cc
[
VERASE
]
=
'\b'
;
ret
=
tcsetattr
(
fd
,
TCSANOW
,
&
new_attr
);
if
(
ret
<
0
)
{
printf
(
"Failed to set tc attr. error=%s
\n
"
,
strerror
(
errno
));
return
-
1
;
}
return
0
;
}
int
main
(
int
argc
,
char
*
argv
[])
{
int
ret
=
0
;
// set_terminal_noncanonical();
if
(
ret
<
0
)
{
printf
(
"Warning: failed to set terminal non canonical. Long command may be handled incorrect
\n
"
);
}
const
char
*
unix_socket_path
=
nullptr
;
const
char
*
server_host
=
"127.0.0.1"
;
int
server_port
=
PORT_DEFAULT
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录