mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-27 22:15:49 +00:00
The version field is moved into message_v1, all public interfaces are reworked to identify HTTP/1 wire format operations (suffix "_v1") versus general HTTP.
20 lines
579 B
C++
20 lines
579 B
C++
//
|
|
// Copyright (c) 2013-2016 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)
|
|
//
|
|
|
|
#ifndef BEAST_HTTP_BODY_WRITER_HPP
|
|
#define BEAST_HTTP_BODY_WRITER_HPP
|
|
|
|
// Convenience header to include everything necessary for
|
|
// declaring an object meeting the BodyWriter requirements.
|
|
|
|
#include <beast/http/error.hpp>
|
|
#include <beast/http/message.hpp>
|
|
#include <beast/http/resume_context.hpp>
|
|
#include <boost/logic/tribool.hpp>
|
|
|
|
#endif
|