On Sun, Jul 9, 2017 at 9:38 AM, Daniela Engert via Boost
That said, I agree on the opinion which other reviewers already stated on that it lacks some convenience helper functions when it comes to draining or construction of requests. I'd love to see those added to the library.
Yeah this message is coming through loud and clear.. LOL... I will make adjustments to the scope of Beast.
* Beast's zlib emits a few harmless but stupid warnings C4127 "conditional expression is constant" (Microsoft, get rid of them!) and quite some narrowing warnings C4244. These need some cleansing before we can use Beast in our team because of our /W4 /WX policy.
It should be "real" zlib not Beast zlib which is emitting those
warnings. There are two versions of zlib in Beast:
1. The one in
* Beast's test-suite uses the deprecated Boost.Coroutine library which leads to deprecation warnings
Beast's tests use Boost.Asio coroutines (to make sure they work with Beast). It is Asio that uses the deprecated Boost.Coroutine. Asio needs to be updated to work with Coroutine2. I can't do much about this other than not use coroutines in the tests, which would yield less coverage.
* there is an error in the Jamfile of the test-suite which creates a truncated compiler options that msvc complains about (this is already rectified in a later commit, though)
This is a weird issue in bjam would should be fixed in Boost 1.66.0.
I didn't implement the actual download so far because Beast's file_body is not part of the review branch.
`file_body` is now a public interface as of version 74 (no more "out of scope" hehe) Thanks