Summary: This diff implements OpenSSL support in the network stack. Currently SSL support is only enabled for Bolt connections, support for RPC connections will be added in another diff. Reviewers: buda, teon.banek Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1328
13 lines
215 B
C++
13 lines
215 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace communication {
|
|
|
|
/**
|
|
* This function reads and returns a string describing the last OpenSSL error.
|
|
*/
|
|
const std::string SslGetLastError();
|
|
|
|
} // namespace communication
|