2016-05-28 09:23:54 -04:00
|
|
|
//
|
2019-02-21 07:00:31 -08:00
|
|
|
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
|
2016-05-28 09:23:54 -04:00
|
|
|
//
|
|
|
|
// 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)
|
|
|
|
//
|
2017-07-20 13:40:34 -07:00
|
|
|
// Official repository: https://github.com/boostorg/beast
|
|
|
|
//
|
2016-05-28 09:23:54 -04:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
#ifndef BOOST_BEAST_HTTP_DYNAMIC_BODY_HPP
|
|
|
|
#define BOOST_BEAST_HTTP_DYNAMIC_BODY_HPP
|
2016-05-28 09:23:54 -04:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
#include <boost/beast/core/multi_buffer.hpp>
|
|
|
|
#include <boost/beast/http/basic_dynamic_body.hpp>
|
2016-05-28 09:23:54 -04:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
namespace boost {
|
2016-05-28 09:23:54 -04:00
|
|
|
namespace beast {
|
|
|
|
namespace http {
|
|
|
|
|
2017-05-04 15:40:07 -07:00
|
|
|
/** A dynamic message body represented by a @ref multi_buffer
|
2017-04-27 18:26:21 -07:00
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
Meets the requirements of <em>Body</em>.
|
2017-04-27 18:26:21 -07:00
|
|
|
*/
|
2017-05-04 15:40:07 -07:00
|
|
|
using dynamic_body = basic_dynamic_body<multi_buffer>;
|
2017-04-27 18:26:21 -07:00
|
|
|
|
2016-05-28 09:23:54 -04:00
|
|
|
} // http
|
|
|
|
} // beast
|
2017-07-20 13:40:34 -07:00
|
|
|
} // boost
|
2016-05-28 09:23:54 -04:00
|
|
|
|
|
|
|
#endif
|