Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
1b58b616
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1b58b616
编写于
1月 16, 2002
作者:
G
Geoff Thorpe
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Produce less confusing statistics when "-out_totals" is used.
上级
c70d3817
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
12 deletion
+6
-12
demos/tunala/tunala.c
demos/tunala/tunala.c
+6
-12
未找到文件。
demos/tunala/tunala.c
浏览文件 @
1b58b616
...
...
@@ -278,14 +278,10 @@ static int parse_verify_depth(const char *s, unsigned int *verify_depth)
}
/* Some fprintf format strings used when tunnels close */
static
const
char
*
io_stats_client_dirty
=
" SSL (network) traffic to/from server; %8lu bytes in, %8lu bytes out
\n
"
;
static
const
char
*
io_stats_client_clean
=
" tunnelled data to/from server; %8lu bytes in, %8lu bytes out
\n
"
;
static
const
char
*
io_stats_server_dirty
=
" SSL (network) traffic to/from client; %8lu bytes in, %8lu bytes out
\n
"
;
static
const
char
*
io_stats_server_clean
=
" tunnelled data to/from client; %8lu bytes in, %8lu bytes out
\n
"
;
static
const
char
*
io_stats_dirty
=
" SSL traffic; %8lu bytes in, %8lu bytes out
\n
"
;
static
const
char
*
io_stats_clean
=
" clear traffic; %8lu bytes in, %8lu bytes out
\n
"
;
int
main
(
int
argc
,
char
*
argv
[])
{
...
...
@@ -560,8 +556,7 @@ main_loop:
goto
skip_totals
;
fprintf
(
stderr
,
"Tunnel closing, traffic stats follow
\n
"
);
/* Display the encrypted (over the network) stats */
fprintf
(
stderr
,
(
server_mode
?
io_stats_server_dirty
:
io_stats_client_dirty
),
fprintf
(
stderr
,
io_stats_dirty
,
buffer_total_in
(
state_machine_get_buffer
(
&
t_item
->
sm
,
SM_DIRTY_IN
)),
buffer_total_out
(
state_machine_get_buffer
(
...
...
@@ -570,8 +565,7 @@ main_loop:
* *receive* is data sent *out* of the state_machine on
* its 'clean' side. Hence the apparent back-to-front
* OUT/IN mixup here :-) */
fprintf
(
stderr
,
(
server_mode
?
io_stats_server_clean
:
io_stats_client_clean
),
fprintf
(
stderr
,
io_stats_clean
,
buffer_total_out
(
state_machine_get_buffer
(
&
t_item
->
sm
,
SM_CLEAN_OUT
)),
buffer_total_in
(
state_machine_get_buffer
(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录