From 439fb8e1e01f720d2e793fa24a867b2b05779fa8 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sat, 16 Sep 2000 12:01:38 +0000 Subject: [PATCH] Remove redundant manpages and references to them. --- doc/crypto/BIO_ctrl_get_read_request.pod | 38 ------------------------ doc/crypto/BIO_ctrl_pending.pod | 36 ---------------------- doc/crypto/BIO_seek.pod | 30 ------------------- doc/crypto/bio.pod | 3 -- 4 files changed, 107 deletions(-) delete mode 100644 doc/crypto/BIO_ctrl_get_read_request.pod delete mode 100644 doc/crypto/BIO_ctrl_pending.pod delete mode 100644 doc/crypto/BIO_seek.pod diff --git a/doc/crypto/BIO_ctrl_get_read_request.pod b/doc/crypto/BIO_ctrl_get_read_request.pod deleted file mode 100644 index 4325fd16f8..0000000000 --- a/doc/crypto/BIO_ctrl_get_read_request.pod +++ /dev/null @@ -1,38 +0,0 @@ -=pod - -=head1 NAME - - BIO_ctrl_get_read_request - Find out how much bytes are were requested from the BIO - -=head1 SYNOPSIS - - #include - - size_t BIO_ctrl_get_read_request(BIO *bio); - -=head1 DESCRIPTION - -BIO_ctrl_get_read_request() returns the number of bytes that were last -requested from B by a BIO_read() operation. This is useful e.g. for -BIO pairs, so that the application knows how much bytes to supply to B. - -=head1 BUGS - -When B is NULL, the OpenSSL library calls assert(). - -=head1 RETURN VALUES - -The following return values can occur: - -=over 4 - -=item E=0 - -The number of bytes requested. - -=back - -=head1 SEE ALSO - -L, L, -L diff --git a/doc/crypto/BIO_ctrl_pending.pod b/doc/crypto/BIO_ctrl_pending.pod deleted file mode 100644 index 2351191300..0000000000 --- a/doc/crypto/BIO_ctrl_pending.pod +++ /dev/null @@ -1,36 +0,0 @@ -=pod - -=head1 NAME - -BIO_ctrl_pending - Find out how much bytes are buffered in a BIO - -=head1 SYNOPSIS - - #include - - size_t BIO_ctrl_pending(BIO *bio); - -=head1 DESCRIPTION - -BIO_ctrl_pending() returns the number of bytes buffered in a BIO. - -=head1 BUGS - -When B is NULL, the OpenSSL library calls assert(). - -=head1 RETURN VALUES - -The following return values can occur: - -=over 4 - -=item E=0 - -The number of bytes pending the BIO. - -=back - -=head1 SEE ALSO - -L, L, -L diff --git a/doc/crypto/BIO_seek.pod b/doc/crypto/BIO_seek.pod deleted file mode 100644 index 3f92d5cbd5..0000000000 --- a/doc/crypto/BIO_seek.pod +++ /dev/null @@ -1,30 +0,0 @@ -=pod - -=head1 NAME - -BIO_seek, BIO_tell - file BIO operations - -=head1 SYNOPSIS - - #include - - #define BIO_seek(b,ofs) (int)BIO_ctrl(b,BIO_C_FILE_SEEK,ofs,NULL) - #define BIO_tell(b) (int)BIO_ctrl(b,BIO_C_FILE_TELL,0,NULL) - -=head1 DESCRIPTION - -BIO_seek() sets the file position pointer to B bytes from start of file. - -BIO_tell() returns the current file position. - -=head1 RETURN VALUES - -BIO_seek() returns the same value as the underlying fseek() function: -0 for success or -1 for failure. - -BIO_tell() returns the current file position. - -=head1 SEE ALSO - -TBA - diff --git a/doc/crypto/bio.pod b/doc/crypto/bio.pod index c3c18be7dd..24f61dfb56 100644 --- a/doc/crypto/bio.pod +++ b/doc/crypto/bio.pod @@ -40,8 +40,6 @@ BIO). =head1 SEE ALSO L, -L, -L, L, L, L, L, L, @@ -52,6 +50,5 @@ L, L, L, L, L, L, L, L, -L, L, L -- 2.25.1