X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=doc%2Fcrypto%2FBIO_push.pod;fp=doc%2Fcrypto%2FBIO_push.pod;h=1523e5b6958b5ce32a65c43c4ea9abe52b1dc13b;hb=85556b4dec97b1402e1edeaef6ffc0e9cd931457;hp=8a2657cd588ca38ddc0ce9bc5478aa20281bb0c6;hpb=173755255837d22c2bfbfe455164c67758224cb1;p=openssl.git diff --git a/doc/crypto/BIO_push.pod b/doc/crypto/BIO_push.pod index 8a2657cd58..1523e5b695 100644 --- a/doc/crypto/BIO_push.pod +++ b/doc/crypto/BIO_push.pod @@ -2,14 +2,15 @@ =head1 NAME -BIO_push, BIO_pop - add and remove BIOs from a chain. +BIO_push, BIO_pop, BIO_set_next - add and remove BIOs from a chain. =head1 SYNOPSIS #include - BIO * BIO_push(BIO *b,BIO *append); - BIO * BIO_pop(BIO *b); + BIO *BIO_push(BIO *b,BIO *append); + BIO *BIO_pop(BIO *b); + void BIO_set_next(BIO *b, BIO *next); =head1 DESCRIPTION @@ -21,6 +22,10 @@ in the chain, or NULL if there is no next BIO. The removed BIO then becomes a single BIO with no association with the original chain, it can thus be freed or attached to a different chain. +BIO_set_next() replaces the existing next BIO in a chain with the BIO pointed to +by B. The new chain may include some of the same BIOs from the old chain +or it may be completely different. + =head1 NOTES The names of these functions are perhaps a little misleading. BIO_push() @@ -66,4 +71,10 @@ BIO. =head1 SEE ALSO -TBA +L + +=head1 HISTORY + +The BIO_set_next() function was added in OpenSSL version 1.1.0. + +=cut