Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

write_op.hpp 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //
  2. // ssl/detail/write_op.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef ASIO_SSL_DETAIL_WRITE_OP_HPP
  11. #define ASIO_SSL_DETAIL_WRITE_OP_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include "asio/detail/config.hpp"
  16. #include "asio/detail/buffer_sequence_adapter.hpp"
  17. #include "asio/ssl/detail/engine.hpp"
  18. #include "asio/detail/push_options.hpp"
  19. namespace asio {
  20. namespace ssl {
  21. namespace detail {
  22. template <typename ConstBufferSequence>
  23. class write_op
  24. {
  25. public:
  26. write_op(const ConstBufferSequence& buffers)
  27. : buffers_(buffers)
  28. {
  29. }
  30. engine::want operator()(engine& eng,
  31. asio::error_code& ec,
  32. std::size_t& bytes_transferred) const
  33. {
  34. asio::const_buffer buffer =
  35. asio::detail::buffer_sequence_adapter<asio::const_buffer,
  36. ConstBufferSequence>::first(buffers_);
  37. return eng.write(buffer, ec, bytes_transferred);
  38. }
  39. template <typename Handler>
  40. void call_handler(Handler& handler,
  41. const asio::error_code& ec,
  42. const std::size_t& bytes_transferred) const
  43. {
  44. handler(ec, bytes_transferred);
  45. }
  46. private:
  47. ConstBufferSequence buffers_;
  48. };
  49. } // namespace detail
  50. } // namespace ssl
  51. } // namespace asio
  52. #include "asio/detail/pop_options.hpp"
  53. #endif // ASIO_SSL_DETAIL_WRITE_OP_HPP