forked from boostorg/beast
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
694 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// Copyright (c) 2024 Mohammad Nejati | ||
// | ||
// 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_HTTP_BASIC_DYNAMIC_BODY_FWD_HPP | ||
#define BOOST_BEAST_HTTP_BASIC_DYNAMIC_BODY_FWD_HPP | ||
|
||
namespace boost { | ||
namespace beast { | ||
namespace http { | ||
|
||
template<class DynamicBuffer> | ||
struct basic_dynamic_body; | ||
|
||
} // http | ||
} // beast | ||
} // boost | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// Copyright (c) 2024 Mohammad Nejati | ||
// | ||
// 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_HTTP_BASIC_FILE_BODY_FWD_HPP | ||
#define BOOST_BEAST_HTTP_BASIC_FILE_BODY_FWD_HPP | ||
|
||
namespace boost { | ||
namespace beast { | ||
namespace http { | ||
|
||
template<class File> | ||
struct basic_file_body; | ||
|
||
} // http | ||
} // beast | ||
} // boost | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// Copyright (c) 2024 Mohammad Nejati | ||
// | ||
// 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_HTTP_BUFFER_BODY_FWD_HPP | ||
#define BOOST_BEAST_HTTP_BUFFER_BODY_FWD_HPP | ||
|
||
namespace boost { | ||
namespace beast { | ||
namespace http { | ||
|
||
struct buffer_body; | ||
|
||
} // http | ||
} // beast | ||
} // boost | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// | ||
// Copyright (c) 2024 Mohammad Nejati | ||
// | ||
// 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_HTTP_DYNAMIC_BODY_FWD_HPP | ||
#define BOOST_BEAST_HTTP_DYNAMIC_BODY_FWD_HPP | ||
|
||
#include <boost/beast/http/basic_dynamic_body_fwd.hpp> | ||
|
||
#include <memory> | ||
|
||
namespace boost { | ||
namespace beast { | ||
|
||
#ifndef BOOST_BEAST_DOXYGEN | ||
template<class Allocator> | ||
class basic_multi_buffer; | ||
|
||
using multi_buffer = basic_multi_buffer<std::allocator<char>>; | ||
#endif | ||
|
||
namespace http { | ||
|
||
#ifndef BOOST_BEAST_DOXYGEN | ||
using dynamic_body = basic_dynamic_body<multi_buffer>; | ||
#endif | ||
|
||
} // http | ||
} // beast | ||
} // boost | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// Copyright (c) 2024 Mohammad Nejati | ||
// | ||
// 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_HTTP_EMPTY_BODY_FWD_HPP | ||
#define BOOST_BEAST_HTTP_EMPTY_BODY_FWD_HPP | ||
|
||
namespace boost { | ||
namespace beast { | ||
namespace http { | ||
|
||
struct empty_body; | ||
|
||
} // http | ||
} // beast | ||
} // boost | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// | ||
// Copyright (c) 2024 Mohammad Nejati | ||
// | ||
// 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_HTTP_FIELDS_FWD_HPP | ||
#define BOOST_BEAST_HTTP_FIELDS_FWD_HPP | ||
|
||
#include <memory> | ||
|
||
namespace boost { | ||
namespace beast { | ||
namespace http { | ||
|
||
template<class Allocator> | ||
class basic_fields; | ||
|
||
#ifndef BOOST_BEAST_DOXYGEN | ||
using fields = basic_fields<std::allocator<char>>; | ||
#endif | ||
|
||
} // http | ||
} // beast | ||
} // boost | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// | ||
// Copyright (c) 2024 Mohammad Nejati | ||
// | ||
// 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_HTTP_FILE_BODY_FWD_HPP | ||
#define BOOST_BEAST_HTTP_FILE_BODY_FWD_HPP | ||
|
||
#include <boost/beast/http/basic_file_body_fwd.hpp> | ||
|
||
#include <boost/beast/core/file.hpp> | ||
|
||
namespace boost { | ||
namespace beast { | ||
namespace http { | ||
|
||
#ifndef BOOST_BEAST_DOXYGEN | ||
using file_body = basic_file_body<file>; | ||
#endif | ||
|
||
} // http | ||
} // beast | ||
} // boost | ||
|
||
#endif |
Oops, something went wrong.