Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
93fe6e13
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
接近 2 年 前同步成功
通知
12
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看板
提交
93fe6e13
编写于
9月 16, 2000
作者:
R
Richard Levitte
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add BIO_seek() and BIO_tell() to the BIO control functions manual.
上级
2c281ebb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
16 addition
and
5 deletion
+16
-5
doc/crypto/BIO_ctrl.pod
doc/crypto/BIO_ctrl.pod
+16
-5
未找到文件。
doc/crypto/BIO_ctrl.pod
浏览文件 @
93fe6e13
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
=head1 NAME
=head1 NAME
BIO_ctrl, BIO_callback_ctrl, BIO_ptr_ctrl, BIO_int_ctrl, BIO_reset,
BIO_ctrl, BIO_callback_ctrl, BIO_ptr_ctrl, BIO_int_ctrl, BIO_reset,
BIO_
flush, BIO_eof, BIO_set_close, BIO_get_close, BIO_pending
,
BIO_
seek, BIO_tell, BIO_flush, BIO_eof, BIO_set_close, BIO_get_close
,
BIO_
wpending, BIO_ctrl_pending, BIO_ctrl_wpending, BIO_get_info_callback
,
BIO_
pending, BIO_wpending, BIO_ctrl_pending, BIO_ctrl_wpending
,
BIO_set_info_callback - BIO control operations
BIO_
get_info_callback, BIO_
set_info_callback - BIO control operations
=head1 SYNOPSIS
=head1 SYNOPSIS
...
@@ -17,6 +17,8 @@ BIO_set_info_callback - BIO control operations
...
@@ -17,6 +17,8 @@ BIO_set_info_callback - BIO control operations
long BIO_int_ctrl(BIO *bp,int cmd,long larg,int iarg);
long BIO_int_ctrl(BIO *bp,int cmd,long larg,int iarg);
int BIO_reset(BIO *b);
int BIO_reset(BIO *b);
int BIO_seek(BIO *b, int ofs);
int BIO_tell(BIO *b);
int BIO_flush(BIO *b);
int BIO_flush(BIO *b);
int BIO_eof(BIO *b);
int BIO_eof(BIO *b);
int BIO_set_close(BIO *b,long flag);
int BIO_set_close(BIO *b,long flag);
...
@@ -41,8 +43,14 @@ specific to a particular type of BIO are described in the specific
...
@@ -41,8 +43,14 @@ specific to a particular type of BIO are described in the specific
BIOs manual page as well as any special features of the standard
BIOs manual page as well as any special features of the standard
calls.
calls.
BIO_reset() typically reset a BIO to some initial state, in the case
BIO_reset() typically resets a BIO to some initial state, in the case
of file related BIOs for example it rewinds the file pointer.
of file related BIOs for example it rewinds the file pointer to the
start of the file.
BIO_seek() resets a file related BIO's file position pointer to B<ofs>
bytes from start of file.
BIO_tell() returns the current file position of a file related BIO.
BIO_flush() normally writes out any internally buffered data, in some
BIO_flush() normally writes out any internally buffered data, in some
cases it is used to signal EOF and that no more data will be written.
cases it is used to signal EOF and that no more data will be written.
...
@@ -67,6 +75,9 @@ macros which call BIO_ctrl().
...
@@ -67,6 +75,9 @@ macros which call BIO_ctrl().
BIO_reset() returns 1 for success and 0 for failure.
BIO_reset() returns 1 for success and 0 for failure.
BIO_seek() and BIO_tell() both return the current file position on success
and -1 for failure.
BIO_flush() returns 1 for success and 0 or -1 for failure.
BIO_flush() returns 1 for success and 0 or -1 for failure.
BIO_eof() returns 1 if EOF has been reached 0 otherwise.
BIO_eof() returns 1 if EOF has been reached 0 otherwise.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录