ap_bcreate — create a buffered stream
BUFF *ap_bcreate(pool *p, int flags)
Creates a new buffered stream in p
. The stream is
not associated with any file or socket at this point.
flags
are a combination of one of the following:
B_RD
Reading is buffered.
B_WR
Writing is buffered.
B_RDWR
Reading and writing are buffered.
B_SOCKET
(optional)The stream will be buffering a socket. Note that this flag also
enables ASCII/EBCDIC translation on platforms that use EBCDIC (see
ap_bsetflag()
).