-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/71666/
-----------------------------------------------------------
(Updated Nov. 19, 2019, 4:29 p.m.)
Review request for mesos, Benno Evers, Benjamin Mahler, Greg Mann, and Till
Toenshoff.
Changes
-------
* Added a "compute_thread" so that calls to `SSL_read` and `SSL_write` can be
spread onto (many) libprocess worker threads rather than the (one) event loop
thread.
* Changed shutdown to happen asynchronously but accept dirty shutdowns.
* Guarded against new send/recv calls after shutdown.
Bugs: MESOS-10010
https://issues.apache.org/jira/browse/MESOS-10010
Repository: mesos
Description
-------
This completes a fully functional client-side SSL socket.
Needs a bit of cleanup and more error handling though.
Diffs (updated)
-----
3rdparty/libprocess/src/ssl/socket_wrapper.hpp PRE-CREATION
3rdparty/libprocess/src/ssl/socket_wrapper.cpp PRE-CREATION
Diff: https://reviews.apache.org/r/71666/diff/6/
Changes: https://reviews.apache.org/r/71666/diff/5-6/
Testing (updated)
-------
```
cmake --build . --target libprocess-tests
libprocess-tests
```
Running libprocess-tests yields:
```
[ FAILED ] SSLTest.ValidDowngrade
[ FAILED ] SSLTest.ValidDowngradeEachProtocol
```
Thanks,
Joseph Wu