-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/71665/#review219020
-----------------------------------------------------------




3rdparty/libprocess/src/ssl/openssl_socket.cpp
Lines 639-644 (patched)
<https://reviews.apache.org/r/71665/#comment307050>

    Are you missing a `return Continue();` for the case where the send request 
doesn't exist?



3rdparty/libprocess/src/ssl/openssl_socket.cpp
Lines 667-670 (patched)
<https://reviews.apache.org/r/71665/#comment307052>

    Need to handle the case where `ERR_peek_error() != 0`?



3rdparty/libprocess/src/ssl/openssl_socket.cpp
Lines 668-669 (patched)
<https://reviews.apache.org/r/71665/#comment307051>

    Nit: fits on one line.


- Greg Mann


On Dec. 10, 2019, 11:53 p.m., Joseph Wu wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/71665/
> -----------------------------------------------------------
> 
> (Updated Dec. 10, 2019, 11:53 p.m.)
> 
> 
> Review request for mesos, Benno Evers, Benjamin Mahler, Greg Mann, and Till 
> Toenshoff.
> 
> 
> Bugs: MESOS-10010
>     https://issues.apache.org/jira/browse/MESOS-10010
> 
> 
> Repository: mesos
> 
> 
> Description
> -------
> 
> This fills in some of the SSL socket implementation,
> in particular the constructor, destructor, connect(),
> and accept() methods.
> 
> Much of the setup and verification is taken verbatim from the
> libevent socket implementation.
> 
> A change to the poll socket was necessary to prevent the SSL
> socket from holding a self-reference indefinitely.
> 
> 
> Diffs
> -----
> 
>   3rdparty/libprocess/include/process/socket.hpp 
> 48860f8646d388685f0a60ad2a2f613b1f4be61a 
>   3rdparty/libprocess/src/posix/poll_socket.cpp 
> ecc2bd492c4edd2f6ab0aae52d50bb3954881893 
>   3rdparty/libprocess/src/ssl/openssl_socket.hpp PRE-CREATION 
>   3rdparty/libprocess/src/ssl/openssl_socket.cpp PRE-CREATION 
>   3rdparty/libprocess/src/windows/poll_socket.cpp 
> e2a84694ac554b4c23242fd93d93800c0334a943 
> 
> 
> Diff: https://reviews.apache.org/r/71665/diff/6/
> 
> 
> Testing
> -------
> 
> cmake --build . --target libprocess-tests
> 
> Successfully connected to Google :D
> With something like this:
> ```
>   set_environment_variables({
>     {"LIBPROCESS_SSL_ENABLED", "true"},
>     {"LIBPROCESS_SSL_KEY_FILE", key_path().string()},
>     {"LIBPROCESS_SSL_CERT_FILE", certificate_path().string()}
>   });
> 
>   Try<Socket> client = Socket::create(SocketImpl::Kind::SSL);
>   ASSERT_SOME(client);
> 
>   AWAIT_ASSERT_READY(client->connect(
>       network::inet::Address(net::IP::parse("216.58.194.206").get(), 443),
>       openssl::create_tls_client_config(None())));
> ```
> 
> 
> Thanks,
> 
> Joseph Wu
> 
>

Reply via email to