Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
642a166c
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,发现更多精彩内容 >>
提交
642a166c
编写于
7月 19, 2016
作者:
R
Richard Levitte
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Convert the last uses of sockaddr in apps/* to use BIO_ADDR instead
Reviewed-by:
N
Matt Caswell
<
matt@openssl.org
>
上级
70c22888
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
18 addition
and
8 deletion
+18
-8
apps/s_client.c
apps/s_client.c
+18
-8
未找到文件。
apps/s_client.c
浏览文件 @
642a166c
...
...
@@ -1736,18 +1736,24 @@ int s_client_main(int argc, char **argv)
}
#ifndef OPENSSL_NO_DTLS
if
(
socket_type
==
SOCK_DGRAM
)
{
struct
sockaddr
peer
;
int
peerlen
=
sizeof
peer
;
union
BIO_sock_info_u
peer_info
;
sbio
=
BIO_new_dgram
(
s
,
BIO_NOCLOSE
);
if
(
getsockname
(
s
,
&
peer
,
(
void
*
)
&
peerlen
)
<
0
)
{
if
((
peer_info
.
addr
=
BIO_ADDR_new
())
==
NULL
)
{
BIO_printf
(
bio_err
,
"memory allocation failure
\n
"
);
BIO_closesocket
(
s
);
}
if
(
!
BIO_sock_info
(
s
,
BIO_SOCK_INFO_ADDRESS
,
&
peer_info
))
{
BIO_printf
(
bio_err
,
"getsockname:errno=%d
\n
"
,
get_last_socket_error
());
BIO_ADDR_free
(
peer_info
.
addr
);
BIO_closesocket
(
s
);
goto
end
;
}
(
void
)
BIO_ctrl_set_connected
(
sbio
,
&
peer
);
(
void
)
BIO_ctrl_set_connected
(
sbio
,
peer_info
.
addr
);
BIO_ADDR_free
(
peer_info
.
addr
);
peer_info
.
addr
=
NULL
;
if
(
enable_timeouts
)
{
timeout
.
tv_sec
=
0
;
...
...
@@ -2608,11 +2614,15 @@ static void print_stuff(BIO *bio, SSL *s, int full)
{
/* Print out local port of connection: useful for debugging */
int
sock
;
struct
sockaddr_in
ladd
;
socklen_t
ladd_size
=
sizeof
(
ladd
);
union
BIO_sock_info_u
info
;
sock
=
SSL_get_fd
(
s
);
getsockname
(
sock
,
(
struct
sockaddr
*
)
&
ladd
,
&
ladd_size
);
BIO_printf
(
bio_c_out
,
"LOCAL PORT is %u
\n
"
,
ntohs
(
ladd
.
sin_port
));
if
((
info
.
addr
=
BIO_ADDR_new
())
!=
NULL
&&
BIO_sock_info
(
sock
,
BIO_SOCK_INFO_ADDRESS
,
&
info
))
{
BIO_printf
(
bio_c_out
,
"LOCAL PORT is %u
\n
"
,
ntohs
(
BIO_ADDR_rawport
(
info
.
adr
)));
}
BIO_ADDR_free
(
info
.
addr
);
}
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录