1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
// // Copyright (c) 2023-2025 Ivica Siladic, Bruno Iljazovic, Korina Simicevic // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_MQTT5_READ_MESSAGE_OP_HPP #define BOOST_MQTT5_READ_MESSAGE_OP_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include namespace boost::mqtt5::detail { namespace asio = boost::asio; template class read_message_op { using client_service = ClientService; using handler_type = Handler; struct on_message {}; struct on_disconnect {}; std::shared_ptr _svc_ptr; handler_type _handler; public: read_message_op(std::shared_ptr svc_ptr, Handler&& handler) : _svc_ptr(std::move(svc_ptr)), _handler(std::move(handler)) {} read_message_op(read_message_op&&) noexcept = default; read_message_op(const read_message_op&) = delete; read_message_op& operator=(read_message_op&&) noexcept = default; read_message_op& operator=(const read_message_op&) = delete; using allocator_type = asio::associated_allocator_t; allocator_type get_allocator() const noexcept { return asio::get_associated_allocator(_handler); } using executor_type = typename client_service::executor_type; executor_type get_executor() const noexcept { return _svc_ptr->get_executor(); } void perform() { _svc_ptr->async_assemble( asio::prepend(std::move(*this), on_message {}) ); } void operator()( on_message, error_code ec, uint8_t control_code, byte_citer first, byte_citer last ) { if (ec == client::error::malformed_packet) return on_malformed_packet( disconnect_rc_e::malformed_packet, "Malformed Packet received from the Server" ); else if (ec == client::error::packet_too_large) return on_malformed_packet( disconnect_rc_e::packet_too_large, "The packet size is greater than Maximum Packet Size" ); if (ec == asio::error::no_recovery) _svc_ptr->cancel(); if (ec) return complete(); dispatch(control_code, first, last); } void operator()(on_disconnect, error_code ec) { if (ec) return complete(); perform(); } private: void dispatch( uint8_t control_byte, byte_citer first, byte_citer last ) { auto code = control_code_e(control_byte & 0b11110000); switch (code) { case control_code_e::publish: { auto msg = decoders::decode_publish( control_byte, static_cast(std::distance(first, last)), first ); if (!msg.has_value()) return on_malformed_packet( disconnect_rc_e::malformed_packet, "Malformed PUBLISH received: cannot decode" ); publish_rec_op { _svc_ptr }.perform(std::move(*msg)); } break; case control_code_e::disconnect: { auto rv = decoders::decode_disconnect( static_cast(std::distance(first, last)), first ); if (!rv.has_value()) return on_malformed_packet( disconnect_rc_e::malformed_packet, "Malformed DISCONNECT received: cannot decode" ); const auto& [rc, props] = *rv; _svc_ptr->log().at_disconnect( to_reason_code(rc) .value_or(reason_codes::unspecified_error), props ); return _svc_ptr->async_shutdown( asio::prepend(std::move(*this), on_disconnect {}) ); } break; case control_code_e::auth: { auto rv = decoders::decode_auth( static_cast(std::distance(first, last)), first ); if (!rv.has_value()) return on_malformed_packet( disconnect_rc_e::malformed_packet, "Malformed AUTH received: cannot decode" ); re_auth_op { _svc_ptr }.perform(std::move(*rv)); } break; default: BOOST_ASSERT(false); } perform(); } void on_malformed_packet(disconnect_rc_e rc, const std::string& reason) { auto props = disconnect_props {}; props[prop::reason_string] = reason; auto svc_ptr = _svc_ptr; // copy before this is moved async_disconnect( rc, props, svc_ptr, asio::prepend(std::move(*this), on_disconnect {}) ); } void complete() { return std::move(_handler)(); } }; } // end namespace boost::mqtt5::detail #endif // !BOOST_MQTT5_READ_MESSAGE_OP_HPP