mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 19:15:54 +00:00
Add missing includes and tidy up
This commit is contained in:
@@ -20,6 +20,8 @@
|
|||||||
#ifndef BEAST_ASIO_HANDSHAKE_HANDSHAKEDETECTLOGICSSL3_H_INCLUDED
|
#ifndef BEAST_ASIO_HANDSHAKE_HANDSHAKEDETECTLOGICSSL3_H_INCLUDED
|
||||||
#define BEAST_ASIO_HANDSHAKE_HANDSHAKEDETECTLOGICSSL3_H_INCLUDED
|
#define BEAST_ASIO_HANDSHAKE_HANDSHAKEDETECTLOGICSSL3_H_INCLUDED
|
||||||
|
|
||||||
|
#include <beast/ByteOrder.h>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
namespace asio {
|
namespace asio {
|
||||||
|
|
||||||
|
|||||||
@@ -27,6 +27,7 @@
|
|||||||
#include <beast/asio/shared_handler.h>
|
#include <beast/asio/shared_handler.h>
|
||||||
|
|
||||||
#include <boost/asio/detail/handler_cont_helpers.hpp>
|
#include <boost/asio/detail/handler_cont_helpers.hpp>
|
||||||
|
#include <boost/asio/streambuf.hpp>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
namespace asio {
|
namespace asio {
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ namespace asio {
|
|||||||
Write operations are all simply passed through.
|
Write operations are all simply passed through.
|
||||||
*/
|
*/
|
||||||
template <class Stream>
|
template <class Stream>
|
||||||
class PrefilledReadStream : public Uncopyable
|
class PrefilledReadStream
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
typedef boost::system::error_code error_code;
|
typedef boost::system::error_code error_code;
|
||||||
@@ -47,6 +47,9 @@ protected:
|
|||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
PrefilledReadStream (PrefilledReadStream const&) = delete;
|
||||||
|
PrefilledReadStream& operator= (PrefilledReadStream const&) = delete;
|
||||||
|
|
||||||
typedef std::remove_reference_t <Stream> next_layer_type;
|
typedef std::remove_reference_t <Stream> next_layer_type;
|
||||||
typedef typename next_layer_type::lowest_layer_type lowest_layer_type;
|
typedef typename next_layer_type::lowest_layer_type lowest_layer_type;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user