Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
b3e72fc3
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,发现更多精彩内容 >>
提交
b3e72fc3
编写于
2月 15, 2006
作者:
N
Nils Larsch
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
make some internal functions static; patch supplied by Kurt Roeckx
上级
90076b96
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
8 deletion
+8
-8
crypto/asn1/tasn_new.c
crypto/asn1/tasn_new.c
+2
-2
crypto/bio/bss_acpt.c
crypto/bio/bss_acpt.c
+4
-4
crypto/bio/bss_dgram.c
crypto/bio/bss_dgram.c
+2
-2
未找到文件。
crypto/asn1/tasn_new.c
浏览文件 @
b3e72fc3
...
...
@@ -68,7 +68,7 @@ static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
int
combine
);
static
void
asn1_item_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
);
static
void
asn1_template_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_TEMPLATE
*
tt
);
void
asn1_primitive_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
);
static
void
asn1_primitive_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
);
ASN1_VALUE
*
ASN1_item_new
(
const
ASN1_ITEM
*
it
)
{
...
...
@@ -373,7 +373,7 @@ int ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
return
0
;
}
void
asn1_primitive_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
)
static
void
asn1_primitive_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
)
{
int
utype
;
if
(
it
&&
it
->
funcs
)
...
...
crypto/bio/bss_acpt.c
浏览文件 @
b3e72fc3
...
...
@@ -100,8 +100,8 @@ static int acpt_new(BIO *h);
static
int
acpt_free
(
BIO
*
data
);
static
int
acpt_state
(
BIO
*
b
,
BIO_ACCEPT
*
c
);
static
void
acpt_close_socket
(
BIO
*
data
);
BIO_ACCEPT
*
BIO_ACCEPT_new
(
void
);
void
BIO_ACCEPT_free
(
BIO_ACCEPT
*
a
);
static
BIO_ACCEPT
*
BIO_ACCEPT_new
(
void
);
static
void
BIO_ACCEPT_free
(
BIO_ACCEPT
*
a
);
#define ACPT_S_BEFORE 1
#define ACPT_S_GET_ACCEPT_SOCKET 2
...
...
@@ -141,7 +141,7 @@ static int acpt_new(BIO *bi)
return
(
1
);
}
BIO_ACCEPT
*
BIO_ACCEPT_new
(
void
)
static
BIO_ACCEPT
*
BIO_ACCEPT_new
(
void
)
{
BIO_ACCEPT
*
ret
;
...
...
@@ -154,7 +154,7 @@ BIO_ACCEPT *BIO_ACCEPT_new(void)
return
(
ret
);
}
void
BIO_ACCEPT_free
(
BIO_ACCEPT
*
a
)
static
void
BIO_ACCEPT_free
(
BIO_ACCEPT
*
a
)
{
if
(
a
==
NULL
)
return
;
...
...
crypto/bio/bss_dgram.c
浏览文件 @
b3e72fc3
...
...
@@ -82,7 +82,7 @@ static int dgram_new(BIO *h);
static
int
dgram_free
(
BIO
*
data
);
static
int
dgram_clear
(
BIO
*
bio
);
int
BIO_dgram_should_retry
(
int
s
);
static
int
BIO_dgram_should_retry
(
int
s
);
static
BIO_METHOD
methods_dgramp
=
{
...
...
@@ -399,7 +399,7 @@ static int dgram_puts(BIO *bp, const char *str)
return
(
ret
);
}
int
BIO_dgram_should_retry
(
int
i
)
static
int
BIO_dgram_should_retry
(
int
i
)
{
int
err
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录