Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
1738bb61
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看板
提交
1738bb61
编写于
9月 03, 2001
作者:
G
Geoff Thorpe
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add a new ERR function, "ERR_unload_strings", to complement the existing
"ERR_load_strings" function.
上级
91b3f0e6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
27 addition
and
0 deletion
+27
-0
crypto/err/err.c
crypto/err/err.c
+26
-0
crypto/err/err.h
crypto/err/err.h
+1
-0
未找到文件。
crypto/err/err.c
浏览文件 @
1738bb61
...
...
@@ -218,6 +218,7 @@ struct st_ERR_FNS
void
(
*
cb_err_del
)(
void
);
ERR_STRING_DATA
*
(
*
cb_err_get_item
)(
const
ERR_STRING_DATA
*
);
ERR_STRING_DATA
*
(
*
cb_err_set_item
)(
ERR_STRING_DATA
*
);
ERR_STRING_DATA
*
(
*
cb_err_del_item
)(
ERR_STRING_DATA
*
);
/* Works on the "thread_hash" error-state table */
LHASH
*
(
*
cb_thread_get
)(
void
);
ERR_STATE
*
(
*
cb_thread_get_item
)(
const
ERR_STATE
*
);
...
...
@@ -232,6 +233,7 @@ static LHASH *int_err_get(void);
static
void
int_err_del
(
void
);
static
ERR_STRING_DATA
*
int_err_get_item
(
const
ERR_STRING_DATA
*
);
static
ERR_STRING_DATA
*
int_err_set_item
(
ERR_STRING_DATA
*
);
static
ERR_STRING_DATA
*
int_err_del_item
(
ERR_STRING_DATA
*
);
static
LHASH
*
int_thread_get
(
void
);
static
ERR_STATE
*
int_thread_get_item
(
const
ERR_STATE
*
);
static
ERR_STATE
*
int_thread_set_item
(
ERR_STATE
*
);
...
...
@@ -244,6 +246,7 @@ static const ERR_FNS err_defaults =
int_err_del
,
int_err_get_item
,
int_err_set_item
,
int_err_del_item
,
int_thread_get
,
int_thread_get_item
,
int_thread_set_item
,
...
...
@@ -368,6 +371,19 @@ static ERR_STRING_DATA *int_err_set_item(ERR_STRING_DATA *d)
CRYPTO_r_unlock
(
CRYPTO_LOCK_ERR
);
return
p
;
}
static
ERR_STRING_DATA
*
int_err_del_item
(
ERR_STRING_DATA
*
d
)
{
ERR_STRING_DATA
*
p
;
LHASH
*
hash
;
err_fns_check
();
hash
=
ERRFN
(
err_get
)();
if
(
!
hash
)
return
NULL
;
CRYPTO_r_lock
(
CRYPTO_LOCK_ERR
);
p
=
(
ERR_STRING_DATA
*
)
lh_delete
(
hash
,
d
);
CRYPTO_r_unlock
(
CRYPTO_LOCK_ERR
);
return
p
;
}
static
LHASH
*
int_thread_get
(
void
)
{
LHASH
*
toret
=
NULL
;
...
...
@@ -545,6 +561,16 @@ void ERR_load_strings(int lib, ERR_STRING_DATA *str)
}
}
void
ERR_unload_strings
(
int
lib
,
ERR_STRING_DATA
*
str
)
{
while
(
str
->
error
)
{
str
->
error
|=
ERR_PACK
(
lib
,
0
,
0
);
ERRFN
(
err_del_item
)(
str
);
str
++
;
}
}
void
ERR_free_strings
(
void
)
{
err_fns_check
();
...
...
crypto/err/err.h
浏览文件 @
1738bb61
...
...
@@ -259,6 +259,7 @@ void ERR_print_errors(BIO *bp);
void
ERR_add_error_data
(
int
num
,
...);
#endif
void
ERR_load_strings
(
int
lib
,
ERR_STRING_DATA
str
[]);
void
ERR_unload_strings
(
int
lib
,
ERR_STRING_DATA
str
[]);
void
ERR_load_ERR_strings
(
void
);
void
ERR_load_crypto_strings
(
void
);
void
ERR_free_strings
(
void
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录