-
Notifications
You must be signed in to change notification settings - Fork 635
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
50 changed files
with
662 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// | ||
// 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 { | ||
|
||
template<class Allocator> | ||
class basic_multi_buffer; | ||
|
||
using multi_buffer = basic_multi_buffer<std::allocator<char>>; | ||
|
||
namespace http { | ||
|
||
using dynamic_body = basic_dynamic_body<multi_buffer>; | ||
|
||
} // 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,28 @@ | ||
// | ||
// 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; | ||
|
||
using fields = basic_fields<std::allocator<char>>; | ||
|
||
} // 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,26 @@ | ||
// | ||
// 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/core/file.hpp> | ||
#include <boost/beast/http/basic_file_body_fwd.hpp> | ||
|
||
namespace boost { | ||
namespace beast { | ||
namespace http { | ||
|
||
using file_body = basic_file_body<file>; | ||
|
||
} // 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
Oops, something went wrong.