Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
b2e54eb8
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看板
提交
b2e54eb8
编写于
2月 15, 2016
作者:
V
Valentin Vidic
提交者:
Matt Caswell
10月 17, 2016
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add Postgres support to -starttls
Reviewed-by:
N
Rich Salz
<
rsalz@openssl.org
>
Reviewed-by:
N
Tim Hudson
<
tjh@openssl.org
>
上级
6215f27a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
23 addition
and
2 deletion
+23
-2
apps/s_client.c
apps/s_client.c
+22
-1
doc/apps/s_client.pod
doc/apps/s_client.pod
+1
-1
未找到文件。
apps/s_client.c
浏览文件 @
b2e54eb8
...
@@ -739,7 +739,8 @@ typedef enum PROTOCOL_choice {
...
@@ -739,7 +739,8 @@ typedef enum PROTOCOL_choice {
PROTO_XMPP
,
PROTO_XMPP
,
PROTO_XMPP_SERVER
,
PROTO_XMPP_SERVER
,
PROTO_CONNECT
,
PROTO_CONNECT
,
PROTO_IRC
PROTO_IRC
,
PROTO_POSTGRES
}
PROTOCOL_CHOICE
;
}
PROTOCOL_CHOICE
;
static
const
OPT_PAIR
services
[]
=
{
static
const
OPT_PAIR
services
[]
=
{
...
@@ -751,6 +752,7 @@ static const OPT_PAIR services[] = {
...
@@ -751,6 +752,7 @@ static const OPT_PAIR services[] = {
{
"xmpp-server"
,
PROTO_XMPP_SERVER
},
{
"xmpp-server"
,
PROTO_XMPP_SERVER
},
{
"telnet"
,
PROTO_TELNET
},
{
"telnet"
,
PROTO_TELNET
},
{
"irc"
,
PROTO_IRC
},
{
"irc"
,
PROTO_IRC
},
{
"postgres"
,
PROTO_POSTGRES
},
{
NULL
,
0
}
{
NULL
,
0
}
};
};
...
@@ -2084,6 +2086,25 @@ int s_client_main(int argc, char **argv)
...
@@ -2084,6 +2086,25 @@ int s_client_main(int argc, char **argv)
goto
shut
;
goto
shut
;
}
}
}
}
break
;
case
PROTO_POSTGRES
:
{
static
const
unsigned
char
ssl_request
[]
=
{
/* Length SSLRequest */
0
,
0
,
0
,
8
,
4
,
210
,
22
,
47
};
int
bytes
;
/* Send SSLRequest packet */
BIO_write
(
sbio
,
ssl_request
,
8
);
(
void
)
BIO_flush
(
sbio
);
/* Reply will be a single S if SSL is enabled */
bytes
=
BIO_read
(
sbio
,
sbuf
,
BUFSIZZ
);
if
(
bytes
!=
1
||
sbuf
[
0
]
!=
'S'
)
goto
shut
;
}
break
;
}
}
for
(;;)
{
for
(;;)
{
...
...
doc/apps/s_client.pod
浏览文件 @
b2e54eb8
...
@@ -420,7 +420,7 @@ command for more information.
...
@@ -420,7 +420,7 @@ command for more information.
send the protocol-specific message(s) to switch to TLS for communication.
send the protocol-specific message(s) to switch to TLS for communication.
B<protocol> is a keyword for the intended protocol. Currently, the only
B<protocol> is a keyword for the intended protocol. Currently, the only
supported keywords are "smtp", "pop3", "imap", "ftp", "xmpp", "xmpp-server",
supported keywords are "smtp", "pop3", "imap", "ftp", "xmpp", "xmpp-server",
and "irc
."
"irc" and "postgres
."
=item B<-xmpphost hostname>
=item B<-xmpphost hostname>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录