Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
4565c3e3
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看板
提交
4565c3e3
编写于
5月 05, 1999
作者:
U
Ulf Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use ANSI stdarg.
上级
5fd1e150
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
14 addition
and
39 deletion
+14
-39
crypto/bio/b_print.c
crypto/bio/b_print.c
+6
-11
crypto/bio/bio.h
crypto/bio/bio.h
+1
-21
crypto/err/err.c
crypto/err/err.c
+6
-6
crypto/err/err.h
crypto/err/err.h
+1
-1
未找到文件。
crypto/bio/b_print.c
浏览文件 @
4565c3e3
...
...
@@ -61,32 +61,27 @@
*/
#include <stdio.h>
#include <stdarg.h>
#include "cryptlib.h"
#include <openssl/bio.h>
int
BIO_printf
(
VAR_PLIST
(
BIO
*
,
bio
)
)
VAR_ALIST
int
BIO_printf
(
BIO
*
bio
,
...)
{
VAR_BDEFN
(
args
,
BIO
*
,
bio
)
;
va_list
args
;
char
*
format
;
int
ret
;
MS_STATIC
char
hugebuf
[
1024
*
2
];
/* 10k in one chunk is the limit */
VAR_INIT
(
args
,
BIO
*
,
bio
);
VAR_ARG
(
args
,
char
*
,
format
);
va_start
(
args
,
bio
);
format
=
va_arg
(
args
,
char
*
);
hugebuf
[
0
]
=
'\0'
;
/* no-one uses _doprnt anymore and it appears to be broken under SunOS 4.1.4 */
#if 0 && defined(sun) && !defined(VAR_ANSI) /**/
_doprnt(hugebuf,format,args);
#else
/* !sun */
vsprintf
(
hugebuf
,
format
,
args
);
#endif
/* sun */
ret
=
BIO_write
(
bio
,
hugebuf
,
strlen
(
hugebuf
));
VAR_END
(
args
);
va_end
(
args
);
return
(
ret
);
}
crypto/bio/bio.h
浏览文件 @
4565c3e3
...
...
@@ -532,28 +532,8 @@ void BIO_copy_next_retry(BIO *b);
long
BIO_ghbn_ctrl
(
int
cmd
,
int
iarg
,
char
*
parg
);
/* Tim Hudson's portable varargs stuff */
int
BIO_printf
(
BIO
*
bio
,
...);
#define VAR_ANSI
/* select ANSI version by default */
#endif
#ifdef VAR_ANSI
/* ANSI version of a "portable" macro set for variable length args */
#ifndef __STDARG_H__
/**/
#include <stdarg.h>
#endif
/**/
#define VAR_PLIST(arg1type,arg1) arg1type arg1, ...
#define VAR_PLIST2(arg1type,arg1,arg2type,arg2) arg1type arg1,arg2type arg2,...
#define VAR_ALIST
#define VAR_BDEFN(args,arg1type,arg1) va_list args
#define VAR_BDEFN2(args,arg1type,arg1,arg2type,arg2) va_list args
#define VAR_INIT(args,arg1type,arg1) va_start(args,arg1);
#define VAR_INIT2(args,arg1type,arg1,arg2type,arg2) va_start(args,arg2);
#define VAR_ARG(args,type,arg) arg=va_arg(args,type)
#define VAR_END(args) va_end(args);
int
BIO_printf
(
VAR_PLIST
(
BIO
*
,
bio
)
);
/* BEGIN ERROR CODES */
/* The following lines are auto generated by the script mkerr.pl. Any changes
* made after this point may be overwritten when the script is next run.
...
...
crypto/err/err.c
浏览文件 @
4565c3e3
...
...
@@ -57,6 +57,7 @@
*/
#include <stdio.h>
#include <stdarg.h>
#include <openssl/lhash.h>
#include <openssl/crypto.h>
#include "cryptlib.h"
...
...
@@ -580,10 +581,9 @@ void ERR_set_error_data(char *data, int flags)
es
->
err_data_flags
[
es
->
top
]
=
flags
;
}
void
ERR_add_error_data
(
VAR_PLIST
(
int
,
num
))
VAR_ALIST
void
ERR_add_error_data
(
int
num
,
...)
{
VAR_BDEFN
(
args
,
int
,
num
)
;
va_list
args
;
int
i
,
n
,
s
;
char
*
str
,
*
p
,
*
a
;
...
...
@@ -592,11 +592,11 @@ VAR_ALIST
if
(
str
==
NULL
)
return
;
str
[
0
]
=
'\0'
;
VAR_INIT
(
args
,
int
,
num
);
va_start
(
args
,
num
);
n
=
0
;
for
(
i
=
0
;
i
<
num
;
i
++
)
{
VAR_ARG
(
args
,
char
*
,
a
);
a
=
va_arg
(
args
,
char
*
);
/* ignore NULLs, thanks to Bob Beck <beck@obtuse.com> */
if
(
a
!=
NULL
)
{
...
...
@@ -618,6 +618,6 @@ VAR_ALIST
}
ERR_set_error_data
(
str
,
ERR_TXT_MALLOCED
|
ERR_TXT_STRING
);
VAR_END
(
args
);
va_end
(
args
);
}
crypto/err/err.h
浏览文件 @
4565c3e3
...
...
@@ -235,7 +235,7 @@ void ERR_print_errors_fp(FILE *fp);
#endif
#ifdef HEADER_BIO_H
void
ERR_print_errors
(
BIO
*
bp
);
void
ERR_add_error_data
(
VAR_PLIST
(
int
,
num
)
);
void
ERR_add_error_data
(
int
num
,
...
);
#endif
void
ERR_load_strings
(
int
lib
,
ERR_STRING_DATA
str
[]);
void
ERR_load_ERR_strings
(
void
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录