Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
24b44446
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看板
提交
24b44446
编写于
11月 28, 2000
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Comments on SSL_peek deficiencies
上级
87739b2c
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
12 addition
and
2 deletion
+12
-2
ssl/s2_lib.c
ssl/s2_lib.c
+3
-0
ssl/s3_lib.c
ssl/s3_lib.c
+2
-2
ssl/ssl_lib.c
ssl/ssl_lib.c
+7
-0
未找到文件。
ssl/s2_lib.c
浏览文件 @
24b44446
...
...
@@ -260,6 +260,9 @@ SSL_CIPHER *ssl2_get_cipher(unsigned int u)
int
ssl2_pending
(
SSL
*
s
)
{
/* Unlike ssl2_pending, this one probably works (if read-ahead
* is disabled), but it should be examined
* XXX */
return
(
s
->
s2
->
ract_data_length
);
}
...
...
ssl/s3_lib.c
浏览文件 @
24b44446
...
...
@@ -638,10 +638,10 @@ SSL_CIPHER *ssl3_get_cipher(unsigned int u)
return
(
NULL
);
}
/* The problem is that it may not be the correct record type */
int
ssl3_pending
(
SSL
*
s
)
{
return
(
s
->
s3
->
rrec
.
length
);
/* The problem is that it may not be the correct record type */
return
(
s
->
s3
->
rrec
.
length
);
/* FIXME */
}
int
ssl3_new
(
SSL
*
s
)
...
...
ssl/ssl_lib.c
浏览文件 @
24b44446
...
...
@@ -576,6 +576,13 @@ int SSL_get_read_ahead(SSL *s)
int
SSL_pending
(
SSL
*
s
)
{
/* SSL_pending cannot work properly if read-ahead is enabled
* (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)),
* and it is impossible to fix since SSL_pending cannot report
* errors that may be observed while scanning the new data.
* (Note that SSL_pending() is often used as a boolean value,
* so we'd better not return -1.)
*/
return
(
s
->
method
->
ssl_pending
(
s
));
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录