Re: [PATCH] Support BIO_CTRL_EOF in bio implementation

2022-06-23 Thread Evgeny Kotkov
Denis Kovalchuk writes: > The attached patch implements support for this ctrl. I have splitted the > implementation for SSL buckets and APR file wrappers, to allow for separate > hit eof logic. Committed in https://svn.apache.org/r1902208 Thanks, Evgeny Kotkov

[PATCH] Support BIO_CTRL_EOF in bio implementation

2022-06-22 Thread Denis Kovalchuk
I noticed that serf does not support BIO_CTRL_EOF in its bio implementation. The lack of such support can cause incorrect results if this ctrl is called by OpenSSL. For example, OpenSSL 1.1.1e [1] and OpenSSL 3.0+ [2] have such EOF checks. The attached patch implements support for this ctrl. I hav