File indexing completed on 2025-10-21 08:24:27
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_BEAST_HTTP_FILE_BODY_HPP
0011 #define BOOST_BEAST_HTTP_FILE_BODY_HPP
0012
0013 #include <boost/beast/http/file_body_fwd.hpp>
0014
0015 #include <boost/beast/core/file.hpp>
0016 #include <boost/beast/http/basic_file_body.hpp>
0017 #include <boost/assert.hpp>
0018 #include <boost/optional.hpp>
0019 #include <cstdio>
0020
0021 namespace boost {
0022 namespace beast {
0023 namespace http {
0024
0025 #if BOOST_BEAST_DOXYGEN
0026
0027 using file_body = basic_file_body<file>;
0028 #endif
0029
0030 }
0031 }
0032 }
0033
0034 #ifndef BOOST_BEAST_NO_FILE_BODY_WIN32
0035 #include <boost/beast/http/impl/file_body_win32.hpp>
0036 #endif
0037
0038 #endif