mirror of
https://github.com/boostorg/beast.git
synced 2025-08-05 15:54:46 +02:00
Remove unnecessary include
This commit is contained in:
@@ -6,6 +6,7 @@ WebSocket:
|
|||||||
|
|
||||||
* Control callback is invoked on the execution context
|
* Control callback is invoked on the execution context
|
||||||
* Add stream_fwd.hpp
|
* Add stream_fwd.hpp
|
||||||
|
* Remove unnecessary include
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -39,16 +39,10 @@
|
|||||||
#include <limits>
|
#include <limits>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
#include <boost/asio/io_context.hpp> // DEPRECATED
|
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace beast {
|
namespace beast {
|
||||||
namespace websocket {
|
namespace websocket {
|
||||||
|
|
||||||
namespace detail {
|
|
||||||
class frame_test;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The type of object holding HTTP Upgrade requests
|
/// The type of object holding HTTP Upgrade requests
|
||||||
using request_type = http::request<http::empty_body>;
|
using request_type = http::request<http::empty_body>;
|
||||||
|
|
||||||
@@ -72,6 +66,10 @@ enum class frame_type
|
|||||||
pong
|
pong
|
||||||
};
|
};
|
||||||
|
|
||||||
|
namespace detail {
|
||||||
|
class frame_test;
|
||||||
|
} // detail
|
||||||
|
|
||||||
//--------------------------------------------------------------------
|
//--------------------------------------------------------------------
|
||||||
|
|
||||||
/** Provides message-oriented functionality using WebSocket.
|
/** Provides message-oriented functionality using WebSocket.
|
||||||
|
Reference in New Issue
Block a user