src.hpp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // Official repository: https://github.com/boostorg/beast
  8. //
  9. #ifndef BOOST_BEAST_SRC_HPP
  10. #define BOOST_BEAST_SRC_HPP
  11. /*
  12. This file is meant to be included once, in a translation unit of
  13. the program, with the macro BOOST_BEAST_SEPARATE_COMPILATION defined.
  14. */
  15. #define BOOST_BEAST_SOURCE
  16. #include <boost/beast/core/detail/config.hpp>
  17. #if defined(BOOST_BEAST_HEADER_ONLY)
  18. # error Do not compile Beast library source with BOOST_BEAST_HEADER_ONLY defined
  19. #endif
  20. #include <boost/beast/_experimental/test/impl/error.ipp>
  21. #include <boost/beast/_experimental/test/impl/fail_count.ipp>
  22. #include <boost/beast/_experimental/test/impl/stream.ipp>
  23. #include <boost/beast/core/detail/base64.ipp>
  24. #include <boost/beast/core/detail/sha1.ipp>
  25. #include <boost/beast/core/detail/impl/temporary_buffer.ipp>
  26. #include <boost/beast/core/impl/error.ipp>
  27. #include <boost/beast/core/impl/file_posix.ipp>
  28. #include <boost/beast/core/impl/file_stdio.ipp>
  29. #include <boost/beast/core/impl/file_win32.ipp>
  30. #include <boost/beast/core/impl/flat_static_buffer.ipp>
  31. #include <boost/beast/core/impl/saved_handler.ipp>
  32. #include <boost/beast/core/impl/static_buffer.ipp>
  33. #include <boost/beast/core/impl/string.ipp>
  34. #include <boost/beast/http/detail/basic_parser.ipp>
  35. #include <boost/beast/http/detail/rfc7230.ipp>
  36. #include <boost/beast/http/impl/basic_parser.ipp>
  37. #include <boost/beast/http/impl/error.ipp>
  38. #include <boost/beast/http/impl/field.ipp>
  39. #include <boost/beast/http/impl/fields.ipp>
  40. #include <boost/beast/http/impl/rfc7230.ipp>
  41. #include <boost/beast/http/impl/status.ipp>
  42. #include <boost/beast/http/impl/verb.ipp>
  43. #include <boost/beast/websocket/detail/hybi13.ipp>
  44. #include <boost/beast/websocket/detail/mask.ipp>
  45. #include <boost/beast/websocket/detail/pmd_extension.ipp>
  46. #include <boost/beast/websocket/detail/prng.ipp>
  47. #include <boost/beast/websocket/detail/service.ipp>
  48. #include <boost/beast/websocket/detail/utf8_checker.ipp>
  49. #include <boost/beast/websocket/impl/error.ipp>
  50. #include <boost/beast/zlib/detail/deflate_stream.ipp>
  51. #include <boost/beast/zlib/detail/inflate_stream.ipp>
  52. #include <boost/beast/zlib/impl/error.ipp>
  53. #endif