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) 2019-2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com) // // 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) // #ifndef BOOST_MYSQL_POOL_PARAMS_HPP #define BOOST_MYSQL_POOL_PARAMS_HPP #include #include #include #include #include #include #include #include #include namespace boost { namespace mysql { /** * \brief Configuration parameters for \ref connection_pool. * \details * This is an owning type. */ struct pool_params { /** * \brief Determines how to establish a physical connection to the MySQL server. * \details * Connections created by the pool will use this address to connect to the * server. This can be either a host and port or a UNIX socket path. * Defaults to (localhost, 3306). */ any_address server_address; /// User name that connections created by the pool should use to authenticate as. std::string username; /// Password that connections created by the pool should use. std::string password; /** * \brief Database name that connections created by the pool will use when connecting. * \details Leave it empty to select no database (this is the default). */ std::string database; /** * \brief Controls whether connections created by the pool will use TLS or not. * \details * See \ref ssl_mode for more information about the possible modes. * This option is only relevant when `server_address.type() == address_type::host_and_port`. * UNIX socket connections will never use TLS, regardless of this value. */ ssl_mode ssl{ssl_mode::enable}; /** * \brief Whether to enable support for semicolon-separated text queries for connections created by the * pool. \details Disabled by default. */ bool multi_queries{false}; /// Initial size (in bytes) of the internal buffer for the connections created by the pool. std::size_t initial_buffer_size{default_initial_read_buffer_size}; /** * \brief Initial number of connections to create. * \details * When \ref connection_pool::async_run starts running, this number of connections * will be created and connected. */ std::size_t initial_size{1}; /** * \brief Max number of connections to create. * \details * When a connection is requested, but all connections are in use, new connections * will be created and connected up to this size. * \n * Defaults to the maximum number of concurrent connections that MySQL * servers allow by default. If you increase this value, increase the server's * max number of connections, too (by setting the `max_connections` global variable). * \n * This value must be `> 0` and `>= initial_size`. */ std::size_t max_size{151}; /** * \brief The SSL context to use for connections using TLS. * \details * If a non-empty value is provided, all connections created by the pool * will use the passed context when using TLS. This allows setting TLS options * to pool-created connections. * \n * If an empty value is passed (the default) and the connections require TLS, * an internal SSL context with suitable options will be created by the pool. */ boost::optional ssl_ctx{}; /** * \brief The timeout to use when connecting. * \details * Connections will be connected by the pool before being handed to the user * (using \ref any_connection::async_connect). * If the operation takes longer than this timeout, * the operation will be interrupted, considered as failed and retried later. * \n * Set this timeout to zero to disable it. * \n * This value must not be negative. */ std::chrono::steady_clock::duration connect_timeout{std::chrono::seconds(20)}; /** * \brief The interval between connect attempts. * \details * When session establishment fails, the operation will be retried until * success. This value determines the interval between consecutive connection * attempts. * \n * This value must be greater than zero. */ std::chrono::steady_clock::duration retry_interval{std::chrono::seconds(30)}; /** * \brief The health-check interval. * \details * If a connection becomes idle and hasn't been handed to the user for * `ping_interval`, a health-check will be performed (using \ref any_connection::async_ping). * Pings will be sent with a periodicity of `ping_interval` until the connection * is handed to the user, or a ping fails. * * Set this interval to zero to disable pings. * * This value must not be negative. It should be smaller than the server's * idle timeout (as determined by the * wait_timeout * session variable). Otherwise, the server might close connections * without the pool detecting it. */ std::chrono::steady_clock::duration ping_interval{std::chrono::hours(1)}; /** * \brief The timeout to use for pings and session resets. * \details * If pings (as per \ref any_connection::async_ping) or session resets * (as per \ref any_connection::async_reset_connection) take longer than this * timeout, they will be cancelled, and the operation will be considered failed. * \n * Set this timeout to zero to disable it. * \n * This value must not be negative. */ std::chrono::steady_clock::duration ping_timeout{std::chrono::seconds(10)}; /** * \brief Enables or disables thread-safety. * \details * When set to `true`, the resulting connection pool are able to * be shared between threads at the cost of some performance. * * Enabling thread safety for a pool creates an internal `asio::strand` object * wrapping the executor passed to the pool's constructor. * All state-mutating functions (including \ref connection_pool::async_run, * \ref connection_pool::async_get_connection and returning connections) * will be run through the created strand. * * Thread-safety doesn't extend to individual connections: \ref pooled_connection * objects can't be shared between threads. Thread-safety does not protect * objects that don't belong to the pool. For instance, `asio::cancel_after` * creates a timer that must be protected with a strand. * Refer to * this * page for more info. */ bool thread_safe{false}; /** * \brief The executor to be used by individual connections created by the pool. * \details * If this member is set to a non-empty value * (that is, `static_cast(connection_executor) == true`), * individual connections will be created using this executor. * Otherwise, connections will use the pool's executor * (as per \ref connection_pool::get_executor). */ asio::any_io_executor connection_executor{}; }; } // namespace mysql } // namespace boost #endif