Fix DSA parameter generation control error
[oweals/openssl.git] / doc / crypto / BIO_s_bio.pod
index 592cab4beda6fadbb3e4e3b4880fbf582742bed3..9fe88b26b0af8e8f79e09401cb3e2525e014feef 100644 (file)
@@ -120,13 +120,16 @@ the application then waits for data to be available on the underlying transport
 before flushing the write buffer it will never succeed because the request was
 never sent!
 
+BIO_eof() is true if no data is in the peer BIO and the peer BIO has been
+shutdown.
+
 =head1 RETURN VALUES
 
 BIO_new_bio_pair() returns 1 on success, with the new BIOs available in
 B<bio1> and B<bio2>, or 0 on failure, with NULL pointers stored into the
 locations for B<bio1> and B<bio2>. Check the error stack for more information.
 
-XXXXX: More return values need to be added here
+[XXXXX: More return values need to be added here]
 
 =head1 EXAMPLE