mirror of
https://github.com/boostorg/beast.git
synced 2025-08-03 23:04:35 +02:00
Remove unused file
This commit is contained in:
@@ -1,50 +0,0 @@
|
|||||||
//
|
|
||||||
// Copyright (c) 2018 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
||||||
//
|
|
||||||
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
||||||
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
||||||
//
|
|
||||||
// Official repository: https://github.com/boostorg/beast
|
|
||||||
//
|
|
||||||
|
|
||||||
#ifndef BOOST_BEAST_CORE_DETAIL_SERVICE_BASE_HPP
|
|
||||||
#define BOOST_BEAST_CORE_DETAIL_SERVICE_BASE_HPP
|
|
||||||
|
|
||||||
#include <boost/asio/execution_context.hpp>
|
|
||||||
|
|
||||||
namespace boost {
|
|
||||||
namespace beast {
|
|
||||||
namespace detail {
|
|
||||||
|
|
||||||
template<class T>
|
|
||||||
class service_id : public net::execution_context::id
|
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
template<class T>
|
|
||||||
class service_base
|
|
||||||
: public net::execution_context::service
|
|
||||||
{
|
|
||||||
protected:
|
|
||||||
net::execution_context& ctx_;
|
|
||||||
|
|
||||||
public:
|
|
||||||
static service_id<T> id;
|
|
||||||
|
|
||||||
explicit
|
|
||||||
service_base(net::execution_context& ctx)
|
|
||||||
: net::execution_context::service(ctx)
|
|
||||||
, ctx_(ctx)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<class T>
|
|
||||||
service_id<T>
|
|
||||||
service_base<T>::id;
|
|
||||||
|
|
||||||
} // detail
|
|
||||||
} // beast
|
|
||||||
} // boost
|
|
||||||
|
|
||||||
#endif
|
|
@@ -97,9 +97,7 @@ public:
|
|||||||
|
|
||||||
// VFALCO We could pre-serialize the request to
|
// VFALCO We could pre-serialize the request to
|
||||||
// a single buffer, send that instead,
|
// a single buffer, send that instead,
|
||||||
// and delete the buffer here. The buffer
|
// and delete the buffer here.
|
||||||
// could be a variable block at the end
|
|
||||||
// of handler_ptr's allocation.
|
|
||||||
|
|
||||||
// Read HTTP response
|
// Read HTTP response
|
||||||
BOOST_ASIO_CORO_YIELD
|
BOOST_ASIO_CORO_YIELD
|
||||||
|
Reference in New Issue
Block a user