Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
0702150f
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
大约 1 年 前同步成功
通知
9
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看板
体验新版 GitCode,发现更多精彩内容 >>
You need to sign in or sign up before continuing.
提交
0702150f
编写于
9月 03, 2008
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make no-tlsext compile.
上级
a0ee0815
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
1 deletion
+8
-1
apps/s_client.c
apps/s_client.c
+6
-0
ssl/s23_clnt.c
ssl/s23_clnt.c
+2
-1
未找到文件。
apps/s_client.c
浏览文件 @
0702150f
...
@@ -205,7 +205,9 @@ static int c_showcerts=0;
...
@@ -205,7 +205,9 @@ static int c_showcerts=0;
static
void
sc_usage
(
void
);
static
void
sc_usage
(
void
);
static
void
print_stuff
(
BIO
*
berr
,
SSL
*
con
,
int
full
);
static
void
print_stuff
(
BIO
*
berr
,
SSL
*
con
,
int
full
);
#ifndef OPENSSL_NO_TLSEXT
static
int
ocsp_resp_cb
(
SSL
*
s
,
void
*
arg
);
static
int
ocsp_resp_cb
(
SSL
*
s
,
void
*
arg
);
#endif
static
BIO
*
bio_c_out
=
NULL
;
static
BIO
*
bio_c_out
=
NULL
;
static
int
c_quiet
=
0
;
static
int
c_quiet
=
0
;
static
int
c_ign_eof
=
0
;
static
int
c_ign_eof
=
0
;
...
@@ -1653,6 +1655,8 @@ static void print_stuff(BIO *bio, SSL *s, int full)
...
@@ -1653,6 +1655,8 @@ static void print_stuff(BIO *bio, SSL *s, int full)
(
void
)
BIO_flush
(
bio
);
(
void
)
BIO_flush
(
bio
);
}
}
#ifndef OPENSSL_NO_TLSEXT
static
int
ocsp_resp_cb
(
SSL
*
s
,
void
*
arg
)
static
int
ocsp_resp_cb
(
SSL
*
s
,
void
*
arg
)
{
{
const
unsigned
char
*
p
;
const
unsigned
char
*
p
;
...
@@ -1678,3 +1682,5 @@ static int ocsp_resp_cb(SSL *s, void *arg)
...
@@ -1678,3 +1682,5 @@ static int ocsp_resp_cb(SSL *s, void *arg)
OCSP_RESPONSE_free
(
rsp
);
OCSP_RESPONSE_free
(
rsp
);
return
1
;
return
1
;
}
}
#endif
ssl/s23_clnt.c
浏览文件 @
0702150f
...
@@ -276,7 +276,7 @@ static int ssl23_client_hello(SSL *s)
...
@@ -276,7 +276,7 @@ static int ssl23_client_hello(SSL *s)
{
{
version
=
SSL2_VERSION
;
version
=
SSL2_VERSION
;
}
}
#ifndef OPENSSL_NO_TLSEXT
if
(
version
!=
SSL2_VERSION
)
if
(
version
!=
SSL2_VERSION
)
{
{
/* have to disable SSL 2.0 compatibility if we need TLS extensions */
/* have to disable SSL 2.0 compatibility if we need TLS extensions */
...
@@ -291,6 +291,7 @@ static int ssl23_client_hello(SSL *s)
...
@@ -291,6 +291,7 @@ static int ssl23_client_hello(SSL *s)
ssl2_compat
=
0
;
ssl2_compat
=
0
;
#endif
#endif
}
}
#endif
buf
=
(
unsigned
char
*
)
s
->
init_buf
->
data
;
buf
=
(
unsigned
char
*
)
s
->
init_buf
->
data
;
if
(
s
->
state
==
SSL23_ST_CW_CLNT_HELLO_A
)
if
(
s
->
state
==
SSL23_ST_CW_CLNT_HELLO_A
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录