├── .appveyor.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── 3rdparty ├── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── build-aux │ │ └── .keep │ ├── cmake │ │ └── internal_utils.cmake │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure.ac │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ └── gtest.m4 │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── gtest-md.sln │ │ ├── gtest-md.vcproj │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_main-md.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_prod_test-md.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_unittest-md.vcproj │ │ └── gtest_unittest.vcproj │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ ├── pump.py │ │ ├── test │ │ │ └── Makefile │ │ ├── upload.py │ │ └── upload_gtest.py │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj └── patches │ ├── boost-1.47.0 │ └── msvc_warnings.patch │ ├── boost-1.49.0 │ ├── asio_win_interlocked.patch │ └── intel_12_1_shared_ptr_operator_bool.patch │ ├── boost-1.50.0 │ ├── asio_win_interlocked.patch │ ├── intel_12_1_shared_ptr_operator_bool.patch │ └── msvc_warnings.patch │ ├── boost-1.51.0 │ ├── asio_win_interlocked.patch │ ├── intel_12_1_asio_warnings.patch │ ├── intel_12_1_mutex.patch │ ├── intel_12_1_shared_ptr_operator_bool.patch │ └── msvc_warnings.patch │ ├── boost-1.52.0 │ ├── asio_win_interlocked.patch │ ├── intel_12_1_asio_warnings.patch │ ├── intel_12_1_mutex.patch │ └── msvc_warnings.patch │ ├── boost-1.53.0 │ └── msvc_warnings.patch │ ├── boost-1.54.0 │ ├── coroutine_build.patch │ ├── intel_thread_once.patch │ └── msvc_warnings.patch │ ├── boost-1.55.0 │ ├── msvc12_minmax.patch │ └── msvc_warnings.patch │ ├── boost-1.56.0 │ ├── msvc-14_auto-link.patch │ └── msvc_warnings.patch │ ├── boost-1.57.0 │ └── msvc_warnings.patch │ ├── boost-1.58.0 │ ├── asio_config_msvc.patch │ └── msvc_warnings.patch │ ├── boost-1.59.0 │ ├── asio_config_msvc.patch │ └── msvc_warnings.patch │ ├── boost-1.60.0 │ └── msvc_warnings.patch │ ├── boost-1.70.0 │ └── mingw_cast_warnings.patch │ ├── gtest-1.7.0 │ ├── mingw_unused_variable_warning.patch │ └── msvc2012_disable_tuple.patch │ ├── icu4c-54.1 │ └── runConfigureICU_static_runtime.patch │ ├── icu4c-57.1 │ └── runConfigureICU_static_runtime.patch │ ├── qt-4.8.1 │ ├── build_shared_win32-msvc2008.patch │ ├── build_shared_win32-msvc2010.patch │ ├── build_static_win32-msvc2008.patch │ ├── build_static_win32-msvc2010.patch │ ├── container_msvc_warn.patch │ └── win_cursors.patch │ ├── qt-4.8.4 │ ├── build_shared_win32-msvc2008.patch │ ├── build_shared_win32-msvc2010.patch │ ├── build_static_win32-msvc2008.patch │ ├── build_static_win32-msvc2010.patch │ ├── container_msvc_warn.patch │ └── win_cursors.patch │ ├── qt-4.8.7 │ ├── build_shared_win32-msvc2013.patch │ ├── build_shared_win32-msvc2015.patch │ ├── container_msvc_warn.patch │ └── msvc2015.patch │ ├── qt-5.0.0 │ ├── Windows_NOMINMAX_error.patch │ ├── msvc_warn.patch │ ├── win32-msvc2010_shared_build.patch │ └── win32-msvc2012_shared_build.patch │ ├── qt-5.1.0 │ ├── Windows_NOMINMAX_error.patch │ ├── msvc_warn.patch │ ├── win32-msvc2010_shared_build.patch │ └── win32-msvc2012_shared_build.patch │ ├── qt-5.1.1 │ ├── Windows_NOMINMAX_error.patch │ ├── msvc_warn.patch │ ├── win32-msvc2010_shared_build.patch │ └── win32-msvc2012_shared_build.patch │ ├── qt-5.2.0 │ ├── Windows_NOMINMAX_error.patch │ ├── msvc_warn.patch │ ├── noqtwebkit_static.patch │ ├── win32-msvc2010_shared_build.patch │ ├── win32-msvc2012_shared_build.patch │ ├── win32-msvc2012_static_build.patch │ └── win32-msvc2013_shared_build.patch │ ├── qt-5.2.1 │ ├── Windows_NOMINMAX_error.patch │ ├── Windows_mouse_cursors_only_scalable.patch │ ├── msvc_warn.patch │ └── win32-msvc2012_shared_build.patch │ ├── qt-5.3.1 │ ├── Windows_NOMINMAX_error.patch │ ├── Windows_mouse_cursors_only_scalable.patch │ ├── msvc_level4_warnings.patch │ ├── win32-msvc2013_shared_build.patch │ └── win32-msvc2013_static_build.patch │ ├── qt-5.3.2 │ ├── Windows_NOMINMAX_error.patch │ ├── Windows_mouse_cursors_only_scalable.patch │ ├── msvc_level4_warnings.patch │ ├── win32-msvc2013_shared_build.patch │ └── win32-msvc2013_static_build.patch │ ├── qt-5.4.0 │ ├── Windows_NOMINMAX_error.patch │ ├── msvc_level4_warnings.patch │ ├── win32-msvc2013_shared_build.patch │ └── win32-msvc2013_static_build.patch │ ├── qt-5.4.1 │ ├── msvc_level4_warnings.patch │ ├── win32-msvc2013_shared_build.patch │ └── win32-msvc2013_static_build.patch │ ├── qt-5.5.0 │ ├── msvc_level4_warnings.patch │ ├── msvc_shared_build.patch │ └── msvc_static_build.patch │ ├── qt-5.6.0 │ ├── msvc_level4_warnings.patch │ ├── msvc_shared_build.patch │ └── msvc_static_build.patch │ └── qt-5.7.0 │ ├── mingw_build_large_file.patch │ ├── mingw_static_build.patch │ ├── msvc_level4_warnings.patch │ ├── msvc_shared_build_without_debug_info.patch │ ├── msvc_static_build.patch │ ├── msvc_static_build_without_debug_info.patch │ └── qtwebenginecore.patch ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── internal_utils.cmake ├── ma_boost_asio │ └── CMakeLists.txt ├── ma_boost_chrono │ └── CMakeLists.txt ├── ma_boost_date_time │ └── CMakeLists.txt ├── ma_boost_exception │ └── CMakeLists.txt ├── ma_boost_header_only │ └── CMakeLists.txt ├── ma_boost_link │ └── CMakeLists.txt ├── ma_boost_program_options │ └── CMakeLists.txt ├── ma_boost_regex │ └── CMakeLists.txt ├── ma_boost_system │ └── CMakeLists.txt ├── ma_boost_thread │ └── CMakeLists.txt ├── ma_boost_timer │ └── CMakeLists.txt ├── ma_coverage │ └── CMakeLists.txt ├── ma_gtest │ └── CMakeLists.txt ├── ma_pic_on │ └── CMakeLists.txt ├── ma_qt4_core_support │ └── CMakeLists.txt ├── ma_qt4_gui_support │ └── CMakeLists.txt ├── ma_qt5_core_support │ ├── CMakeLists.txt │ ├── FindICU.cmake │ └── FindQt5PCRE.cmake ├── ma_qt5_gui_support │ ├── CMakeLists.txt │ ├── FindQt5FreeType.cmake │ ├── FindQt5HarfBuzzNG.cmake │ └── FindQt5PlatformSupport.cmake ├── ma_qt5_widgets_support │ └── CMakeLists.txt ├── qt_msvs_tools │ ├── qt4.natvis │ └── qt5.natvis ├── static_c_runtime_overrides.cmake └── static_cxx_runtime_overrides.cmake ├── codecov.yml ├── doc ├── Layered, active-object-based architecture.pdf ├── asio-samples short description.pdf ├── echo_server.pdf └── screenshots │ ├── echo_server_windows7.png │ ├── qt_echo_server_started_kubuntu.png │ ├── qt_echo_server_started_ubuntu.png │ ├── qt_echo_server_windows7.png │ ├── qt_echo_server_windows8.png │ └── qt_echo_server_windows_xp.png ├── docker ├── builder │ ├── README.md │ ├── alpine │ │ ├── Dockerfile │ │ ├── README.md │ │ └── start.sh │ ├── rocky │ │ ├── Dockerfile │ │ ├── README.md │ │ └── start.sh │ └── ubuntu │ │ ├── Dockerfile │ │ ├── README.md │ │ └── start.sh └── ma_echo_server │ ├── alpine │ ├── Dockerfile │ ├── README.md │ └── patch │ │ └── boost-1.78.0.patch │ ├── distroless │ ├── Dockerfile │ ├── README.md │ └── patch │ │ └── .gitignore │ ├── nanoserver │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── build.bat │ │ └── build.ps1 │ └── install │ │ └── install.ps1 │ └── static │ ├── Dockerfile │ ├── README.md │ └── patch │ └── boost-1.78.0.patch ├── examples ├── asio_multicast_receiver │ ├── CMakeLists.txt │ └── src │ │ └── receiver.cpp ├── asio_multicast_sender │ ├── CMakeLists.txt │ └── src │ │ └── sender.cpp ├── ma_asio_performance_test_client │ ├── CMakeLists.txt │ └── src │ │ └── main.cpp ├── ma_async_basics │ ├── CMakeLists.txt │ └── src │ │ ├── async_implementation.cpp │ │ ├── async_implementation.hpp │ │ ├── async_interface.hpp │ │ └── main.cpp ├── ma_async_basics2 │ ├── CMakeLists.txt │ └── src │ │ ├── async_implementation.cpp │ │ ├── async_implementation.hpp │ │ ├── async_interface.hpp │ │ ├── do_something_handler.hpp │ │ ├── do_something_handler_fwd.hpp │ │ └── main.cpp ├── ma_echo_server │ ├── CMakeLists.txt │ └── src │ │ ├── config.cpp │ │ ├── config.hpp │ │ └── main.cpp ├── ma_echo_server_core │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── echo │ │ │ └── server │ │ │ ├── error.hpp │ │ │ ├── pooled_session_factory.hpp │ │ │ ├── session.hpp │ │ │ ├── session_config.hpp │ │ │ ├── session_config_fwd.hpp │ │ │ ├── session_factory.hpp │ │ │ ├── session_factory_fwd.hpp │ │ │ ├── session_fwd.hpp │ │ │ ├── session_manager.hpp │ │ │ ├── session_manager_config.hpp │ │ │ ├── session_manager_config_fwd.hpp │ │ │ ├── session_manager_fwd.hpp │ │ │ ├── session_manager_stats.hpp │ │ │ ├── session_manager_stats_fwd.hpp │ │ │ └── simple_session_factory.hpp │ └── src │ │ ├── error.cpp │ │ ├── pooled_session_factory.cpp │ │ ├── session.cpp │ │ ├── session_manager.cpp │ │ └── simple_session_factory.cpp ├── ma_nmea_client │ ├── CMakeLists.txt │ └── src │ │ ├── cyclic_read_session.cpp │ │ ├── cyclic_read_session.hpp │ │ ├── cyclic_read_session_fwd.hpp │ │ ├── error.cpp │ │ ├── error.hpp │ │ ├── frame.hpp │ │ └── main.cpp └── ma_qt_echo_server │ ├── CMakeLists.txt │ └── src │ ├── .gitignore │ ├── custommetatypes.cpp │ ├── custommetatypes.h │ ├── execution_config.h │ ├── execution_config_fwd.h │ ├── main.cpp │ ├── mainform.cpp │ ├── mainform.h │ ├── mainform.ui │ ├── meta_type_register_error.h │ ├── qt_echo_server.ico │ ├── qt_echo_server.rc │ ├── service.cpp │ ├── service.h │ ├── service_fwd.h │ ├── serviceforwardsignal.h │ ├── serviceforwardsignal_fwd.h │ ├── serviceservantsignal.h │ ├── serviceservantsignal_fwd.h │ ├── servicestate.h │ └── signal_connect_error.h ├── kubernetes ├── README.md └── tcp-echo │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── pull-secret.yaml │ ├── service.yaml │ ├── test-pull-secret.yaml │ └── tests │ │ └── pod.yaml │ ├── values.schema.json │ └── values.yaml ├── libs ├── ma_async_connect │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── async_connect.hpp │ └── src │ │ └── fake.cpp ├── ma_bind_handler │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ ├── bind_handler.hpp │ │ │ └── detail │ │ │ └── binder.hpp │ └── src │ │ └── fake.cpp ├── ma_codecvt_cast │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── codecvt_cast.hpp │ └── src │ │ └── fake.cpp ├── ma_compat │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── detail │ │ │ ├── functional.hpp │ │ │ ├── latch.hpp │ │ │ ├── memory.hpp │ │ │ ├── random.hpp │ │ │ ├── thread.hpp │ │ │ ├── tuple.hpp │ │ │ ├── type_traits.hpp │ │ │ └── utility.hpp │ └── src │ │ └── fake.cpp ├── ma_config │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── config.hpp │ └── src │ │ └── fake.cpp ├── ma_console_close_signal │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ ├── console_close_guard.hpp │ │ │ ├── console_close_signal.hpp │ │ │ └── console_close_signal_service.hpp │ └── src │ │ └── fake.cpp ├── ma_context_alloc_handler │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── context_alloc_handler.hpp │ └── src │ │ └── fake.cpp ├── ma_context_invoke_handler │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── context_invoke_handler.hpp │ └── src │ │ └── fake.cpp ├── ma_context_wrapped_handler │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── context_wrapped_handler.hpp │ └── src │ │ └── fake.cpp ├── ma_custom_alloc_handler │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ ├── custom_alloc_handler.hpp │ │ │ └── handler_allocator.hpp │ └── src │ │ └── fake.cpp ├── ma_cyclic_buffer │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── cyclic_buffer.hpp │ └── src │ │ └── fake.cpp ├── ma_handler_ptr │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── detail │ │ │ └── handler_ptr.hpp │ └── src │ │ └── fake.cpp ├── ma_handler_storage │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ ├── handler_storage.hpp │ │ │ └── handler_storage_service.hpp │ └── src │ │ └── fake.cpp ├── ma_helpers │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ ├── executor_helpers.hpp │ │ │ ├── handler_alloc_helpers.hpp │ │ │ ├── handler_cont_helpers.hpp │ │ │ ├── handler_invoke_helpers.hpp │ │ │ └── io_context_helpers.hpp │ └── src │ │ └── fake.cpp ├── ma_intrusive_list │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── detail │ │ │ └── intrusive_list.hpp │ └── src │ │ └── fake.cpp ├── ma_io_service_pool │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── test │ │ │ └── io_service_pool.hpp │ └── src │ │ └── io_service_pool.cpp ├── ma_limited_int │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── limited_int.hpp │ └── src │ │ └── fake.cpp ├── ma_lockable_wrapped_handler │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── lockable_wrapped_handler.hpp │ └── src │ │ └── fake.cpp ├── ma_service_base │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── detail │ │ │ └── service_base.hpp │ └── src │ │ └── fake.cpp ├── ma_shared_ptr_factory │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── shared_ptr_factory.hpp │ └── src │ │ └── fake.cpp ├── ma_sp_intrusive_list │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── sp_intrusive_list.hpp │ └── src │ │ └── fake.cpp ├── ma_sp_singleton │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── detail │ │ │ └── sp_singleton.hpp │ └── src │ │ └── fake.cpp ├── ma_steady_deadline_timer │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── steady_deadline_timer.hpp │ └── src │ │ └── fake.cpp ├── ma_strand │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ ├── strand.hpp │ │ │ └── strand_wrapped_handler.hpp │ └── src │ │ └── fake.cpp ├── ma_thread_group │ ├── CMakeLists.txt │ ├── include │ │ └── ma │ │ │ └── thread_group.hpp │ └── src │ │ └── fake.cpp └── ma_windows_console_signal │ ├── CMakeLists.txt │ ├── include │ └── ma │ │ └── windows │ │ ├── console_signal.hpp │ │ └── console_signal_service.hpp │ └── src │ └── console_signal_service.cpp ├── scripts ├── appveyor │ ├── build.ps1 │ ├── environment.ps1 │ ├── install.ps1 │ └── test.ps1 └── travis │ ├── before_install.sh │ ├── build.sh │ ├── install.sh │ ├── travis_retry.sh │ └── vercomp.sh └── tests ├── ma_async_connect_test ├── CMakeLists.txt └── src │ └── main.cpp ├── ma_bind_handler_test ├── CMakeLists.txt └── src │ └── bind_handler_test.cpp ├── ma_codecvt_cast_test ├── CMakeLists.txt └── src │ └── codecvt_cast_test.cpp ├── ma_console_close_signal_test ├── CMakeLists.txt └── src │ ├── console_close_guard_test.cpp │ └── console_close_signal_test.cpp ├── ma_context_alloc_handler_test ├── CMakeLists.txt └── src │ └── context_alloc_handler_test.cpp ├── ma_context_invoke_handler_test ├── CMakeLists.txt └── src │ └── context_invoke_handler_test.cpp ├── ma_context_wrapped_handler_test ├── CMakeLists.txt └── src │ └── context_wrapped_handler_test.cpp ├── ma_custom_alloc_handler_test ├── CMakeLists.txt └── src │ └── custom_alloc_handler_test.cpp ├── ma_cyclic_buffer_test ├── CMakeLists.txt └── src │ └── cyclic_buffer_test.cpp ├── ma_handler_allocator_test ├── CMakeLists.txt └── src │ └── handler_allocator_test.cpp ├── ma_handler_storage_test ├── CMakeLists.txt └── src │ └── handler_storage_test.cpp ├── ma_intrusive_list_test ├── CMakeLists.txt └── src │ ├── intrusive_forward_list_test.cpp │ └── intrusive_list_test.cpp ├── ma_limited_int_test ├── CMakeLists.txt └── src │ └── limited_int_test.cpp ├── ma_lockable_wrapper_test ├── CMakeLists.txt └── src │ └── lockable_wrapper_test.cpp ├── ma_shared_ptr_factory_test ├── CMakeLists.txt └── src │ └── shared_ptr_factory_test.cpp ├── ma_sp_intrusive_list_test ├── CMakeLists.txt └── src │ └── sp_intrusive_list_test.cpp ├── ma_sp_singleton_test ├── CMakeLists.txt └── src │ └── sp_singleton_test.cpp ├── ma_strand_test ├── CMakeLists.txt └── src │ └── strand_test.cpp └── ma_windows_console_signal_test ├── CMakeLists.txt └── src └── windows_console_signal_test.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /build/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/CHANGES -------------------------------------------------------------------------------- /3rdparty/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/LICENSE -------------------------------------------------------------------------------- /3rdparty/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/Makefile.am -------------------------------------------------------------------------------- /3rdparty/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/README -------------------------------------------------------------------------------- /3rdparty/gtest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/configure.ac -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/make/Makefile -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample1.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample2.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample4.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/scripts/pump.py -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/scripts/upload.py -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/upload_gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/scripts/upload_gtest.py -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_color_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_output_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/production.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/test/production.h -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/gtest/xcode/gtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.47.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.47.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.49.0/asio_win_interlocked.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.49.0/asio_win_interlocked.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.49.0/intel_12_1_shared_ptr_operator_bool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.49.0/intel_12_1_shared_ptr_operator_bool.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.50.0/asio_win_interlocked.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.50.0/asio_win_interlocked.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.50.0/intel_12_1_shared_ptr_operator_bool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.50.0/intel_12_1_shared_ptr_operator_bool.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.50.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.50.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.51.0/asio_win_interlocked.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.51.0/asio_win_interlocked.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.51.0/intel_12_1_asio_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.51.0/intel_12_1_asio_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.51.0/intel_12_1_mutex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.51.0/intel_12_1_mutex.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.51.0/intel_12_1_shared_ptr_operator_bool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.51.0/intel_12_1_shared_ptr_operator_bool.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.51.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.51.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.52.0/asio_win_interlocked.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.52.0/asio_win_interlocked.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.52.0/intel_12_1_asio_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.52.0/intel_12_1_asio_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.52.0/intel_12_1_mutex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.52.0/intel_12_1_mutex.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.52.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.52.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.53.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.53.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.54.0/coroutine_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.54.0/coroutine_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.54.0/intel_thread_once.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.54.0/intel_thread_once.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.54.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.54.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.55.0/msvc12_minmax.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.55.0/msvc12_minmax.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.55.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.55.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.56.0/msvc-14_auto-link.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.56.0/msvc-14_auto-link.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.56.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.56.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.57.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.57.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.58.0/asio_config_msvc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.58.0/asio_config_msvc.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.58.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.58.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.59.0/asio_config_msvc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.59.0/asio_config_msvc.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.59.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.59.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.60.0/msvc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.60.0/msvc_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/boost-1.70.0/mingw_cast_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/boost-1.70.0/mingw_cast_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/gtest-1.7.0/mingw_unused_variable_warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/gtest-1.7.0/mingw_unused_variable_warning.patch -------------------------------------------------------------------------------- /3rdparty/patches/gtest-1.7.0/msvc2012_disable_tuple.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/gtest-1.7.0/msvc2012_disable_tuple.patch -------------------------------------------------------------------------------- /3rdparty/patches/icu4c-54.1/runConfigureICU_static_runtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/icu4c-54.1/runConfigureICU_static_runtime.patch -------------------------------------------------------------------------------- /3rdparty/patches/icu4c-57.1/runConfigureICU_static_runtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/icu4c-57.1/runConfigureICU_static_runtime.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.1/build_shared_win32-msvc2008.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.1/build_shared_win32-msvc2008.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.1/build_shared_win32-msvc2010.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.1/build_shared_win32-msvc2010.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.1/build_static_win32-msvc2008.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.1/build_static_win32-msvc2008.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.1/build_static_win32-msvc2010.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.1/build_static_win32-msvc2010.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.1/container_msvc_warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.1/container_msvc_warn.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.1/win_cursors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.1/win_cursors.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.4/build_shared_win32-msvc2008.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.4/build_shared_win32-msvc2008.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.4/build_shared_win32-msvc2010.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.4/build_shared_win32-msvc2010.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.4/build_static_win32-msvc2008.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.4/build_static_win32-msvc2008.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.4/build_static_win32-msvc2010.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.4/build_static_win32-msvc2010.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.4/container_msvc_warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.4/container_msvc_warn.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.4/win_cursors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.4/win_cursors.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.7/build_shared_win32-msvc2013.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.7/build_shared_win32-msvc2013.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.7/build_shared_win32-msvc2015.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.7/build_shared_win32-msvc2015.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.7/container_msvc_warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.7/container_msvc_warn.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-4.8.7/msvc2015.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-4.8.7/msvc2015.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.0.0/Windows_NOMINMAX_error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.0.0/Windows_NOMINMAX_error.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.0.0/msvc_warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.0.0/msvc_warn.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.0.0/win32-msvc2010_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.0.0/win32-msvc2010_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.0.0/win32-msvc2012_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.0.0/win32-msvc2012_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.1.0/Windows_NOMINMAX_error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.1.0/Windows_NOMINMAX_error.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.1.0/msvc_warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.1.0/msvc_warn.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.1.0/win32-msvc2010_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.1.0/win32-msvc2010_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.1.0/win32-msvc2012_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.1.0/win32-msvc2012_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.1.1/Windows_NOMINMAX_error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.1.1/Windows_NOMINMAX_error.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.1.1/msvc_warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.1.1/msvc_warn.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.1.1/win32-msvc2010_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.1.1/win32-msvc2010_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.1.1/win32-msvc2012_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.1.1/win32-msvc2012_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.0/Windows_NOMINMAX_error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.0/Windows_NOMINMAX_error.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.0/msvc_warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.0/msvc_warn.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.0/noqtwebkit_static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.0/noqtwebkit_static.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.0/win32-msvc2010_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.0/win32-msvc2010_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.0/win32-msvc2012_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.0/win32-msvc2012_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.0/win32-msvc2012_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.0/win32-msvc2012_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.0/win32-msvc2013_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.0/win32-msvc2013_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.1/Windows_NOMINMAX_error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.1/Windows_NOMINMAX_error.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.1/Windows_mouse_cursors_only_scalable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.1/Windows_mouse_cursors_only_scalable.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.1/msvc_warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.1/msvc_warn.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.2.1/win32-msvc2012_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.2.1/win32-msvc2012_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.1/Windows_NOMINMAX_error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.1/Windows_NOMINMAX_error.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.1/Windows_mouse_cursors_only_scalable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.1/Windows_mouse_cursors_only_scalable.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.1/msvc_level4_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.1/msvc_level4_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.1/win32-msvc2013_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.1/win32-msvc2013_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.1/win32-msvc2013_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.1/win32-msvc2013_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.2/Windows_NOMINMAX_error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.2/Windows_NOMINMAX_error.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.2/Windows_mouse_cursors_only_scalable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.2/Windows_mouse_cursors_only_scalable.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.2/msvc_level4_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.2/msvc_level4_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.2/win32-msvc2013_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.2/win32-msvc2013_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.3.2/win32-msvc2013_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.3.2/win32-msvc2013_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.4.0/Windows_NOMINMAX_error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.4.0/Windows_NOMINMAX_error.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.4.0/msvc_level4_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.4.0/msvc_level4_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.4.0/win32-msvc2013_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.4.0/win32-msvc2013_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.4.0/win32-msvc2013_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.4.0/win32-msvc2013_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.4.1/msvc_level4_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.4.1/msvc_level4_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.4.1/win32-msvc2013_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.4.1/win32-msvc2013_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.4.1/win32-msvc2013_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.4.1/win32-msvc2013_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.5.0/msvc_level4_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.5.0/msvc_level4_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.5.0/msvc_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.5.0/msvc_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.5.0/msvc_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.5.0/msvc_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.6.0/msvc_level4_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.6.0/msvc_level4_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.6.0/msvc_shared_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.6.0/msvc_shared_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.6.0/msvc_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.6.0/msvc_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.7.0/mingw_build_large_file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.7.0/mingw_build_large_file.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.7.0/mingw_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.7.0/mingw_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.7.0/msvc_level4_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.7.0/msvc_level4_warnings.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.7.0/msvc_shared_build_without_debug_info.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.7.0/msvc_shared_build_without_debug_info.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.7.0/msvc_static_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.7.0/msvc_static_build.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.7.0/msvc_static_build_without_debug_info.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.7.0/msvc_static_build_without_debug_info.patch -------------------------------------------------------------------------------- /3rdparty/patches/qt-5.7.0/qtwebenginecore.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/3rdparty/patches/qt-5.7.0/qtwebenginecore.patch -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/README.md -------------------------------------------------------------------------------- /cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /cmake/ma_boost_asio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_asio/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_chrono/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_chrono/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_date_time/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_date_time/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_exception/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_exception/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_header_only/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_header_only/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_link/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_link/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_program_options/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_program_options/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_regex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_regex/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_system/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_thread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_thread/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_boost_timer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_boost_timer/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_coverage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_coverage/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_gtest/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_pic_on/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_pic_on/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_qt4_core_support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt4_core_support/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_qt4_gui_support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt4_gui_support/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_qt5_core_support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt5_core_support/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_qt5_core_support/FindICU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt5_core_support/FindICU.cmake -------------------------------------------------------------------------------- /cmake/ma_qt5_core_support/FindQt5PCRE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt5_core_support/FindQt5PCRE.cmake -------------------------------------------------------------------------------- /cmake/ma_qt5_gui_support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt5_gui_support/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ma_qt5_gui_support/FindQt5FreeType.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt5_gui_support/FindQt5FreeType.cmake -------------------------------------------------------------------------------- /cmake/ma_qt5_gui_support/FindQt5HarfBuzzNG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt5_gui_support/FindQt5HarfBuzzNG.cmake -------------------------------------------------------------------------------- /cmake/ma_qt5_gui_support/FindQt5PlatformSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt5_gui_support/FindQt5PlatformSupport.cmake -------------------------------------------------------------------------------- /cmake/ma_qt5_widgets_support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/ma_qt5_widgets_support/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/qt_msvs_tools/qt4.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/qt_msvs_tools/qt4.natvis -------------------------------------------------------------------------------- /cmake/qt_msvs_tools/qt5.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/qt_msvs_tools/qt5.natvis -------------------------------------------------------------------------------- /cmake/static_c_runtime_overrides.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/static_c_runtime_overrides.cmake -------------------------------------------------------------------------------- /cmake/static_cxx_runtime_overrides.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/cmake/static_cxx_runtime_overrides.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/Layered, active-object-based architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/Layered, active-object-based architecture.pdf -------------------------------------------------------------------------------- /doc/asio-samples short description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/asio-samples short description.pdf -------------------------------------------------------------------------------- /doc/echo_server.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/echo_server.pdf -------------------------------------------------------------------------------- /doc/screenshots/echo_server_windows7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/screenshots/echo_server_windows7.png -------------------------------------------------------------------------------- /doc/screenshots/qt_echo_server_started_kubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/screenshots/qt_echo_server_started_kubuntu.png -------------------------------------------------------------------------------- /doc/screenshots/qt_echo_server_started_ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/screenshots/qt_echo_server_started_ubuntu.png -------------------------------------------------------------------------------- /doc/screenshots/qt_echo_server_windows7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/screenshots/qt_echo_server_windows7.png -------------------------------------------------------------------------------- /doc/screenshots/qt_echo_server_windows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/screenshots/qt_echo_server_windows8.png -------------------------------------------------------------------------------- /doc/screenshots/qt_echo_server_windows_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/doc/screenshots/qt_echo_server_windows_xp.png -------------------------------------------------------------------------------- /docker/builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/README.md -------------------------------------------------------------------------------- /docker/builder/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/alpine/Dockerfile -------------------------------------------------------------------------------- /docker/builder/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/alpine/README.md -------------------------------------------------------------------------------- /docker/builder/alpine/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/alpine/start.sh -------------------------------------------------------------------------------- /docker/builder/rocky/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/rocky/Dockerfile -------------------------------------------------------------------------------- /docker/builder/rocky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/rocky/README.md -------------------------------------------------------------------------------- /docker/builder/rocky/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/rocky/start.sh -------------------------------------------------------------------------------- /docker/builder/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/ubuntu/Dockerfile -------------------------------------------------------------------------------- /docker/builder/ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/ubuntu/README.md -------------------------------------------------------------------------------- /docker/builder/ubuntu/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/builder/ubuntu/start.sh -------------------------------------------------------------------------------- /docker/ma_echo_server/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/alpine/Dockerfile -------------------------------------------------------------------------------- /docker/ma_echo_server/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/alpine/README.md -------------------------------------------------------------------------------- /docker/ma_echo_server/alpine/patch/boost-1.78.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/alpine/patch/boost-1.78.0.patch -------------------------------------------------------------------------------- /docker/ma_echo_server/distroless/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/distroless/Dockerfile -------------------------------------------------------------------------------- /docker/ma_echo_server/distroless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/distroless/README.md -------------------------------------------------------------------------------- /docker/ma_echo_server/distroless/patch/.gitignore: -------------------------------------------------------------------------------- 1 | # Workaround to keep empty directory in git -------------------------------------------------------------------------------- /docker/ma_echo_server/nanoserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/nanoserver/Dockerfile -------------------------------------------------------------------------------- /docker/ma_echo_server/nanoserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/nanoserver/README.md -------------------------------------------------------------------------------- /docker/ma_echo_server/nanoserver/app/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/nanoserver/app/build.bat -------------------------------------------------------------------------------- /docker/ma_echo_server/nanoserver/app/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/nanoserver/app/build.ps1 -------------------------------------------------------------------------------- /docker/ma_echo_server/nanoserver/install/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/nanoserver/install/install.ps1 -------------------------------------------------------------------------------- /docker/ma_echo_server/static/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/static/Dockerfile -------------------------------------------------------------------------------- /docker/ma_echo_server/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/static/README.md -------------------------------------------------------------------------------- /docker/ma_echo_server/static/patch/boost-1.78.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/docker/ma_echo_server/static/patch/boost-1.78.0.patch -------------------------------------------------------------------------------- /examples/asio_multicast_receiver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/asio_multicast_receiver/CMakeLists.txt -------------------------------------------------------------------------------- /examples/asio_multicast_receiver/src/receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/asio_multicast_receiver/src/receiver.cpp -------------------------------------------------------------------------------- /examples/asio_multicast_sender/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/asio_multicast_sender/CMakeLists.txt -------------------------------------------------------------------------------- /examples/asio_multicast_sender/src/sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/asio_multicast_sender/src/sender.cpp -------------------------------------------------------------------------------- /examples/ma_asio_performance_test_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_asio_performance_test_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ma_asio_performance_test_client/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_asio_performance_test_client/src/main.cpp -------------------------------------------------------------------------------- /examples/ma_async_basics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ma_async_basics/src/async_implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics/src/async_implementation.cpp -------------------------------------------------------------------------------- /examples/ma_async_basics/src/async_implementation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics/src/async_implementation.hpp -------------------------------------------------------------------------------- /examples/ma_async_basics/src/async_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics/src/async_interface.hpp -------------------------------------------------------------------------------- /examples/ma_async_basics/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics/src/main.cpp -------------------------------------------------------------------------------- /examples/ma_async_basics2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics2/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ma_async_basics2/src/async_implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics2/src/async_implementation.cpp -------------------------------------------------------------------------------- /examples/ma_async_basics2/src/async_implementation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics2/src/async_implementation.hpp -------------------------------------------------------------------------------- /examples/ma_async_basics2/src/async_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics2/src/async_interface.hpp -------------------------------------------------------------------------------- /examples/ma_async_basics2/src/do_something_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics2/src/do_something_handler.hpp -------------------------------------------------------------------------------- /examples/ma_async_basics2/src/do_something_handler_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics2/src/do_something_handler_fwd.hpp -------------------------------------------------------------------------------- /examples/ma_async_basics2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_async_basics2/src/main.cpp -------------------------------------------------------------------------------- /examples/ma_echo_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ma_echo_server/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server/src/config.cpp -------------------------------------------------------------------------------- /examples/ma_echo_server/src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server/src/config.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server/src/main.cpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/error.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/pooled_session_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/pooled_session_factory.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_config.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_config_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_config_fwd.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_factory.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_factory_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_factory_fwd.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_fwd.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_manager.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_manager_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_manager_config.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_manager_config_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_manager_config_fwd.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_manager_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_manager_fwd.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_manager_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_manager_stats.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/session_manager_stats_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/session_manager_stats_fwd.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/include/ma/echo/server/simple_session_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/include/ma/echo/server/simple_session_factory.hpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/src/error.cpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/src/pooled_session_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/src/pooled_session_factory.cpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/src/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/src/session.cpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/src/session_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/src/session_manager.cpp -------------------------------------------------------------------------------- /examples/ma_echo_server_core/src/simple_session_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_echo_server_core/src/simple_session_factory.cpp -------------------------------------------------------------------------------- /examples/ma_nmea_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_nmea_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ma_nmea_client/src/cyclic_read_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_nmea_client/src/cyclic_read_session.cpp -------------------------------------------------------------------------------- /examples/ma_nmea_client/src/cyclic_read_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_nmea_client/src/cyclic_read_session.hpp -------------------------------------------------------------------------------- /examples/ma_nmea_client/src/cyclic_read_session_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_nmea_client/src/cyclic_read_session_fwd.hpp -------------------------------------------------------------------------------- /examples/ma_nmea_client/src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_nmea_client/src/error.cpp -------------------------------------------------------------------------------- /examples/ma_nmea_client/src/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_nmea_client/src/error.hpp -------------------------------------------------------------------------------- /examples/ma_nmea_client/src/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_nmea_client/src/frame.hpp -------------------------------------------------------------------------------- /examples/ma_nmea_client/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_nmea_client/src/main.cpp -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.aps 2 | 3 | -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/custommetatypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/custommetatypes.cpp -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/custommetatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/custommetatypes.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/execution_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/execution_config.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/execution_config_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/execution_config_fwd.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/main.cpp -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/mainform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/mainform.cpp -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/mainform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/mainform.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/mainform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/mainform.ui -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/meta_type_register_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/meta_type_register_error.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/qt_echo_server.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/qt_echo_server.ico -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/qt_echo_server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/qt_echo_server.rc -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/service.cpp -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/service.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/service_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/service_fwd.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/serviceforwardsignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/serviceforwardsignal.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/serviceforwardsignal_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/serviceforwardsignal_fwd.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/serviceservantsignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/serviceservantsignal.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/serviceservantsignal_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/serviceservantsignal_fwd.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/servicestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/servicestate.h -------------------------------------------------------------------------------- /examples/ma_qt_echo_server/src/signal_connect_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/examples/ma_qt_echo_server/src/signal_connect_error.h -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/tcp-echo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/.helmignore -------------------------------------------------------------------------------- /kubernetes/tcp-echo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/Chart.yaml -------------------------------------------------------------------------------- /kubernetes/tcp-echo/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 1. Application port: {{ .Values.service.nodePort }} 2 | -------------------------------------------------------------------------------- /kubernetes/tcp-echo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/templates/_helpers.tpl -------------------------------------------------------------------------------- /kubernetes/tcp-echo/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/templates/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/tcp-echo/templates/pull-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/templates/pull-secret.yaml -------------------------------------------------------------------------------- /kubernetes/tcp-echo/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/templates/service.yaml -------------------------------------------------------------------------------- /kubernetes/tcp-echo/templates/test-pull-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/templates/test-pull-secret.yaml -------------------------------------------------------------------------------- /kubernetes/tcp-echo/templates/tests/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/templates/tests/pod.yaml -------------------------------------------------------------------------------- /kubernetes/tcp-echo/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/values.schema.json -------------------------------------------------------------------------------- /kubernetes/tcp-echo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/kubernetes/tcp-echo/values.yaml -------------------------------------------------------------------------------- /libs/ma_async_connect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_async_connect/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_async_connect/include/ma/async_connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_async_connect/include/ma/async_connect.hpp -------------------------------------------------------------------------------- /libs/ma_async_connect/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_bind_handler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_bind_handler/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_bind_handler/include/ma/bind_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_bind_handler/include/ma/bind_handler.hpp -------------------------------------------------------------------------------- /libs/ma_bind_handler/include/ma/detail/binder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_bind_handler/include/ma/detail/binder.hpp -------------------------------------------------------------------------------- /libs/ma_bind_handler/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_codecvt_cast/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_codecvt_cast/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_codecvt_cast/include/ma/codecvt_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_codecvt_cast/include/ma/codecvt_cast.hpp -------------------------------------------------------------------------------- /libs/ma_codecvt_cast/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_compat/include/ma/detail/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/include/ma/detail/functional.hpp -------------------------------------------------------------------------------- /libs/ma_compat/include/ma/detail/latch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/include/ma/detail/latch.hpp -------------------------------------------------------------------------------- /libs/ma_compat/include/ma/detail/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/include/ma/detail/memory.hpp -------------------------------------------------------------------------------- /libs/ma_compat/include/ma/detail/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/include/ma/detail/random.hpp -------------------------------------------------------------------------------- /libs/ma_compat/include/ma/detail/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/include/ma/detail/thread.hpp -------------------------------------------------------------------------------- /libs/ma_compat/include/ma/detail/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/include/ma/detail/tuple.hpp -------------------------------------------------------------------------------- /libs/ma_compat/include/ma/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/include/ma/detail/type_traits.hpp -------------------------------------------------------------------------------- /libs/ma_compat/include/ma/detail/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_compat/include/ma/detail/utility.hpp -------------------------------------------------------------------------------- /libs/ma_compat/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_config/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_config/include/ma/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_config/include/ma/config.hpp -------------------------------------------------------------------------------- /libs/ma_config/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_console_close_signal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_console_close_signal/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_console_close_signal/include/ma/console_close_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_console_close_signal/include/ma/console_close_guard.hpp -------------------------------------------------------------------------------- /libs/ma_console_close_signal/include/ma/console_close_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_console_close_signal/include/ma/console_close_signal.hpp -------------------------------------------------------------------------------- /libs/ma_console_close_signal/include/ma/console_close_signal_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_console_close_signal/include/ma/console_close_signal_service.hpp -------------------------------------------------------------------------------- /libs/ma_console_close_signal/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_context_alloc_handler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_context_alloc_handler/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_context_alloc_handler/include/ma/context_alloc_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_context_alloc_handler/include/ma/context_alloc_handler.hpp -------------------------------------------------------------------------------- /libs/ma_context_alloc_handler/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_context_invoke_handler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_context_invoke_handler/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_context_invoke_handler/include/ma/context_invoke_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_context_invoke_handler/include/ma/context_invoke_handler.hpp -------------------------------------------------------------------------------- /libs/ma_context_invoke_handler/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_context_wrapped_handler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_context_wrapped_handler/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_context_wrapped_handler/include/ma/context_wrapped_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_context_wrapped_handler/include/ma/context_wrapped_handler.hpp -------------------------------------------------------------------------------- /libs/ma_context_wrapped_handler/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_custom_alloc_handler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_custom_alloc_handler/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_custom_alloc_handler/include/ma/custom_alloc_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_custom_alloc_handler/include/ma/custom_alloc_handler.hpp -------------------------------------------------------------------------------- /libs/ma_custom_alloc_handler/include/ma/handler_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_custom_alloc_handler/include/ma/handler_allocator.hpp -------------------------------------------------------------------------------- /libs/ma_custom_alloc_handler/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_cyclic_buffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_cyclic_buffer/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_cyclic_buffer/include/ma/cyclic_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_cyclic_buffer/include/ma/cyclic_buffer.hpp -------------------------------------------------------------------------------- /libs/ma_cyclic_buffer/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_handler_ptr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_handler_ptr/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_handler_ptr/include/ma/detail/handler_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_handler_ptr/include/ma/detail/handler_ptr.hpp -------------------------------------------------------------------------------- /libs/ma_handler_ptr/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_handler_storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_handler_storage/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_handler_storage/include/ma/handler_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_handler_storage/include/ma/handler_storage.hpp -------------------------------------------------------------------------------- /libs/ma_handler_storage/include/ma/handler_storage_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_handler_storage/include/ma/handler_storage_service.hpp -------------------------------------------------------------------------------- /libs/ma_handler_storage/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_helpers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_helpers/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_helpers/include/ma/executor_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_helpers/include/ma/executor_helpers.hpp -------------------------------------------------------------------------------- /libs/ma_helpers/include/ma/handler_alloc_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_helpers/include/ma/handler_alloc_helpers.hpp -------------------------------------------------------------------------------- /libs/ma_helpers/include/ma/handler_cont_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_helpers/include/ma/handler_cont_helpers.hpp -------------------------------------------------------------------------------- /libs/ma_helpers/include/ma/handler_invoke_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_helpers/include/ma/handler_invoke_helpers.hpp -------------------------------------------------------------------------------- /libs/ma_helpers/include/ma/io_context_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_helpers/include/ma/io_context_helpers.hpp -------------------------------------------------------------------------------- /libs/ma_helpers/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_intrusive_list/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_intrusive_list/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_intrusive_list/include/ma/detail/intrusive_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_intrusive_list/include/ma/detail/intrusive_list.hpp -------------------------------------------------------------------------------- /libs/ma_intrusive_list/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_io_service_pool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_io_service_pool/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_io_service_pool/include/ma/test/io_service_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_io_service_pool/include/ma/test/io_service_pool.hpp -------------------------------------------------------------------------------- /libs/ma_io_service_pool/src/io_service_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_io_service_pool/src/io_service_pool.cpp -------------------------------------------------------------------------------- /libs/ma_limited_int/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_limited_int/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_limited_int/include/ma/limited_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_limited_int/include/ma/limited_int.hpp -------------------------------------------------------------------------------- /libs/ma_limited_int/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_lockable_wrapped_handler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_lockable_wrapped_handler/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_lockable_wrapped_handler/include/ma/lockable_wrapped_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_lockable_wrapped_handler/include/ma/lockable_wrapped_handler.hpp -------------------------------------------------------------------------------- /libs/ma_lockable_wrapped_handler/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_service_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_service_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_service_base/include/ma/detail/service_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_service_base/include/ma/detail/service_base.hpp -------------------------------------------------------------------------------- /libs/ma_service_base/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_shared_ptr_factory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_shared_ptr_factory/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_shared_ptr_factory/include/ma/shared_ptr_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_shared_ptr_factory/include/ma/shared_ptr_factory.hpp -------------------------------------------------------------------------------- /libs/ma_shared_ptr_factory/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_sp_intrusive_list/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_sp_intrusive_list/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_sp_intrusive_list/include/ma/sp_intrusive_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_sp_intrusive_list/include/ma/sp_intrusive_list.hpp -------------------------------------------------------------------------------- /libs/ma_sp_intrusive_list/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_sp_singleton/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_sp_singleton/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_sp_singleton/include/ma/detail/sp_singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_sp_singleton/include/ma/detail/sp_singleton.hpp -------------------------------------------------------------------------------- /libs/ma_sp_singleton/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_steady_deadline_timer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_steady_deadline_timer/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_steady_deadline_timer/include/ma/steady_deadline_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_steady_deadline_timer/include/ma/steady_deadline_timer.hpp -------------------------------------------------------------------------------- /libs/ma_steady_deadline_timer/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_strand/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_strand/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_strand/include/ma/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_strand/include/ma/strand.hpp -------------------------------------------------------------------------------- /libs/ma_strand/include/ma/strand_wrapped_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_strand/include/ma/strand_wrapped_handler.hpp -------------------------------------------------------------------------------- /libs/ma_strand/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_thread_group/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_thread_group/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_thread_group/include/ma/thread_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_thread_group/include/ma/thread_group.hpp -------------------------------------------------------------------------------- /libs/ma_thread_group/src/fake.cpp: -------------------------------------------------------------------------------- 1 | // Fake source file to build C++ library -------------------------------------------------------------------------------- /libs/ma_windows_console_signal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_windows_console_signal/CMakeLists.txt -------------------------------------------------------------------------------- /libs/ma_windows_console_signal/include/ma/windows/console_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_windows_console_signal/include/ma/windows/console_signal.hpp -------------------------------------------------------------------------------- /libs/ma_windows_console_signal/include/ma/windows/console_signal_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_windows_console_signal/include/ma/windows/console_signal_service.hpp -------------------------------------------------------------------------------- /libs/ma_windows_console_signal/src/console_signal_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/libs/ma_windows_console_signal/src/console_signal_service.cpp -------------------------------------------------------------------------------- /scripts/appveyor/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/appveyor/build.ps1 -------------------------------------------------------------------------------- /scripts/appveyor/environment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/appveyor/environment.ps1 -------------------------------------------------------------------------------- /scripts/appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/appveyor/install.ps1 -------------------------------------------------------------------------------- /scripts/appveyor/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/appveyor/test.ps1 -------------------------------------------------------------------------------- /scripts/travis/before_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/travis/before_install.sh -------------------------------------------------------------------------------- /scripts/travis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/travis/build.sh -------------------------------------------------------------------------------- /scripts/travis/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/travis/install.sh -------------------------------------------------------------------------------- /scripts/travis/travis_retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/travis/travis_retry.sh -------------------------------------------------------------------------------- /scripts/travis/vercomp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/scripts/travis/vercomp.sh -------------------------------------------------------------------------------- /tests/ma_async_connect_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_async_connect_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_async_connect_test/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_async_connect_test/src/main.cpp -------------------------------------------------------------------------------- /tests/ma_bind_handler_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_bind_handler_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_bind_handler_test/src/bind_handler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_bind_handler_test/src/bind_handler_test.cpp -------------------------------------------------------------------------------- /tests/ma_codecvt_cast_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_codecvt_cast_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_codecvt_cast_test/src/codecvt_cast_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_codecvt_cast_test/src/codecvt_cast_test.cpp -------------------------------------------------------------------------------- /tests/ma_console_close_signal_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_console_close_signal_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_console_close_signal_test/src/console_close_guard_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_console_close_signal_test/src/console_close_guard_test.cpp -------------------------------------------------------------------------------- /tests/ma_console_close_signal_test/src/console_close_signal_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_console_close_signal_test/src/console_close_signal_test.cpp -------------------------------------------------------------------------------- /tests/ma_context_alloc_handler_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_context_alloc_handler_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_context_alloc_handler_test/src/context_alloc_handler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_context_alloc_handler_test/src/context_alloc_handler_test.cpp -------------------------------------------------------------------------------- /tests/ma_context_invoke_handler_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_context_invoke_handler_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_context_invoke_handler_test/src/context_invoke_handler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_context_invoke_handler_test/src/context_invoke_handler_test.cpp -------------------------------------------------------------------------------- /tests/ma_context_wrapped_handler_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_context_wrapped_handler_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_context_wrapped_handler_test/src/context_wrapped_handler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_context_wrapped_handler_test/src/context_wrapped_handler_test.cpp -------------------------------------------------------------------------------- /tests/ma_custom_alloc_handler_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_custom_alloc_handler_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_custom_alloc_handler_test/src/custom_alloc_handler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_custom_alloc_handler_test/src/custom_alloc_handler_test.cpp -------------------------------------------------------------------------------- /tests/ma_cyclic_buffer_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_cyclic_buffer_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_cyclic_buffer_test/src/cyclic_buffer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_cyclic_buffer_test/src/cyclic_buffer_test.cpp -------------------------------------------------------------------------------- /tests/ma_handler_allocator_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_handler_allocator_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_handler_allocator_test/src/handler_allocator_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_handler_allocator_test/src/handler_allocator_test.cpp -------------------------------------------------------------------------------- /tests/ma_handler_storage_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_handler_storage_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_handler_storage_test/src/handler_storage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_handler_storage_test/src/handler_storage_test.cpp -------------------------------------------------------------------------------- /tests/ma_intrusive_list_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_intrusive_list_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_intrusive_list_test/src/intrusive_forward_list_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_intrusive_list_test/src/intrusive_forward_list_test.cpp -------------------------------------------------------------------------------- /tests/ma_intrusive_list_test/src/intrusive_list_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_intrusive_list_test/src/intrusive_list_test.cpp -------------------------------------------------------------------------------- /tests/ma_limited_int_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_limited_int_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_limited_int_test/src/limited_int_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_limited_int_test/src/limited_int_test.cpp -------------------------------------------------------------------------------- /tests/ma_lockable_wrapper_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_lockable_wrapper_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_lockable_wrapper_test/src/lockable_wrapper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_lockable_wrapper_test/src/lockable_wrapper_test.cpp -------------------------------------------------------------------------------- /tests/ma_shared_ptr_factory_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_shared_ptr_factory_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_shared_ptr_factory_test/src/shared_ptr_factory_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_shared_ptr_factory_test/src/shared_ptr_factory_test.cpp -------------------------------------------------------------------------------- /tests/ma_sp_intrusive_list_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_sp_intrusive_list_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_sp_intrusive_list_test/src/sp_intrusive_list_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_sp_intrusive_list_test/src/sp_intrusive_list_test.cpp -------------------------------------------------------------------------------- /tests/ma_sp_singleton_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_sp_singleton_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_sp_singleton_test/src/sp_singleton_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_sp_singleton_test/src/sp_singleton_test.cpp -------------------------------------------------------------------------------- /tests/ma_strand_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_strand_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_strand_test/src/strand_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_strand_test/src/strand_test.cpp -------------------------------------------------------------------------------- /tests/ma_windows_console_signal_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_windows_console_signal_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ma_windows_console_signal_test/src/windows_console_signal_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabrarov/asio_samples/HEAD/tests/ma_windows_console_signal_test/src/windows_console_signal_test.cpp --------------------------------------------------------------------------------