Send the linebuffer BIO to the attic
authortb <tb@openbsd.org>
Sun, 14 May 2023 16:36:25 +0000 (16:36 +0000)
committertb <tb@openbsd.org>
Sun, 14 May 2023 16:36:25 +0000 (16:36 +0000)
commitda8849f96667431c2960d4b02eb630e11c070b6b
treebb238aa7e8ef3cae7fb531aa1a093276dad58ecc
parent2181f9ce30cb18d90b1366c2508a4536bea76527
Send the linebuffer BIO to the attic

  *) On VMS, stdout may very well lead to a file that is written to
     in a record-oriented fashion.  That means that every write() will
     write a separate record, which will be read separately by the
     programs trying to read from it.  This can be very confusing.

     The solution is to put a BIO filter in the way that will buffer
     text until a linefeed is reached, and then write everything a
     line at a time, so every record written will be an actual line,
     not chunks of lines and not (usually doesn't happen, but I've
     seen it once) several lines in one record.  BIO_f_linebuffer() is
     the answer.

     Currently, it's a VMS-only method, because that's where it has
     been tested well enough.
     [Richard Levitte]

Yeah, no, we don't care about any of this and haven't compiled this file
since forever. Looks like tedu's chainsaw got blunt at some point...
lib/libcrypto/bio/bf_lbuf.c [deleted file]