├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── clang-format.yml │ ├── cpp-tests.yml │ └── reactjs-tests.yml ├── .gitignore ├── Images ├── Configuration_AV8B_Screenshot.jpg ├── DCS_Interface_Banner.png ├── Streamdeck_AV8B_Demo.gif └── icon_hi_res.png ├── LICENSE ├── README.md ├── Release ├── Examples │ ├── A-10C.streamDeckProfile │ ├── AV8BNA.streamDeckProfile │ ├── F_A-18C.streamDeckProfile │ ├── JF-17_UFCP.streamDeckProfile │ └── JF-17_UFCP_icons_and_export_lua.zip ├── Icon Library │ ├── AV8B_AG_VSTOL_NAV.svg │ ├── Button_AV8B_ODU.png │ ├── Button_AV8B_ODU.svg │ ├── Button_UFC_Blank.png │ ├── Chrome_Switch_High.png │ ├── Chrome_Switch_Low.png │ ├── Chrome_Switch_Mid.png │ ├── MASTER_CAUTION_AV8B.svg │ ├── MASTER_CAUTION_AV8B_off.png │ ├── MASTER_CAUTION_AV8B_on.png │ ├── Mode_AA_off.png │ ├── Mode_AA_on.png │ ├── Mode_AV8B_AG_off.png │ ├── Mode_AV8B_AG_on.png │ ├── Mode_AV8B_NAV_off.png │ ├── Mode_AV8B_NAV_on.png │ ├── Mode_AV8B_VSTOL_off.png │ ├── Mode_AV8B_VSTOL_on.png │ ├── Rotary_Dial_0.png │ ├── Rotary_Dial_1.png │ ├── Rotary_Dial_Half_0.png │ ├── Rotary_Dial_Half_1.png │ ├── Rotary_Switch_0.png │ ├── Rotary_Switch_1.png │ ├── Rotary_Switch_Half_0.png │ ├── Rotary_Switch_Half_1.png │ ├── Static_AV8B_ODU_Corner.png │ └── Static_AV8B_ODU_Corner.svg └── com.ctytler.dcs.streamDeckPlugin ├── Sources ├── README.md ├── backend-cpp │ ├── ElgatoSD │ │ ├── EPLJSONUtils.h │ │ ├── ESDBasePlugin.h │ │ ├── ESDConnectionManager.cpp │ │ ├── ESDConnectionManager.h │ │ ├── ESDLocalizer.cpp │ │ ├── ESDLocalizer.h │ │ ├── ESDSDKDefines.h │ │ ├── ESDUtilities.h │ │ ├── ESDUtilitiesWindows.cpp │ │ ├── ElgatoSD.vcxproj │ │ ├── packages.config │ │ ├── pch.cpp │ │ └── pch.h │ ├── SimulatorInterface │ │ ├── Protocols │ │ │ ├── DcsBiosProtocol.cpp │ │ │ ├── DcsBiosProtocol.h │ │ │ ├── DcsBiosStreamParser.cpp │ │ │ ├── DcsBiosStreamParser.h │ │ │ ├── DcsExportScriptProtocol.cpp │ │ │ ├── DcsExportScriptProtocol.h │ │ │ └── test │ │ │ │ ├── DcsBiosProtocolTest.cpp │ │ │ │ ├── DcsBiosStreamParserTest.cpp │ │ │ │ └── DcsExportScriptProtocolTest.cpp │ │ ├── SimConnectionManager.cpp │ │ ├── SimConnectionManager.h │ │ ├── SimulatorInterface.cpp │ │ ├── SimulatorInterface.h │ │ ├── SimulatorInterface.vcxproj │ │ ├── SimulatorInterfaceParameters.h │ │ ├── SimulatorProtocolTypes.h │ │ ├── packages.config │ │ └── test │ │ │ ├── SimConnectionManagerTest.cpp │ │ │ └── SimulatorInterfaceTest.cpp │ ├── StreamdeckContext │ │ ├── BackwardsCompatibilityHandler.cpp │ │ ├── BackwardsCompatibilityHandler.h │ │ ├── ExportMonitors │ │ │ ├── ImageStateMonitor.cpp │ │ │ ├── ImageStateMonitor.h │ │ │ ├── IncrementMonitor.cpp │ │ │ ├── IncrementMonitor.h │ │ │ ├── TitleMonitor.cpp │ │ │ ├── TitleMonitor.h │ │ │ └── test │ │ │ │ ├── ImageStateMonitorTest.cpp │ │ │ │ ├── IncrementMonitorTest.cpp │ │ │ │ └── TitleMonitorTest.cpp │ │ ├── SendActions │ │ │ ├── IncrementAction.cpp │ │ │ ├── IncrementAction.h │ │ │ ├── MomentaryAction.cpp │ │ │ ├── MomentaryAction.h │ │ │ ├── SendActionFactory.cpp │ │ │ ├── SendActionFactory.h │ │ │ ├── SendActionInterface.h │ │ │ ├── SwitchAction.cpp │ │ │ ├── SwitchAction.h │ │ │ └── test │ │ │ │ ├── IncrementActionTest.cpp │ │ │ │ ├── MomentaryActionTest.cpp │ │ │ │ ├── SendActionFactoryTest.cpp │ │ │ │ └── SwitchActionTest.cpp │ │ ├── StreamdeckContext.cpp │ │ ├── StreamdeckContext.h │ │ ├── StreamdeckContext.vcxproj │ │ ├── packages.config │ │ └── test │ │ │ ├── BackwardsCompatibilityHandlerTest.cpp │ │ │ └── StreamdeckContextTest.cpp │ ├── StreamdeckInterface │ │ ├── StreamdeckInterface.cpp │ │ ├── StreamdeckInterface.h │ │ ├── StreamdeckInterface.vcxproj │ │ ├── main.cpp │ │ └── packages.config │ ├── Test │ │ ├── MockESDConnectionManager.h │ │ ├── Test.vcxproj │ │ └── packages.config │ ├── Utilities │ │ ├── Decimal.cpp │ │ ├── Decimal.h │ │ ├── JsonReader.cpp │ │ ├── JsonReader.h │ │ ├── LuaReader.cpp │ │ ├── LuaReader.h │ │ ├── StringUtilities.cpp │ │ ├── StringUtilities.h │ │ ├── UdpSocket.cpp │ │ ├── UdpSocket.h │ │ ├── Utilities.vcxproj │ │ ├── packages.config │ │ └── test │ │ │ ├── DecimalTest.cpp │ │ │ ├── JsonReaderTest.cpp │ │ │ ├── LuaReaderTest.cpp │ │ │ ├── StringUtilitiesTest.cpp │ │ │ ├── UdpSocketTest.cpp │ │ │ └── sample.json │ ├── Vendor │ │ ├── asio │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── LICENSE_1_0.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── doc │ │ │ │ ├── asio.png │ │ │ │ ├── asio │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── cpp03_examples.html │ │ │ │ │ │ ├── cpp11_examples.html │ │ │ │ │ │ └── cpp17_examples.html │ │ │ │ │ ├── history.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── net_ts.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── overview │ │ │ │ │ │ ├── core.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── allocation.html │ │ │ │ │ │ │ ├── async.html │ │ │ │ │ │ │ ├── basics.html │ │ │ │ │ │ │ ├── buffers.html │ │ │ │ │ │ │ ├── concurrency_hint.html │ │ │ │ │ │ │ ├── coroutine.html │ │ │ │ │ │ │ ├── coroutines_ts.html │ │ │ │ │ │ │ ├── handler_tracking.html │ │ │ │ │ │ │ ├── line_based.html │ │ │ │ │ │ │ ├── reactor.html │ │ │ │ │ │ │ ├── spawn.html │ │ │ │ │ │ │ ├── strands.html │ │ │ │ │ │ │ ├── streams.html │ │ │ │ │ │ │ └── threads.html │ │ │ │ │ │ ├── cpp2011.html │ │ │ │ │ │ ├── cpp2011 │ │ │ │ │ │ │ ├── array.html │ │ │ │ │ │ │ ├── atomic.html │ │ │ │ │ │ │ ├── chrono.html │ │ │ │ │ │ │ ├── futures.html │ │ │ │ │ │ │ ├── move_handlers.html │ │ │ │ │ │ │ ├── move_objects.html │ │ │ │ │ │ │ ├── shared_ptr.html │ │ │ │ │ │ │ ├── system_error.html │ │ │ │ │ │ │ └── variadic.html │ │ │ │ │ │ ├── implementation.html │ │ │ │ │ │ ├── networking.html │ │ │ │ │ │ ├── networking │ │ │ │ │ │ │ ├── bsd_sockets.html │ │ │ │ │ │ │ ├── iostreams.html │ │ │ │ │ │ │ ├── other_protocols.html │ │ │ │ │ │ │ └── protocols.html │ │ │ │ │ │ ├── posix.html │ │ │ │ │ │ ├── posix │ │ │ │ │ │ │ ├── fork.html │ │ │ │ │ │ │ ├── local.html │ │ │ │ │ │ │ └── stream_descriptor.html │ │ │ │ │ │ ├── rationale.html │ │ │ │ │ │ ├── serial_ports.html │ │ │ │ │ │ ├── signals.html │ │ │ │ │ │ ├── ssl.html │ │ │ │ │ │ ├── timers.html │ │ │ │ │ │ ├── windows.html │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ ├── object_handle.html │ │ │ │ │ │ │ ├── random_access_handle.html │ │ │ │ │ │ │ └── stream_handle.html │ │ │ │ │ ├── reference.html │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── AcceptHandler.html │ │ │ │ │ │ ├── AcceptableProtocol.html │ │ │ │ │ │ ├── AsyncRandomAccessReadDevice.html │ │ │ │ │ │ ├── AsyncRandomAccessWriteDevice.html │ │ │ │ │ │ ├── AsyncReadStream.html │ │ │ │ │ │ ├── AsyncWriteStream.html │ │ │ │ │ │ ├── BufferedHandshakeHandler.html │ │ │ │ │ │ ├── CompletionCondition.html │ │ │ │ │ │ ├── CompletionHandler.html │ │ │ │ │ │ ├── ConnectCondition.html │ │ │ │ │ │ ├── ConnectHandler.html │ │ │ │ │ │ ├── ConstBufferSequence.html │ │ │ │ │ │ ├── DynamicBuffer.html │ │ │ │ │ │ ├── Endpoint.html │ │ │ │ │ │ ├── EndpointSequence.html │ │ │ │ │ │ ├── ExecutionContext.html │ │ │ │ │ │ ├── Executor1.html │ │ │ │ │ │ ├── GettableSerialPortOption.html │ │ │ │ │ │ ├── GettableSocketOption.html │ │ │ │ │ │ ├── Handler.html │ │ │ │ │ │ ├── HandshakeHandler.html │ │ │ │ │ │ ├── InternetProtocol.html │ │ │ │ │ │ ├── IoControlCommand.html │ │ │ │ │ │ ├── IoObjectService.html │ │ │ │ │ │ ├── IteratorConnectHandler.html │ │ │ │ │ │ ├── LegacyCompletionHandler.html │ │ │ │ │ │ ├── MoveAcceptHandler.html │ │ │ │ │ │ ├── MutableBufferSequence.html │ │ │ │ │ │ ├── ProtoAllocator.html │ │ │ │ │ │ ├── Protocol.html │ │ │ │ │ │ ├── RangeConnectHandler.html │ │ │ │ │ │ ├── ReadHandler.html │ │ │ │ │ │ ├── ResolveHandler.html │ │ │ │ │ │ ├── Service.html │ │ │ │ │ │ ├── SettableSerialPortOption.html │ │ │ │ │ │ ├── SettableSocketOption.html │ │ │ │ │ │ ├── ShutdownHandler.html │ │ │ │ │ │ ├── SignalHandler.html │ │ │ │ │ │ ├── SyncRandomAccessReadDevice.html │ │ │ │ │ │ ├── SyncRandomAccessWriteDevice.html │ │ │ │ │ │ ├── SyncReadStream.html │ │ │ │ │ │ ├── SyncWriteStream.html │ │ │ │ │ │ ├── TimeTraits.html │ │ │ │ │ │ ├── WaitHandler.html │ │ │ │ │ │ ├── WaitTraits.html │ │ │ │ │ │ ├── WriteHandler.html │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ ├── asio_handler_allocate.html │ │ │ │ │ │ ├── asio_handler_deallocate.html │ │ │ │ │ │ ├── asio_handler_invoke.html │ │ │ │ │ │ ├── asio_handler_invoke │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── asio_handler_is_continuation.html │ │ │ │ │ │ ├── associated_allocator.html │ │ │ │ │ │ ├── associated_allocator │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── associated_executor.html │ │ │ │ │ │ ├── associated_executor │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── async_completion.html │ │ │ │ │ │ ├── async_completion │ │ │ │ │ │ │ ├── async_completion.html │ │ │ │ │ │ │ ├── completion_handler.html │ │ │ │ │ │ │ ├── completion_handler_type.html │ │ │ │ │ │ │ └── result.html │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ ├── async_connect │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── async_read.html │ │ │ │ │ │ ├── async_read │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── async_read_at.html │ │ │ │ │ │ ├── async_read_at │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── async_read_until.html │ │ │ │ │ │ ├── async_read_until │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ ├── async_result.html │ │ │ │ │ │ ├── async_result │ │ │ │ │ │ │ ├── async_result.html │ │ │ │ │ │ │ ├── completion_handler_type.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── return_type.html │ │ │ │ │ │ ├── async_result_lt__Handler__gt_.html │ │ │ │ │ │ ├── async_result_lt__Handler__gt_ │ │ │ │ │ │ │ ├── async_result.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── async_result_lt__std__packaged_task_lt__Result_lp_Args_ellipsis__rp__gt__comma__Signature__gt_.html │ │ │ │ │ │ ├── async_result_lt__std__packaged_task_lt__Result_lp_Args_ellipsis__rp__gt__comma__Signature__gt_ │ │ │ │ │ │ │ ├── async_result.html │ │ │ │ │ │ │ ├── completion_handler_type.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── return_type.html │ │ │ │ │ │ ├── async_write.html │ │ │ │ │ │ ├── async_write │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── async_write_at.html │ │ │ │ │ │ ├── async_write_at │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── asynchronous_operations.html │ │ │ │ │ │ ├── asynchronous_socket_operations.html │ │ │ │ │ │ ├── bad_executor.html │ │ │ │ │ │ ├── bad_executor │ │ │ │ │ │ │ ├── bad_executor.html │ │ │ │ │ │ │ └── what.html │ │ │ │ │ │ ├── basic_datagram_socket.html │ │ │ │ │ │ ├── basic_datagram_socket │ │ │ │ │ │ │ ├── _basic_datagram_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_receive_from.html │ │ │ │ │ │ │ ├── async_receive_from │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── async_send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send_to.html │ │ │ │ │ │ │ ├── async_send_to │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_datagram_socket.html │ │ │ │ │ │ │ ├── basic_datagram_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive.html │ │ │ │ │ │ │ ├── receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_from.html │ │ │ │ │ │ │ ├── receive_from │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send.html │ │ │ │ │ │ │ ├── send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── send_to.html │ │ │ │ │ │ │ ├── send_to │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_deadline_timer.html │ │ │ │ │ │ ├── basic_deadline_timer │ │ │ │ │ │ │ ├── _basic_deadline_timer.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_deadline_timer.html │ │ │ │ │ │ │ ├── basic_deadline_timer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── cancel_one.html │ │ │ │ │ │ │ ├── cancel_one │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── duration_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── expires_at.html │ │ │ │ │ │ │ ├── expires_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── expires_from_now.html │ │ │ │ │ │ │ ├── expires_from_now │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── time_type.html │ │ │ │ │ │ │ ├── traits_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ └── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_io_object.html │ │ │ │ │ │ ├── basic_io_object │ │ │ │ │ │ │ ├── _basic_io_object.html │ │ │ │ │ │ │ ├── basic_io_object.html │ │ │ │ │ │ │ ├── basic_io_object │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_implementation.html │ │ │ │ │ │ │ ├── get_implementation │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_service.html │ │ │ │ │ │ │ ├── get_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── implementation_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ └── service_type.html │ │ │ │ │ │ ├── basic_raw_socket.html │ │ │ │ │ │ ├── basic_raw_socket │ │ │ │ │ │ │ ├── _basic_raw_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_receive_from.html │ │ │ │ │ │ │ ├── async_receive_from │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── async_send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send_to.html │ │ │ │ │ │ │ ├── async_send_to │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_raw_socket.html │ │ │ │ │ │ │ ├── basic_raw_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive.html │ │ │ │ │ │ │ ├── receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_from.html │ │ │ │ │ │ │ ├── receive_from │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send.html │ │ │ │ │ │ │ ├── send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── send_to.html │ │ │ │ │ │ │ ├── send_to │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_seq_packet_socket.html │ │ │ │ │ │ ├── basic_seq_packet_socket │ │ │ │ │ │ │ ├── _basic_seq_packet_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_seq_packet_socket.html │ │ │ │ │ │ │ ├── basic_seq_packet_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive.html │ │ │ │ │ │ │ ├── receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send.html │ │ │ │ │ │ │ ├── send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_socket.html │ │ │ │ │ │ ├── basic_socket │ │ │ │ │ │ │ ├── _basic_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_socket.html │ │ │ │ │ │ │ ├── basic_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_socket_acceptor.html │ │ │ │ │ │ ├── basic_socket_acceptor │ │ │ │ │ │ │ ├── _basic_socket_acceptor.html │ │ │ │ │ │ │ ├── accept.html │ │ │ │ │ │ │ ├── accept │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_accept.html │ │ │ │ │ │ │ ├── async_accept │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_socket_acceptor.html │ │ │ │ │ │ │ ├── basic_socket_acceptor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── listen.html │ │ │ │ │ │ │ ├── listen │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_socket_iostream.html │ │ │ │ │ │ ├── basic_socket_iostream │ │ │ │ │ │ │ ├── basic_socket_iostream.html │ │ │ │ │ │ │ ├── basic_socket_iostream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── clock_type.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── duration.html │ │ │ │ │ │ │ ├── duration_type.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── error.html │ │ │ │ │ │ │ ├── expires_after.html │ │ │ │ │ │ │ ├── expires_at.html │ │ │ │ │ │ │ ├── expires_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── expires_from_now.html │ │ │ │ │ │ │ ├── expires_from_now │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── expiry.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── rdbuf.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── time_point.html │ │ │ │ │ │ │ └── time_type.html │ │ │ │ │ │ ├── basic_socket_streambuf.html │ │ │ │ │ │ ├── basic_socket_streambuf │ │ │ │ │ │ │ ├── _basic_socket_streambuf.html │ │ │ │ │ │ │ ├── basic_socket_streambuf.html │ │ │ │ │ │ │ ├── basic_socket_streambuf │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── clock_type.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── duration.html │ │ │ │ │ │ │ ├── duration_type.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── error.html │ │ │ │ │ │ │ ├── expires_after.html │ │ │ │ │ │ │ ├── expires_at.html │ │ │ │ │ │ │ ├── expires_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── expires_from_now.html │ │ │ │ │ │ │ ├── expires_from_now │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── expiry.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── overflow.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── puberror.html │ │ │ │ │ │ │ ├── setbuf.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── sync.html │ │ │ │ │ │ │ ├── time_point.html │ │ │ │ │ │ │ ├── time_type.html │ │ │ │ │ │ │ └── underflow.html │ │ │ │ │ │ ├── basic_stream_socket.html │ │ │ │ │ │ ├── basic_stream_socket │ │ │ │ │ │ │ ├── _basic_stream_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── async_send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_stream_socket.html │ │ │ │ │ │ │ ├── basic_stream_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── receive.html │ │ │ │ │ │ │ ├── receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send.html │ │ │ │ │ │ │ ├── send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── wait_type.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_streambuf.html │ │ │ │ │ │ ├── basic_streambuf │ │ │ │ │ │ │ ├── basic_streambuf.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── commit.html │ │ │ │ │ │ │ ├── const_buffers_type.html │ │ │ │ │ │ │ ├── consume.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── mutable_buffers_type.html │ │ │ │ │ │ │ ├── overflow.html │ │ │ │ │ │ │ ├── prepare.html │ │ │ │ │ │ │ ├── reserve.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ └── underflow.html │ │ │ │ │ │ ├── basic_streambuf_ref.html │ │ │ │ │ │ ├── basic_streambuf_ref │ │ │ │ │ │ │ ├── basic_streambuf_ref.html │ │ │ │ │ │ │ ├── basic_streambuf_ref │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── commit.html │ │ │ │ │ │ │ ├── const_buffers_type.html │ │ │ │ │ │ │ ├── consume.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── mutable_buffers_type.html │ │ │ │ │ │ │ ├── prepare.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── basic_waitable_timer.html │ │ │ │ │ │ ├── basic_waitable_timer │ │ │ │ │ │ │ ├── _basic_waitable_timer.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_waitable_timer.html │ │ │ │ │ │ │ ├── basic_waitable_timer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── cancel_one.html │ │ │ │ │ │ │ ├── cancel_one │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── clock_type.html │ │ │ │ │ │ │ ├── duration.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── expires_after.html │ │ │ │ │ │ │ ├── expires_at.html │ │ │ │ │ │ │ ├── expires_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── expires_from_now.html │ │ │ │ │ │ │ ├── expires_from_now │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── expiry.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── time_point.html │ │ │ │ │ │ │ ├── traits_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ └── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_yield_context.html │ │ │ │ │ │ ├── basic_yield_context │ │ │ │ │ │ │ ├── basic_yield_context.html │ │ │ │ │ │ │ ├── basic_yield_context │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── callee_type.html │ │ │ │ │ │ │ ├── caller_type.html │ │ │ │ │ │ │ └── operator_lb__rb_.html │ │ │ │ │ │ ├── bind_executor.html │ │ │ │ │ │ ├── bind_executor │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffer.html │ │ │ │ │ │ ├── buffer │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload13.html │ │ │ │ │ │ │ ├── overload14.html │ │ │ │ │ │ │ ├── overload15.html │ │ │ │ │ │ │ ├── overload16.html │ │ │ │ │ │ │ ├── overload17.html │ │ │ │ │ │ │ ├── overload18.html │ │ │ │ │ │ │ ├── overload19.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload20.html │ │ │ │ │ │ │ ├── overload21.html │ │ │ │ │ │ │ ├── overload22.html │ │ │ │ │ │ │ ├── overload23.html │ │ │ │ │ │ │ ├── overload24.html │ │ │ │ │ │ │ ├── overload25.html │ │ │ │ │ │ │ ├── overload26.html │ │ │ │ │ │ │ ├── overload27.html │ │ │ │ │ │ │ ├── overload28.html │ │ │ │ │ │ │ ├── overload29.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload30.html │ │ │ │ │ │ │ ├── overload31.html │ │ │ │ │ │ │ ├── overload32.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── buffer_cast.html │ │ │ │ │ │ ├── buffer_cast │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffer_copy.html │ │ │ │ │ │ ├── buffer_copy │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffer_sequence_begin.html │ │ │ │ │ │ ├── buffer_sequence_begin │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── buffer_sequence_end.html │ │ │ │ │ │ ├── buffer_sequence_end │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── buffer_size.html │ │ │ │ │ │ ├── buffered_read_stream.html │ │ │ │ │ │ ├── buffered_read_stream │ │ │ │ │ │ │ ├── async_fill.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── buffered_read_stream.html │ │ │ │ │ │ │ ├── buffered_read_stream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── default_buffer_size.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── fill.html │ │ │ │ │ │ │ ├── fill │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── in_avail.html │ │ │ │ │ │ │ ├── in_avail │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── next_layer.html │ │ │ │ │ │ │ ├── next_layer_type.html │ │ │ │ │ │ │ ├── peek.html │ │ │ │ │ │ │ ├── peek │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffered_stream.html │ │ │ │ │ │ ├── buffered_stream │ │ │ │ │ │ │ ├── async_fill.html │ │ │ │ │ │ │ ├── async_flush.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── buffered_stream.html │ │ │ │ │ │ │ ├── buffered_stream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── fill.html │ │ │ │ │ │ │ ├── fill │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── flush.html │ │ │ │ │ │ │ ├── flush │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── in_avail.html │ │ │ │ │ │ │ ├── in_avail │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── next_layer.html │ │ │ │ │ │ │ ├── next_layer_type.html │ │ │ │ │ │ │ ├── peek.html │ │ │ │ │ │ │ ├── peek │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffered_write_stream.html │ │ │ │ │ │ ├── buffered_write_stream │ │ │ │ │ │ │ ├── async_flush.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── buffered_write_stream.html │ │ │ │ │ │ │ ├── buffered_write_stream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── default_buffer_size.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── flush.html │ │ │ │ │ │ │ ├── flush │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── in_avail.html │ │ │ │ │ │ │ ├── in_avail │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── next_layer.html │ │ │ │ │ │ │ ├── next_layer_type.html │ │ │ │ │ │ │ ├── peek.html │ │ │ │ │ │ │ ├── peek │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffers_begin.html │ │ │ │ │ │ ├── buffers_end.html │ │ │ │ │ │ ├── buffers_iterator.html │ │ │ │ │ │ ├── buffers_iterator │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── buffers_iterator.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lb__rb_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_minus_.html │ │ │ │ │ │ │ ├── operator_minus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_minus__eq_.html │ │ │ │ │ │ │ ├── operator_minus__minus_.html │ │ │ │ │ │ │ ├── operator_minus__minus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── const_buffer.html │ │ │ │ │ │ ├── const_buffer │ │ │ │ │ │ │ ├── const_buffer.html │ │ │ │ │ │ │ ├── const_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── const_buffers_1.html │ │ │ │ │ │ ├── const_buffers_1 │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── const_buffers_1.html │ │ │ │ │ │ │ ├── const_buffers_1 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── coroutine.html │ │ │ │ │ │ ├── coroutine │ │ │ │ │ │ │ ├── coroutine.html │ │ │ │ │ │ │ ├── is_child.html │ │ │ │ │ │ │ ├── is_complete.html │ │ │ │ │ │ │ └── is_parent.html │ │ │ │ │ │ ├── deadline_timer.html │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ ├── defer │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ ├── dispatch │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── dynamic_buffer.html │ │ │ │ │ │ ├── dynamic_buffer │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── dynamic_string_buffer.html │ │ │ │ │ │ ├── dynamic_string_buffer │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── commit.html │ │ │ │ │ │ │ ├── const_buffers_type.html │ │ │ │ │ │ │ ├── consume.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── dynamic_string_buffer.html │ │ │ │ │ │ │ ├── dynamic_string_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── mutable_buffers_type.html │ │ │ │ │ │ │ ├── prepare.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── dynamic_vector_buffer.html │ │ │ │ │ │ ├── dynamic_vector_buffer │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── commit.html │ │ │ │ │ │ │ ├── const_buffers_type.html │ │ │ │ │ │ │ ├── consume.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── dynamic_vector_buffer.html │ │ │ │ │ │ │ ├── dynamic_vector_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── mutable_buffers_type.html │ │ │ │ │ │ │ ├── prepare.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── error__addrinfo_category.html │ │ │ │ │ │ ├── error__addrinfo_errors.html │ │ │ │ │ │ ├── error__basic_errors.html │ │ │ │ │ │ ├── error__get_addrinfo_category.html │ │ │ │ │ │ ├── error__get_misc_category.html │ │ │ │ │ │ ├── error__get_netdb_category.html │ │ │ │ │ │ ├── error__get_ssl_category.html │ │ │ │ │ │ ├── error__get_system_category.html │ │ │ │ │ │ ├── error__make_error_code.html │ │ │ │ │ │ ├── error__make_error_code │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ ├── error__misc_category.html │ │ │ │ │ │ ├── error__misc_errors.html │ │ │ │ │ │ ├── error__netdb_category.html │ │ │ │ │ │ ├── error__netdb_errors.html │ │ │ │ │ │ ├── error__ssl_category.html │ │ │ │ │ │ ├── error__ssl_errors.html │ │ │ │ │ │ ├── error__system_category.html │ │ │ │ │ │ ├── error_category.html │ │ │ │ │ │ ├── error_category │ │ │ │ │ │ │ ├── _error_category.html │ │ │ │ │ │ │ ├── message.html │ │ │ │ │ │ │ ├── name.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ └── operator_not__eq_.html │ │ │ │ │ │ ├── error_code.html │ │ │ │ │ │ ├── error_code │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── category.html │ │ │ │ │ │ │ ├── clear.html │ │ │ │ │ │ │ ├── error_code.html │ │ │ │ │ │ │ ├── error_code │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── message.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_unspecified_bool_type.html │ │ │ │ │ │ │ ├── unspecified_bool_true.html │ │ │ │ │ │ │ ├── unspecified_bool_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── error_code__unspecified_bool_type_t.html │ │ │ │ │ │ ├── execution_context.html │ │ │ │ │ │ ├── execution_context │ │ │ │ │ │ │ ├── _execution_context.html │ │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ │ ├── destroy.html │ │ │ │ │ │ │ ├── execution_context.html │ │ │ │ │ │ │ ├── fork_event.html │ │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ │ ├── make_service.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ │ └── use_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── execution_context__id.html │ │ │ │ │ │ ├── execution_context__id │ │ │ │ │ │ │ └── id.html │ │ │ │ │ │ ├── execution_context__service.html │ │ │ │ │ │ ├── execution_context__service │ │ │ │ │ │ │ ├── _service.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ │ └── shutdown.html │ │ │ │ │ │ ├── executor.html │ │ │ │ │ │ ├── executor │ │ │ │ │ │ │ ├── _executor.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── executor.html │ │ │ │ │ │ │ ├── executor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_unspecified_bool_type.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── target.html │ │ │ │ │ │ │ ├── target │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── target_type.html │ │ │ │ │ │ │ ├── unspecified_bool_true.html │ │ │ │ │ │ │ └── unspecified_bool_type.html │ │ │ │ │ │ ├── executor__unspecified_bool_type_t.html │ │ │ │ │ │ ├── executor_arg.html │ │ │ │ │ │ ├── executor_arg_t.html │ │ │ │ │ │ ├── executor_arg_t │ │ │ │ │ │ │ └── executor_arg_t.html │ │ │ │ │ │ ├── executor_binder.html │ │ │ │ │ │ ├── executor_binder │ │ │ │ │ │ │ ├── _executor_binder.html │ │ │ │ │ │ │ ├── argument_type.html │ │ │ │ │ │ │ ├── executor_binder.html │ │ │ │ │ │ │ ├── executor_binder │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── first_argument_type.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── operator_lp__rp_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── result_type.html │ │ │ │ │ │ │ ├── second_argument_type.html │ │ │ │ │ │ │ └── target_type.html │ │ │ │ │ │ ├── executor_work_guard.html │ │ │ │ │ │ ├── executor_work_guard │ │ │ │ │ │ │ ├── _executor_work_guard.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── executor_work_guard.html │ │ │ │ │ │ │ ├── executor_work_guard │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── owns_work.html │ │ │ │ │ │ │ └── reset.html │ │ │ │ │ │ ├── experimental__await_token.html │ │ │ │ │ │ ├── experimental__await_token │ │ │ │ │ │ │ ├── await_token.html │ │ │ │ │ │ │ ├── await_token │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ └── get_executor.html │ │ │ │ │ │ ├── experimental__awaitable.html │ │ │ │ │ │ ├── experimental__awaitable │ │ │ │ │ │ │ ├── _awaitable.html │ │ │ │ │ │ │ ├── awaitable.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── experimental__co_spawn.html │ │ │ │ │ │ ├── experimental__co_spawn │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── experimental__detached.html │ │ │ │ │ │ ├── experimental__detached_t.html │ │ │ │ │ │ ├── experimental__detached_t │ │ │ │ │ │ │ └── detached_t.html │ │ │ │ │ │ ├── experimental__redirect_error.html │ │ │ │ │ │ ├── experimental__redirect_error_t.html │ │ │ │ │ │ ├── experimental__redirect_error_t │ │ │ │ │ │ │ ├── ec_.html │ │ │ │ │ │ │ ├── redirect_error_t.html │ │ │ │ │ │ │ └── token_.html │ │ │ │ │ │ ├── experimental__this_coro__executor.html │ │ │ │ │ │ ├── experimental__this_coro__executor_t.html │ │ │ │ │ │ ├── experimental__this_coro__token.html │ │ │ │ │ │ ├── experimental__this_coro__token_t.html │ │ │ │ │ │ ├── generic__basic_endpoint.html │ │ │ │ │ │ ├── generic__basic_endpoint │ │ │ │ │ │ │ ├── basic_endpoint.html │ │ │ │ │ │ │ ├── basic_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── data_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── generic__datagram_protocol.html │ │ │ │ │ │ ├── generic__datagram_protocol │ │ │ │ │ │ │ ├── datagram_protocol.html │ │ │ │ │ │ │ ├── datagram_protocol │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── generic__raw_protocol.html │ │ │ │ │ │ ├── generic__raw_protocol │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── raw_protocol.html │ │ │ │ │ │ │ ├── raw_protocol │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── generic__seq_packet_protocol.html │ │ │ │ │ │ ├── generic__seq_packet_protocol │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── seq_packet_protocol.html │ │ │ │ │ │ │ ├── seq_packet_protocol │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── generic__stream_protocol.html │ │ │ │ │ │ ├── generic__stream_protocol │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── iostream.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── stream_protocol.html │ │ │ │ │ │ │ ├── stream_protocol │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── get_associated_allocator.html │ │ │ │ │ │ ├── get_associated_allocator │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── get_associated_executor.html │ │ │ │ │ │ ├── get_associated_executor │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── handler_type.html │ │ │ │ │ │ ├── handler_type │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ ├── high_resolution_timer.html │ │ │ │ │ │ ├── invalid_service_owner.html │ │ │ │ │ │ ├── invalid_service_owner │ │ │ │ │ │ │ └── invalid_service_owner.html │ │ │ │ │ │ ├── io_context.html │ │ │ │ │ │ ├── io_context │ │ │ │ │ │ │ ├── _io_context.html │ │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ │ ├── count_type.html │ │ │ │ │ │ │ ├── destroy.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── fork_event.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ │ ├── io_context.html │ │ │ │ │ │ │ ├── io_context │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── make_service.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── poll.html │ │ │ │ │ │ │ ├── poll │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── poll_one.html │ │ │ │ │ │ │ ├── poll_one │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ ├── restart.html │ │ │ │ │ │ │ ├── run.html │ │ │ │ │ │ │ ├── run │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── run_for.html │ │ │ │ │ │ │ ├── run_one.html │ │ │ │ │ │ │ ├── run_one │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── run_one_for.html │ │ │ │ │ │ │ ├── run_one_until.html │ │ │ │ │ │ │ ├── run_until.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── stop.html │ │ │ │ │ │ │ ├── stopped.html │ │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ │ ├── use_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wrap.html │ │ │ │ │ │ ├── io_context__executor_type.html │ │ │ │ │ │ ├── io_context__executor_type │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ └── running_in_this_thread.html │ │ │ │ │ │ ├── io_context__service.html │ │ │ │ │ │ ├── io_context__service │ │ │ │ │ │ │ ├── _service.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ └── service.html │ │ │ │ │ │ ├── io_context__strand.html │ │ │ │ │ │ ├── io_context__strand │ │ │ │ │ │ │ ├── _strand.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── dispatch │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── post │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── running_in_this_thread.html │ │ │ │ │ │ │ ├── strand.html │ │ │ │ │ │ │ └── wrap.html │ │ │ │ │ │ ├── io_context__work.html │ │ │ │ │ │ ├── io_context__work │ │ │ │ │ │ │ ├── _work.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── work.html │ │ │ │ │ │ │ └── work │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── io_service.html │ │ │ │ │ │ ├── ip__address.html │ │ │ │ │ │ ├── ip__address │ │ │ │ │ │ │ ├── address.html │ │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── from_string.html │ │ │ │ │ │ │ ├── from_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── is_loopback.html │ │ │ │ │ │ │ ├── is_multicast.html │ │ │ │ │ │ │ ├── is_unspecified.html │ │ │ │ │ │ │ ├── is_v4.html │ │ │ │ │ │ │ ├── is_v6.html │ │ │ │ │ │ │ ├── make_address.html │ │ │ │ │ │ │ ├── make_address │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ ├── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── to_v4.html │ │ │ │ │ │ │ └── to_v6.html │ │ │ │ │ │ ├── ip__address_v4.html │ │ │ │ │ │ ├── ip__address_v4 │ │ │ │ │ │ │ ├── address_v4.html │ │ │ │ │ │ │ ├── address_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── any.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── broadcast │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── bytes_type.html │ │ │ │ │ │ │ ├── from_string.html │ │ │ │ │ │ │ ├── from_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── is_class_a.html │ │ │ │ │ │ │ ├── is_class_b.html │ │ │ │ │ │ │ ├── is_class_c.html │ │ │ │ │ │ │ ├── is_loopback.html │ │ │ │ │ │ │ ├── is_multicast.html │ │ │ │ │ │ │ ├── is_unspecified.html │ │ │ │ │ │ │ ├── loopback.html │ │ │ │ │ │ │ ├── make_address_v4.html │ │ │ │ │ │ │ ├── make_address_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── make_network_v4.html │ │ │ │ │ │ │ ├── make_network_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── netmask.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_lt__lt_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── to_bytes.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ ├── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── to_uint.html │ │ │ │ │ │ │ ├── to_ulong.html │ │ │ │ │ │ │ └── uint_type.html │ │ │ │ │ │ ├── ip__address_v4_iterator.html │ │ │ │ │ │ ├── ip__address_v4_range.html │ │ │ │ │ │ ├── ip__address_v6.html │ │ │ │ │ │ ├── ip__address_v6 │ │ │ │ │ │ │ ├── address_v6.html │ │ │ │ │ │ │ ├── address_v6 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── any.html │ │ │ │ │ │ │ ├── bytes_type.html │ │ │ │ │ │ │ ├── from_string.html │ │ │ │ │ │ │ ├── from_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── is_link_local.html │ │ │ │ │ │ │ ├── is_loopback.html │ │ │ │ │ │ │ ├── is_multicast.html │ │ │ │ │ │ │ ├── is_multicast_global.html │ │ │ │ │ │ │ ├── is_multicast_link_local.html │ │ │ │ │ │ │ ├── is_multicast_node_local.html │ │ │ │ │ │ │ ├── is_multicast_org_local.html │ │ │ │ │ │ │ ├── is_multicast_site_local.html │ │ │ │ │ │ │ ├── is_site_local.html │ │ │ │ │ │ │ ├── is_unspecified.html │ │ │ │ │ │ │ ├── is_v4_compatible.html │ │ │ │ │ │ │ ├── is_v4_mapped.html │ │ │ │ │ │ │ ├── loopback.html │ │ │ │ │ │ │ ├── make_address_v6.html │ │ │ │ │ │ │ ├── make_address_v6 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ │ ├── make_network_v6.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_lt__lt_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── scope_id.html │ │ │ │ │ │ │ ├── scope_id │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── to_bytes.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ ├── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── to_v4.html │ │ │ │ │ │ │ ├── v4_compatible.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__address_v6_iterator.html │ │ │ │ │ │ ├── ip__address_v6_range.html │ │ │ │ │ │ ├── ip__bad_address_cast.html │ │ │ │ │ │ ├── ip__bad_address_cast │ │ │ │ │ │ │ ├── _bad_address_cast.html │ │ │ │ │ │ │ ├── bad_address_cast.html │ │ │ │ │ │ │ └── what.html │ │ │ │ │ │ ├── ip__basic_address_iterator_lt__address_v4__gt_.html │ │ │ │ │ │ ├── ip__basic_address_iterator_lt__address_v4__gt_ │ │ │ │ │ │ │ ├── basic_address_iterator.html │ │ │ │ │ │ │ ├── basic_address_iterator │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_minus__minus_.html │ │ │ │ │ │ │ ├── operator_minus__minus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── ip__basic_address_iterator_lt__address_v6__gt_.html │ │ │ │ │ │ ├── ip__basic_address_iterator_lt__address_v6__gt_ │ │ │ │ │ │ │ ├── basic_address_iterator.html │ │ │ │ │ │ │ ├── basic_address_iterator │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_minus__minus_.html │ │ │ │ │ │ │ ├── operator_minus__minus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── ip__basic_address_range_lt__address_v4__gt_.html │ │ │ │ │ │ ├── ip__basic_address_range_lt__address_v4__gt_ │ │ │ │ │ │ │ ├── basic_address_range.html │ │ │ │ │ │ │ ├── basic_address_range │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── empty.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── find.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── ip__basic_address_range_lt__address_v6__gt_.html │ │ │ │ │ │ ├── ip__basic_address_range_lt__address_v6__gt_ │ │ │ │ │ │ │ ├── basic_address_range.html │ │ │ │ │ │ │ ├── basic_address_range │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── empty.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── find.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ └── operator_eq_.html │ │ │ │ │ │ ├── ip__basic_endpoint.html │ │ │ │ │ │ ├── ip__basic_endpoint │ │ │ │ │ │ │ ├── address.html │ │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_endpoint.html │ │ │ │ │ │ │ ├── basic_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── data_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── port.html │ │ │ │ │ │ │ ├── port │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── ip__basic_resolver.html │ │ │ │ │ │ ├── ip__basic_resolver │ │ │ │ │ │ │ ├── _basic_resolver.html │ │ │ │ │ │ │ ├── address_configured.html │ │ │ │ │ │ │ ├── all_matching.html │ │ │ │ │ │ │ ├── async_resolve.html │ │ │ │ │ │ │ ├── async_resolve │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── basic_resolver.html │ │ │ │ │ │ │ ├── basic_resolver │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── canonical_name.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ ├── numeric_host.html │ │ │ │ │ │ │ ├── numeric_service.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── passive.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── resolve.html │ │ │ │ │ │ │ ├── resolve │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── results_type.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__basic_resolver_entry.html │ │ │ │ │ │ ├── ip__basic_resolver_entry │ │ │ │ │ │ │ ├── basic_resolver_entry.html │ │ │ │ │ │ │ ├── basic_resolver_entry │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── host_name.html │ │ │ │ │ │ │ ├── host_name │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_endpoint_type.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── service_name.html │ │ │ │ │ │ │ └── service_name │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ip__basic_resolver_iterator.html │ │ │ │ │ │ ├── ip__basic_resolver_iterator │ │ │ │ │ │ │ ├── basic_resolver_iterator.html │ │ │ │ │ │ │ ├── basic_resolver_iterator │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── dereference.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── equal.html │ │ │ │ │ │ │ ├── increment.html │ │ │ │ │ │ │ ├── index_.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ ├── value_type.html │ │ │ │ │ │ │ └── values_.html │ │ │ │ │ │ ├── ip__basic_resolver_query.html │ │ │ │ │ │ ├── ip__basic_resolver_query │ │ │ │ │ │ │ ├── address_configured.html │ │ │ │ │ │ │ ├── all_matching.html │ │ │ │ │ │ │ ├── basic_resolver_query.html │ │ │ │ │ │ │ ├── basic_resolver_query │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── canonical_name.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── hints.html │ │ │ │ │ │ │ ├── host_name.html │ │ │ │ │ │ │ ├── numeric_host.html │ │ │ │ │ │ │ ├── numeric_service.html │ │ │ │ │ │ │ ├── passive.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── service_name.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__basic_resolver_results.html │ │ │ │ │ │ ├── ip__basic_resolver_results │ │ │ │ │ │ │ ├── basic_resolver_results.html │ │ │ │ │ │ │ ├── basic_resolver_results │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── cbegin.html │ │ │ │ │ │ │ ├── cend.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── const_reference.html │ │ │ │ │ │ │ ├── dereference.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── empty.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── equal.html │ │ │ │ │ │ │ ├── increment.html │ │ │ │ │ │ │ ├── index_.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ ├── size_type.html │ │ │ │ │ │ │ ├── swap.html │ │ │ │ │ │ │ ├── value_type.html │ │ │ │ │ │ │ └── values_.html │ │ │ │ │ │ ├── ip__host_name.html │ │ │ │ │ │ ├── ip__host_name │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ip__icmp.html │ │ │ │ │ │ ├── ip__icmp │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── resolver.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ ├── v4.html │ │ │ │ │ │ │ └── v6.html │ │ │ │ │ │ ├── ip__multicast__enable_loopback.html │ │ │ │ │ │ ├── ip__multicast__hops.html │ │ │ │ │ │ ├── ip__multicast__join_group.html │ │ │ │ │ │ ├── ip__multicast__leave_group.html │ │ │ │ │ │ ├── ip__multicast__outbound_interface.html │ │ │ │ │ │ ├── ip__network_v4.html │ │ │ │ │ │ ├── ip__network_v4 │ │ │ │ │ │ │ ├── address.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── canonical.html │ │ │ │ │ │ │ ├── hosts.html │ │ │ │ │ │ │ ├── is_host.html │ │ │ │ │ │ │ ├── is_subnet_of.html │ │ │ │ │ │ │ ├── make_network_v4.html │ │ │ │ │ │ │ ├── make_network_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── netmask.html │ │ │ │ │ │ │ ├── network.html │ │ │ │ │ │ │ ├── network_v4.html │ │ │ │ │ │ │ ├── network_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── prefix_length.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ └── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ip__network_v6.html │ │ │ │ │ │ ├── ip__network_v6 │ │ │ │ │ │ │ ├── address.html │ │ │ │ │ │ │ ├── canonical.html │ │ │ │ │ │ │ ├── hosts.html │ │ │ │ │ │ │ ├── is_host.html │ │ │ │ │ │ │ ├── is_subnet_of.html │ │ │ │ │ │ │ ├── make_network_v6.html │ │ │ │ │ │ │ ├── make_network_v6 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── network.html │ │ │ │ │ │ │ ├── network_v6.html │ │ │ │ │ │ │ ├── network_v6 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── prefix_length.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ └── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ip__resolver_base.html │ │ │ │ │ │ ├── ip__resolver_base │ │ │ │ │ │ │ ├── _resolver_base.html │ │ │ │ │ │ │ ├── address_configured.html │ │ │ │ │ │ │ ├── all_matching.html │ │ │ │ │ │ │ ├── canonical_name.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── numeric_host.html │ │ │ │ │ │ │ ├── numeric_service.html │ │ │ │ │ │ │ ├── passive.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__resolver_query_base.html │ │ │ │ │ │ ├── ip__resolver_query_base │ │ │ │ │ │ │ ├── _resolver_query_base.html │ │ │ │ │ │ │ ├── address_configured.html │ │ │ │ │ │ │ ├── all_matching.html │ │ │ │ │ │ │ ├── canonical_name.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── numeric_host.html │ │ │ │ │ │ │ ├── numeric_service.html │ │ │ │ │ │ │ ├── passive.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__tcp.html │ │ │ │ │ │ ├── ip__tcp │ │ │ │ │ │ │ ├── acceptor.html │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── iostream.html │ │ │ │ │ │ │ ├── no_delay.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── resolver.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ ├── v4.html │ │ │ │ │ │ │ └── v6.html │ │ │ │ │ │ ├── ip__udp.html │ │ │ │ │ │ ├── ip__udp │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── resolver.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ ├── v4.html │ │ │ │ │ │ │ └── v6.html │ │ │ │ │ │ ├── ip__unicast__hops.html │ │ │ │ │ │ ├── ip__v4_mapped_t.html │ │ │ │ │ │ ├── ip__v6_only.html │ │ │ │ │ │ ├── is_const_buffer_sequence.html │ │ │ │ │ │ ├── is_dynamic_buffer.html │ │ │ │ │ │ ├── is_endpoint_sequence.html │ │ │ │ │ │ ├── is_endpoint_sequence │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── is_executor.html │ │ │ │ │ │ ├── is_match_condition.html │ │ │ │ │ │ ├── is_match_condition │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── is_mutable_buffer_sequence.html │ │ │ │ │ │ ├── is_read_buffered.html │ │ │ │ │ │ ├── is_read_buffered │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── is_write_buffered.html │ │ │ │ │ │ ├── is_write_buffered │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── local__basic_endpoint.html │ │ │ │ │ │ ├── local__basic_endpoint │ │ │ │ │ │ │ ├── basic_endpoint.html │ │ │ │ │ │ │ ├── basic_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── data_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── path.html │ │ │ │ │ │ │ ├── path │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── local__connect_pair.html │ │ │ │ │ │ ├── local__connect_pair │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── local__datagram_protocol.html │ │ │ │ │ │ ├── local__datagram_protocol │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── local__stream_protocol.html │ │ │ │ │ │ ├── local__stream_protocol │ │ │ │ │ │ │ ├── acceptor.html │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── iostream.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── make_work_guard.html │ │ │ │ │ │ ├── make_work_guard │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ ├── mutable_buffer.html │ │ │ │ │ │ ├── mutable_buffer │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── mutable_buffer.html │ │ │ │ │ │ │ ├── mutable_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── mutable_buffers_1.html │ │ │ │ │ │ ├── mutable_buffers_1 │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── mutable_buffers_1.html │ │ │ │ │ │ │ ├── mutable_buffers_1 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── null_buffers.html │ │ │ │ │ │ ├── null_buffers │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ ├── placeholders__bytes_transferred.html │ │ │ │ │ │ ├── placeholders__endpoint.html │ │ │ │ │ │ ├── placeholders__error.html │ │ │ │ │ │ ├── placeholders__iterator.html │ │ │ │ │ │ ├── placeholders__results.html │ │ │ │ │ │ ├── placeholders__signal_number.html │ │ │ │ │ │ ├── posix__descriptor.html │ │ │ │ │ │ ├── posix__descriptor │ │ │ │ │ │ │ ├── _descriptor.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── descriptor.html │ │ │ │ │ │ │ ├── descriptor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── posix__descriptor_base.html │ │ │ │ │ │ ├── posix__descriptor_base │ │ │ │ │ │ │ ├── _descriptor_base.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── posix__stream_descriptor.html │ │ │ │ │ │ ├── posix__stream_descriptor │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── stream_descriptor.html │ │ │ │ │ │ │ ├── stream_descriptor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── wait_type.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ ├── post │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── read.html │ │ │ │ │ │ ├── read │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── read_at.html │ │ │ │ │ │ ├── read_at │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ ├── read_until.html │ │ │ │ │ │ ├── read_until │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload13.html │ │ │ │ │ │ │ ├── overload14.html │ │ │ │ │ │ │ ├── overload15.html │ │ │ │ │ │ │ ├── overload16.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── read_write_operations.html │ │ │ │ │ │ ├── resolver_errc__try_again.html │ │ │ │ │ │ ├── serial_port.html │ │ │ │ │ │ ├── serial_port │ │ │ │ │ │ │ ├── _serial_port.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── send_break.html │ │ │ │ │ │ │ ├── send_break │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── serial_port.html │ │ │ │ │ │ │ ├── serial_port │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── serial_port_base.html │ │ │ │ │ │ ├── serial_port_base │ │ │ │ │ │ │ └── _serial_port_base.html │ │ │ │ │ │ ├── serial_port_base__baud_rate.html │ │ │ │ │ │ ├── serial_port_base__baud_rate │ │ │ │ │ │ │ ├── baud_rate.html │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── serial_port_base__character_size.html │ │ │ │ │ │ ├── serial_port_base__character_size │ │ │ │ │ │ │ ├── character_size.html │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── serial_port_base__flow_control.html │ │ │ │ │ │ ├── serial_port_base__flow_control │ │ │ │ │ │ │ ├── flow_control.html │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── serial_port_base__parity.html │ │ │ │ │ │ ├── serial_port_base__parity │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── parity.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── serial_port_base__stop_bits.html │ │ │ │ │ │ ├── serial_port_base__stop_bits │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── stop_bits.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── service_already_exists.html │ │ │ │ │ │ ├── service_already_exists │ │ │ │ │ │ │ └── service_already_exists.html │ │ │ │ │ │ ├── signal_set.html │ │ │ │ │ │ ├── signal_set │ │ │ │ │ │ │ ├── _signal_set.html │ │ │ │ │ │ │ ├── add.html │ │ │ │ │ │ │ ├── add │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── clear.html │ │ │ │ │ │ │ ├── clear │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── remove.html │ │ │ │ │ │ │ ├── remove │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── signal_set.html │ │ │ │ │ │ │ └── signal_set │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── socket_base.html │ │ │ │ │ │ ├── socket_base │ │ │ │ │ │ │ ├── _socket_base.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── spawn.html │ │ │ │ │ │ ├── spawn │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ └── overload7.html │ │ │ │ │ │ ├── ssl__context.html │ │ │ │ │ │ ├── ssl__context │ │ │ │ │ │ │ ├── _context.html │ │ │ │ │ │ │ ├── add_certificate_authority.html │ │ │ │ │ │ │ ├── add_certificate_authority │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── add_verify_path.html │ │ │ │ │ │ │ ├── add_verify_path │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── clear_options.html │ │ │ │ │ │ │ ├── clear_options │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── default_workarounds.html │ │ │ │ │ │ │ ├── file_format.html │ │ │ │ │ │ │ ├── load_verify_file.html │ │ │ │ │ │ │ ├── load_verify_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── method.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── no_compression.html │ │ │ │ │ │ │ ├── no_sslv2.html │ │ │ │ │ │ │ ├── no_sslv3.html │ │ │ │ │ │ │ ├── no_tlsv1.html │ │ │ │ │ │ │ ├── no_tlsv1_1.html │ │ │ │ │ │ │ ├── no_tlsv1_2.html │ │ │ │ │ │ │ ├── no_tlsv1_3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── options.html │ │ │ │ │ │ │ ├── password_purpose.html │ │ │ │ │ │ │ ├── set_default_verify_paths.html │ │ │ │ │ │ │ ├── set_default_verify_paths │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_options.html │ │ │ │ │ │ │ ├── set_options │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_password_callback.html │ │ │ │ │ │ │ ├── set_password_callback │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_callback.html │ │ │ │ │ │ │ ├── set_verify_callback │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_depth.html │ │ │ │ │ │ │ ├── set_verify_depth │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_mode.html │ │ │ │ │ │ │ ├── set_verify_mode │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── single_dh_use.html │ │ │ │ │ │ │ ├── use_certificate.html │ │ │ │ │ │ │ ├── use_certificate │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_certificate_chain.html │ │ │ │ │ │ │ ├── use_certificate_chain │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_certificate_chain_file.html │ │ │ │ │ │ │ ├── use_certificate_chain_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_certificate_file.html │ │ │ │ │ │ │ ├── use_certificate_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_private_key.html │ │ │ │ │ │ │ ├── use_private_key │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_private_key_file.html │ │ │ │ │ │ │ ├── use_private_key_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_rsa_private_key.html │ │ │ │ │ │ │ ├── use_rsa_private_key │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_rsa_private_key_file.html │ │ │ │ │ │ │ ├── use_rsa_private_key_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_tmp_dh.html │ │ │ │ │ │ │ ├── use_tmp_dh │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_tmp_dh_file.html │ │ │ │ │ │ │ └── use_tmp_dh_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ssl__context_base.html │ │ │ │ │ │ ├── ssl__context_base │ │ │ │ │ │ │ ├── _context_base.html │ │ │ │ │ │ │ ├── default_workarounds.html │ │ │ │ │ │ │ ├── file_format.html │ │ │ │ │ │ │ ├── method.html │ │ │ │ │ │ │ ├── no_compression.html │ │ │ │ │ │ │ ├── no_sslv2.html │ │ │ │ │ │ │ ├── no_sslv3.html │ │ │ │ │ │ │ ├── no_tlsv1.html │ │ │ │ │ │ │ ├── no_tlsv1_1.html │ │ │ │ │ │ │ ├── no_tlsv1_2.html │ │ │ │ │ │ │ ├── no_tlsv1_3.html │ │ │ │ │ │ │ ├── options.html │ │ │ │ │ │ │ ├── password_purpose.html │ │ │ │ │ │ │ └── single_dh_use.html │ │ │ │ │ │ ├── ssl__error__get_stream_category.html │ │ │ │ │ │ ├── ssl__error__make_error_code.html │ │ │ │ │ │ ├── ssl__error__stream_category.html │ │ │ │ │ │ ├── ssl__error__stream_errors.html │ │ │ │ │ │ ├── ssl__rfc2818_verification.html │ │ │ │ │ │ ├── ssl__rfc2818_verification │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── result_type.html │ │ │ │ │ │ │ └── rfc2818_verification.html │ │ │ │ │ │ ├── ssl__stream.html │ │ │ │ │ │ ├── ssl__stream │ │ │ │ │ │ │ ├── _stream.html │ │ │ │ │ │ │ ├── async_handshake.html │ │ │ │ │ │ │ ├── async_handshake │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_shutdown.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── handshake.html │ │ │ │ │ │ │ ├── handshake │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── handshake_type.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── next_layer.html │ │ │ │ │ │ │ ├── next_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── next_layer_type.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_callback.html │ │ │ │ │ │ │ ├── set_verify_callback │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_depth.html │ │ │ │ │ │ │ ├── set_verify_depth │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_mode.html │ │ │ │ │ │ │ ├── set_verify_mode │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── stream.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ssl__stream__impl_struct.html │ │ │ │ │ │ ├── ssl__stream__impl_struct │ │ │ │ │ │ │ └── ssl.html │ │ │ │ │ │ ├── ssl__stream_base.html │ │ │ │ │ │ ├── ssl__stream_base │ │ │ │ │ │ │ ├── _stream_base.html │ │ │ │ │ │ │ └── handshake_type.html │ │ │ │ │ │ ├── ssl__verify_client_once.html │ │ │ │ │ │ ├── ssl__verify_context.html │ │ │ │ │ │ ├── ssl__verify_context │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ └── verify_context.html │ │ │ │ │ │ ├── ssl__verify_fail_if_no_peer_cert.html │ │ │ │ │ │ ├── ssl__verify_mode.html │ │ │ │ │ │ ├── ssl__verify_none.html │ │ │ │ │ │ ├── ssl__verify_peer.html │ │ │ │ │ │ ├── steady_timer.html │ │ │ │ │ │ ├── strand.html │ │ │ │ │ │ ├── strand │ │ │ │ │ │ │ ├── _strand.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── get_inner_executor.html │ │ │ │ │ │ │ ├── inner_executor_type.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── running_in_this_thread.html │ │ │ │ │ │ │ ├── strand.html │ │ │ │ │ │ │ └── strand │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── streambuf.html │ │ │ │ │ │ ├── synchronous_socket_operations.html │ │ │ │ │ │ ├── system_category.html │ │ │ │ │ │ ├── system_context.html │ │ │ │ │ │ ├── system_context │ │ │ │ │ │ │ ├── _system_context.html │ │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ │ ├── destroy.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── fork_event.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ │ ├── join.html │ │ │ │ │ │ │ ├── make_service.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── stop.html │ │ │ │ │ │ │ ├── stopped.html │ │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ │ └── use_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── system_error.html │ │ │ │ │ │ ├── system_error │ │ │ │ │ │ │ ├── _system_error.html │ │ │ │ │ │ │ ├── code.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── system_error.html │ │ │ │ │ │ │ ├── system_error │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ └── what.html │ │ │ │ │ │ ├── system_executor.html │ │ │ │ │ │ ├── system_executor │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ └── post.html │ │ │ │ │ │ ├── system_timer.html │ │ │ │ │ │ ├── thread.html │ │ │ │ │ │ ├── thread │ │ │ │ │ │ │ ├── _thread.html │ │ │ │ │ │ │ ├── join.html │ │ │ │ │ │ │ └── thread.html │ │ │ │ │ │ ├── thread_pool.html │ │ │ │ │ │ ├── thread_pool │ │ │ │ │ │ │ ├── _thread_pool.html │ │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ │ ├── destroy.html │ │ │ │ │ │ │ ├── fork_event.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ │ ├── join.html │ │ │ │ │ │ │ ├── make_service.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── stop.html │ │ │ │ │ │ │ ├── thread_pool.html │ │ │ │ │ │ │ ├── thread_pool │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ │ └── use_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── thread_pool__executor_type.html │ │ │ │ │ │ ├── thread_pool__executor_type │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ └── running_in_this_thread.html │ │ │ │ │ │ ├── time_traits_lt__ptime__gt_.html │ │ │ │ │ │ ├── time_traits_lt__ptime__gt_ │ │ │ │ │ │ │ ├── add.html │ │ │ │ │ │ │ ├── duration_type.html │ │ │ │ │ │ │ ├── less_than.html │ │ │ │ │ │ │ ├── now.html │ │ │ │ │ │ │ ├── subtract.html │ │ │ │ │ │ │ ├── time_type.html │ │ │ │ │ │ │ └── to_posix_duration.html │ │ │ │ │ │ ├── transfer_all.html │ │ │ │ │ │ ├── transfer_at_least.html │ │ │ │ │ │ ├── transfer_exactly.html │ │ │ │ │ │ ├── use_future.html │ │ │ │ │ │ ├── use_future_t.html │ │ │ │ │ │ ├── use_future_t │ │ │ │ │ │ │ ├── allocator_type.html │ │ │ │ │ │ │ ├── get_allocator.html │ │ │ │ │ │ │ ├── operator_lb__rb_.html │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── rebind.html │ │ │ │ │ │ │ ├── use_future_t.html │ │ │ │ │ │ │ └── use_future_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ ├── use_service │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── uses_executor.html │ │ │ │ │ │ ├── wait_traits.html │ │ │ │ │ │ ├── wait_traits │ │ │ │ │ │ │ ├── to_wait_duration.html │ │ │ │ │ │ │ └── to_wait_duration │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── windows__object_handle.html │ │ │ │ │ │ ├── windows__object_handle │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── object_handle.html │ │ │ │ │ │ │ ├── object_handle │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ └── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── windows__overlapped_handle.html │ │ │ │ │ │ ├── windows__overlapped_handle │ │ │ │ │ │ │ ├── _overlapped_handle.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── overlapped_handle.html │ │ │ │ │ │ │ └── overlapped_handle │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── windows__overlapped_ptr.html │ │ │ │ │ │ ├── windows__overlapped_ptr │ │ │ │ │ │ │ ├── _overlapped_ptr.html │ │ │ │ │ │ │ ├── complete.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── overlapped_ptr.html │ │ │ │ │ │ │ ├── overlapped_ptr │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ └── reset │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── windows__random_access_handle.html │ │ │ │ │ │ ├── windows__random_access_handle │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some_at.html │ │ │ │ │ │ │ ├── async_write_some_at.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── random_access_handle.html │ │ │ │ │ │ │ ├── random_access_handle │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── read_some_at.html │ │ │ │ │ │ │ ├── read_some_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some_at.html │ │ │ │ │ │ │ └── write_some_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── windows__stream_handle.html │ │ │ │ │ │ ├── windows__stream_handle │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── stream_handle.html │ │ │ │ │ │ │ ├── stream_handle │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── write.html │ │ │ │ │ │ ├── write │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── write_at.html │ │ │ │ │ │ ├── write_at │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ └── yield_context.html │ │ │ │ │ ├── tutorial.html │ │ │ │ │ ├── tutorial │ │ │ │ │ │ ├── boost_bind.html │ │ │ │ │ │ ├── tutdaytime1.html │ │ │ │ │ │ ├── tutdaytime1 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime2.html │ │ │ │ │ │ ├── tutdaytime2 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime3.html │ │ │ │ │ │ ├── tutdaytime3 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime4.html │ │ │ │ │ │ ├── tutdaytime4 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime5.html │ │ │ │ │ │ ├── tutdaytime5 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime6.html │ │ │ │ │ │ ├── tutdaytime6 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime7.html │ │ │ │ │ │ ├── tutdaytime7 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer1.html │ │ │ │ │ │ ├── tuttimer1 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer2.html │ │ │ │ │ │ ├── tuttimer2 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer3.html │ │ │ │ │ │ ├── tuttimer3 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer4.html │ │ │ │ │ │ ├── tuttimer4 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer5.html │ │ │ │ │ │ └── tuttimer5 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ └── using.html │ │ │ │ ├── async_op1.png │ │ │ │ ├── async_op2.png │ │ │ │ ├── blank.png │ │ │ │ ├── boostbook.css │ │ │ │ ├── caution.png │ │ │ │ ├── draft.png │ │ │ │ ├── examples │ │ │ │ │ └── diffs │ │ │ │ │ │ ├── allocation │ │ │ │ │ │ └── server.cpp.html │ │ │ │ │ │ ├── buffers │ │ │ │ │ │ └── reference_counted.cpp.html │ │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── chat_client.cpp.html │ │ │ │ │ │ ├── chat_message.hpp.html │ │ │ │ │ │ └── chat_server.cpp.html │ │ │ │ │ │ ├── echo │ │ │ │ │ │ ├── async_tcp_echo_server.cpp.html │ │ │ │ │ │ ├── async_udp_echo_server.cpp.html │ │ │ │ │ │ ├── blocking_tcp_echo_client.cpp.html │ │ │ │ │ │ ├── blocking_tcp_echo_server.cpp.html │ │ │ │ │ │ ├── blocking_udp_echo_client.cpp.html │ │ │ │ │ │ └── blocking_udp_echo_server.cpp.html │ │ │ │ │ │ ├── executors │ │ │ │ │ │ ├── actor.cpp.html │ │ │ │ │ │ ├── bank_account_1.cpp.html │ │ │ │ │ │ ├── bank_account_2.cpp.html │ │ │ │ │ │ ├── fork_join.cpp.html │ │ │ │ │ │ ├── pipeline.cpp.html │ │ │ │ │ │ └── priority_scheduler.cpp.html │ │ │ │ │ │ ├── fork │ │ │ │ │ │ ├── daemon.cpp.html │ │ │ │ │ │ └── process_per_connection.cpp.html │ │ │ │ │ │ ├── futures │ │ │ │ │ │ └── daytime_client.cpp.html │ │ │ │ │ │ ├── handler_tracking │ │ │ │ │ │ └── custom_tracking.hpp.html │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── connection.cpp.html │ │ │ │ │ │ │ ├── connection.hpp.html │ │ │ │ │ │ │ ├── connection_manager.cpp.html │ │ │ │ │ │ │ ├── connection_manager.hpp.html │ │ │ │ │ │ │ ├── header.hpp.html │ │ │ │ │ │ │ ├── main.cpp.html │ │ │ │ │ │ │ ├── mime_types.cpp.html │ │ │ │ │ │ │ ├── mime_types.hpp.html │ │ │ │ │ │ │ ├── reply.cpp.html │ │ │ │ │ │ │ ├── reply.hpp.html │ │ │ │ │ │ │ ├── request.hpp.html │ │ │ │ │ │ │ ├── request_handler.cpp.html │ │ │ │ │ │ │ ├── request_handler.hpp.html │ │ │ │ │ │ │ ├── request_parser.cpp.html │ │ │ │ │ │ │ ├── request_parser.hpp.html │ │ │ │ │ │ │ ├── server.cpp.html │ │ │ │ │ │ │ └── server.hpp.html │ │ │ │ │ │ ├── invocation │ │ │ │ │ │ └── prioritised_handlers.cpp.html │ │ │ │ │ │ ├── iostreams │ │ │ │ │ │ └── http_client.cpp.html │ │ │ │ │ │ ├── local │ │ │ │ │ │ ├── connect_pair.cpp.html │ │ │ │ │ │ ├── iostream_client.cpp.html │ │ │ │ │ │ ├── stream_client.cpp.html │ │ │ │ │ │ └── stream_server.cpp.html │ │ │ │ │ │ ├── multicast │ │ │ │ │ │ ├── receiver.cpp.html │ │ │ │ │ │ └── sender.cpp.html │ │ │ │ │ │ ├── nonblocking │ │ │ │ │ │ └── third_party_lib.cpp.html │ │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── composed_1.cpp.html │ │ │ │ │ │ ├── composed_2.cpp.html │ │ │ │ │ │ ├── composed_3.cpp.html │ │ │ │ │ │ ├── composed_4.cpp.html │ │ │ │ │ │ └── composed_5.cpp.html │ │ │ │ │ │ ├── socks4 │ │ │ │ │ │ ├── socks4.hpp.html │ │ │ │ │ │ └── sync_client.cpp.html │ │ │ │ │ │ ├── spawn │ │ │ │ │ │ ├── echo_server.cpp.html │ │ │ │ │ │ └── parallel_grep.cpp.html │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ ├── client.cpp.html │ │ │ │ │ │ └── server.cpp.html │ │ │ │ │ │ ├── timeouts │ │ │ │ │ │ ├── async_tcp_client.cpp.html │ │ │ │ │ │ ├── blocking_tcp_client.cpp.html │ │ │ │ │ │ ├── blocking_token_tcp_client.cpp.html │ │ │ │ │ │ ├── blocking_udp_client.cpp.html │ │ │ │ │ │ └── server.cpp.html │ │ │ │ │ │ └── timers │ │ │ │ │ │ └── time_t_timer.cpp.html │ │ │ │ ├── home.png │ │ │ │ ├── important.png │ │ │ │ ├── index.html │ │ │ │ ├── next.png │ │ │ │ ├── next_disabled.png │ │ │ │ ├── note.png │ │ │ │ ├── prev.png │ │ │ │ ├── prev_disabled.png │ │ │ │ ├── proactor.png │ │ │ │ ├── standalone_HTML.manifest │ │ │ │ ├── sync_op.png │ │ │ │ ├── tip.png │ │ │ │ ├── up.png │ │ │ │ ├── up_disabled.png │ │ │ │ └── warning.png │ │ │ ├── include │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── asio.hpp │ │ │ │ └── asio │ │ │ │ │ ├── associated_allocator.hpp │ │ │ │ │ ├── associated_executor.hpp │ │ │ │ │ ├── async_result.hpp │ │ │ │ │ ├── basic_datagram_socket.hpp │ │ │ │ │ ├── basic_deadline_timer.hpp │ │ │ │ │ ├── basic_io_object.hpp │ │ │ │ │ ├── basic_raw_socket.hpp │ │ │ │ │ ├── basic_seq_packet_socket.hpp │ │ │ │ │ ├── basic_serial_port.hpp │ │ │ │ │ ├── basic_signal_set.hpp │ │ │ │ │ ├── basic_socket.hpp │ │ │ │ │ ├── basic_socket_acceptor.hpp │ │ │ │ │ ├── basic_socket_iostream.hpp │ │ │ │ │ ├── basic_socket_streambuf.hpp │ │ │ │ │ ├── basic_stream_socket.hpp │ │ │ │ │ ├── basic_streambuf.hpp │ │ │ │ │ ├── basic_streambuf_fwd.hpp │ │ │ │ │ ├── basic_waitable_timer.hpp │ │ │ │ │ ├── bind_executor.hpp │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ │ ├── buffered_read_stream_fwd.hpp │ │ │ │ │ ├── buffered_stream.hpp │ │ │ │ │ ├── buffered_stream_fwd.hpp │ │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ │ ├── buffered_write_stream_fwd.hpp │ │ │ │ │ ├── buffers_iterator.hpp │ │ │ │ │ ├── completion_condition.hpp │ │ │ │ │ ├── connect.hpp │ │ │ │ │ ├── coroutine.hpp │ │ │ │ │ ├── datagram_socket_service.hpp │ │ │ │ │ ├── deadline_timer.hpp │ │ │ │ │ ├── deadline_timer_service.hpp │ │ │ │ │ ├── defer.hpp │ │ │ │ │ ├── detail │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── array_fwd.hpp │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── atomic_count.hpp │ │ │ │ │ ├── base_from_completion_cond.hpp │ │ │ │ │ ├── bind_handler.hpp │ │ │ │ │ ├── buffer_resize_guard.hpp │ │ │ │ │ ├── buffer_sequence_adapter.hpp │ │ │ │ │ ├── buffered_stream_storage.hpp │ │ │ │ │ ├── call_stack.hpp │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ ├── chrono_time_traits.hpp │ │ │ │ │ ├── completion_handler.hpp │ │ │ │ │ ├── concurrency_hint.hpp │ │ │ │ │ ├── conditionally_enabled_event.hpp │ │ │ │ │ ├── conditionally_enabled_mutex.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── consuming_buffers.hpp │ │ │ │ │ ├── cstddef.hpp │ │ │ │ │ ├── cstdint.hpp │ │ │ │ │ ├── date_time_fwd.hpp │ │ │ │ │ ├── deadline_timer_service.hpp │ │ │ │ │ ├── dependent_type.hpp │ │ │ │ │ ├── descriptor_ops.hpp │ │ │ │ │ ├── descriptor_read_op.hpp │ │ │ │ │ ├── descriptor_write_op.hpp │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ ├── event.hpp │ │ │ │ │ ├── eventfd_select_interrupter.hpp │ │ │ │ │ ├── executor_op.hpp │ │ │ │ │ ├── fd_set_adapter.hpp │ │ │ │ │ ├── fenced_block.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── future.hpp │ │ │ │ │ ├── gcc_arm_fenced_block.hpp │ │ │ │ │ ├── gcc_hppa_fenced_block.hpp │ │ │ │ │ ├── gcc_sync_fenced_block.hpp │ │ │ │ │ ├── gcc_x86_fenced_block.hpp │ │ │ │ │ ├── global.hpp │ │ │ │ │ ├── handler_alloc_helpers.hpp │ │ │ │ │ ├── handler_cont_helpers.hpp │ │ │ │ │ ├── handler_invoke_helpers.hpp │ │ │ │ │ ├── handler_tracking.hpp │ │ │ │ │ ├── handler_type_requirements.hpp │ │ │ │ │ ├── handler_work.hpp │ │ │ │ │ ├── hash_map.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ │ │ │ ├── descriptor_ops.ipp │ │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ │ ├── dev_poll_reactor.ipp │ │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ │ ├── epoll_reactor.ipp │ │ │ │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ │ │ │ ├── handler_tracking.ipp │ │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ │ ├── kqueue_reactor.ipp │ │ │ │ │ │ ├── null_event.ipp │ │ │ │ │ │ ├── pipe_select_interrupter.ipp │ │ │ │ │ │ ├── posix_event.ipp │ │ │ │ │ │ ├── posix_mutex.ipp │ │ │ │ │ │ ├── posix_thread.ipp │ │ │ │ │ │ ├── posix_tss_ptr.ipp │ │ │ │ │ │ ├── reactive_descriptor_service.ipp │ │ │ │ │ │ ├── reactive_serial_port_service.ipp │ │ │ │ │ │ ├── reactive_socket_service_base.ipp │ │ │ │ │ │ ├── resolver_service_base.ipp │ │ │ │ │ │ ├── scheduler.ipp │ │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ │ ├── select_reactor.ipp │ │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ │ ├── service_registry.ipp │ │ │ │ │ │ ├── signal_set_service.ipp │ │ │ │ │ │ ├── socket_ops.ipp │ │ │ │ │ │ ├── socket_select_interrupter.ipp │ │ │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ │ │ ├── strand_executor_service.ipp │ │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ │ ├── strand_service.ipp │ │ │ │ │ │ ├── throw_error.ipp │ │ │ │ │ │ ├── timer_queue_ptime.ipp │ │ │ │ │ │ ├── timer_queue_set.ipp │ │ │ │ │ │ ├── win_event.ipp │ │ │ │ │ │ ├── win_iocp_handle_service.ipp │ │ │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ │ │ ├── win_iocp_io_context.ipp │ │ │ │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ │ │ │ ├── win_mutex.ipp │ │ │ │ │ │ ├── win_object_handle_service.ipp │ │ │ │ │ │ ├── win_static_mutex.ipp │ │ │ │ │ │ ├── win_thread.ipp │ │ │ │ │ │ ├── win_tss_ptr.ipp │ │ │ │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ │ │ │ └── winsock_init.ipp │ │ │ │ │ ├── io_control.hpp │ │ │ │ │ ├── is_buffer_sequence.hpp │ │ │ │ │ ├── is_executor.hpp │ │ │ │ │ ├── keyword_tss_ptr.hpp │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── local_free_on_block_exit.hpp │ │ │ │ │ ├── macos_fenced_block.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── noncopyable.hpp │ │ │ │ │ ├── null_event.hpp │ │ │ │ │ ├── null_fenced_block.hpp │ │ │ │ │ ├── null_global.hpp │ │ │ │ │ ├── null_mutex.hpp │ │ │ │ │ ├── null_reactor.hpp │ │ │ │ │ ├── null_signal_blocker.hpp │ │ │ │ │ ├── null_socket_service.hpp │ │ │ │ │ ├── null_static_mutex.hpp │ │ │ │ │ ├── null_thread.hpp │ │ │ │ │ ├── null_tss_ptr.hpp │ │ │ │ │ ├── object_pool.hpp │ │ │ │ │ ├── old_win_sdk_compat.hpp │ │ │ │ │ ├── op_queue.hpp │ │ │ │ │ ├── operation.hpp │ │ │ │ │ ├── pipe_select_interrupter.hpp │ │ │ │ │ ├── pop_options.hpp │ │ │ │ │ ├── posix_event.hpp │ │ │ │ │ ├── posix_fd_set_adapter.hpp │ │ │ │ │ ├── posix_global.hpp │ │ │ │ │ ├── posix_mutex.hpp │ │ │ │ │ ├── posix_signal_blocker.hpp │ │ │ │ │ ├── posix_static_mutex.hpp │ │ │ │ │ ├── posix_thread.hpp │ │ │ │ │ ├── posix_tss_ptr.hpp │ │ │ │ │ ├── push_options.hpp │ │ │ │ │ ├── reactive_descriptor_service.hpp │ │ │ │ │ ├── reactive_null_buffers_op.hpp │ │ │ │ │ ├── reactive_serial_port_service.hpp │ │ │ │ │ ├── reactive_socket_accept_op.hpp │ │ │ │ │ ├── reactive_socket_connect_op.hpp │ │ │ │ │ ├── reactive_socket_recv_op.hpp │ │ │ │ │ ├── reactive_socket_recvfrom_op.hpp │ │ │ │ │ ├── reactive_socket_recvmsg_op.hpp │ │ │ │ │ ├── reactive_socket_send_op.hpp │ │ │ │ │ ├── reactive_socket_sendto_op.hpp │ │ │ │ │ ├── reactive_socket_service.hpp │ │ │ │ │ ├── reactive_socket_service_base.hpp │ │ │ │ │ ├── reactive_wait_op.hpp │ │ │ │ │ ├── reactor.hpp │ │ │ │ │ ├── reactor_fwd.hpp │ │ │ │ │ ├── reactor_op.hpp │ │ │ │ │ ├── reactor_op_queue.hpp │ │ │ │ │ ├── recycling_allocator.hpp │ │ │ │ │ ├── regex_fwd.hpp │ │ │ │ │ ├── resolve_endpoint_op.hpp │ │ │ │ │ ├── resolve_op.hpp │ │ │ │ │ ├── resolve_query_op.hpp │ │ │ │ │ ├── resolver_service.hpp │ │ │ │ │ ├── resolver_service_base.hpp │ │ │ │ │ ├── scheduler.hpp │ │ │ │ │ ├── scheduler_operation.hpp │ │ │ │ │ ├── scheduler_thread_info.hpp │ │ │ │ │ ├── scoped_lock.hpp │ │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ │ ├── select_interrupter.hpp │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ ├── signal_blocker.hpp │ │ │ │ │ ├── signal_handler.hpp │ │ │ │ │ ├── signal_init.hpp │ │ │ │ │ ├── signal_op.hpp │ │ │ │ │ ├── signal_set_service.hpp │ │ │ │ │ ├── socket_holder.hpp │ │ │ │ │ ├── socket_ops.hpp │ │ │ │ │ ├── socket_option.hpp │ │ │ │ │ ├── socket_select_interrupter.hpp │ │ │ │ │ ├── socket_types.hpp │ │ │ │ │ ├── solaris_fenced_block.hpp │ │ │ │ │ ├── static_mutex.hpp │ │ │ │ │ ├── std_event.hpp │ │ │ │ │ ├── std_fenced_block.hpp │ │ │ │ │ ├── std_global.hpp │ │ │ │ │ ├── std_mutex.hpp │ │ │ │ │ ├── std_static_mutex.hpp │ │ │ │ │ ├── std_thread.hpp │ │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ ├── string_view.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── thread_context.hpp │ │ │ │ │ ├── thread_group.hpp │ │ │ │ │ ├── thread_info_base.hpp │ │ │ │ │ ├── throw_error.hpp │ │ │ │ │ ├── throw_exception.hpp │ │ │ │ │ ├── timer_queue.hpp │ │ │ │ │ ├── timer_queue_base.hpp │ │ │ │ │ ├── timer_queue_ptime.hpp │ │ │ │ │ ├── timer_queue_set.hpp │ │ │ │ │ ├── timer_scheduler.hpp │ │ │ │ │ ├── timer_scheduler_fwd.hpp │ │ │ │ │ ├── tss_ptr.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── variadic_templates.hpp │ │ │ │ │ ├── wait_handler.hpp │ │ │ │ │ ├── wait_op.hpp │ │ │ │ │ ├── win_event.hpp │ │ │ │ │ ├── win_fd_set_adapter.hpp │ │ │ │ │ ├── win_fenced_block.hpp │ │ │ │ │ ├── win_global.hpp │ │ │ │ │ ├── win_iocp_handle_read_op.hpp │ │ │ │ │ ├── win_iocp_handle_service.hpp │ │ │ │ │ ├── win_iocp_handle_write_op.hpp │ │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ │ ├── win_iocp_null_buffers_op.hpp │ │ │ │ │ ├── win_iocp_operation.hpp │ │ │ │ │ ├── win_iocp_overlapped_op.hpp │ │ │ │ │ ├── win_iocp_overlapped_ptr.hpp │ │ │ │ │ ├── win_iocp_serial_port_service.hpp │ │ │ │ │ ├── win_iocp_socket_accept_op.hpp │ │ │ │ │ ├── win_iocp_socket_connect_op.hpp │ │ │ │ │ ├── win_iocp_socket_recv_op.hpp │ │ │ │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ │ │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ │ │ │ ├── win_iocp_socket_send_op.hpp │ │ │ │ │ ├── win_iocp_socket_service.hpp │ │ │ │ │ ├── win_iocp_socket_service_base.hpp │ │ │ │ │ ├── win_iocp_thread_info.hpp │ │ │ │ │ ├── win_iocp_wait_op.hpp │ │ │ │ │ ├── win_mutex.hpp │ │ │ │ │ ├── win_object_handle_service.hpp │ │ │ │ │ ├── win_static_mutex.hpp │ │ │ │ │ ├── win_thread.hpp │ │ │ │ │ ├── win_tss_ptr.hpp │ │ │ │ │ ├── winapp_thread.hpp │ │ │ │ │ ├── wince_thread.hpp │ │ │ │ │ ├── winrt_async_manager.hpp │ │ │ │ │ ├── winrt_async_op.hpp │ │ │ │ │ ├── winrt_resolve_op.hpp │ │ │ │ │ ├── winrt_resolver_service.hpp │ │ │ │ │ ├── winrt_socket_connect_op.hpp │ │ │ │ │ ├── winrt_socket_recv_op.hpp │ │ │ │ │ ├── winrt_socket_send_op.hpp │ │ │ │ │ ├── winrt_ssocket_service.hpp │ │ │ │ │ ├── winrt_ssocket_service_base.hpp │ │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ │ ├── winrt_utils.hpp │ │ │ │ │ ├── winsock_init.hpp │ │ │ │ │ ├── work_dispatcher.hpp │ │ │ │ │ └── wrapped_handler.hpp │ │ │ │ │ ├── dispatch.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ ├── error_code.hpp │ │ │ │ │ ├── execution_context.hpp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── executor_work_guard.hpp │ │ │ │ │ ├── experimental.hpp │ │ │ │ │ ├── experimental │ │ │ │ │ ├── co_spawn.hpp │ │ │ │ │ ├── detached.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── co_spawn.hpp │ │ │ │ │ │ ├── detached.hpp │ │ │ │ │ │ └── redirect_error.hpp │ │ │ │ │ └── redirect_error.hpp │ │ │ │ │ ├── generic │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ ├── raw_protocol.hpp │ │ │ │ │ ├── seq_packet_protocol.hpp │ │ │ │ │ └── stream_protocol.hpp │ │ │ │ │ ├── handler_alloc_hook.hpp │ │ │ │ │ ├── handler_continuation_hook.hpp │ │ │ │ │ ├── handler_invoke_hook.hpp │ │ │ │ │ ├── handler_type.hpp │ │ │ │ │ ├── high_resolution_timer.hpp │ │ │ │ │ ├── impl │ │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ │ ├── connect.hpp │ │ │ │ │ ├── defer.hpp │ │ │ │ │ ├── dispatch.hpp │ │ │ │ │ ├── error.ipp │ │ │ │ │ ├── error_code.ipp │ │ │ │ │ ├── execution_context.hpp │ │ │ │ │ ├── execution_context.ipp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── executor.ipp │ │ │ │ │ ├── handler_alloc_hook.ipp │ │ │ │ │ ├── io_context.hpp │ │ │ │ │ ├── io_context.ipp │ │ │ │ │ ├── post.hpp │ │ │ │ │ ├── read.hpp │ │ │ │ │ ├── read_at.hpp │ │ │ │ │ ├── read_until.hpp │ │ │ │ │ ├── serial_port_base.hpp │ │ │ │ │ ├── serial_port_base.ipp │ │ │ │ │ ├── spawn.hpp │ │ │ │ │ ├── src.cpp │ │ │ │ │ ├── src.hpp │ │ │ │ │ ├── system_context.hpp │ │ │ │ │ ├── system_context.ipp │ │ │ │ │ ├── system_executor.hpp │ │ │ │ │ ├── thread_pool.hpp │ │ │ │ │ ├── thread_pool.ipp │ │ │ │ │ ├── use_future.hpp │ │ │ │ │ ├── write.hpp │ │ │ │ │ └── write_at.hpp │ │ │ │ │ ├── io_context.hpp │ │ │ │ │ ├── io_context_strand.hpp │ │ │ │ │ ├── io_service.hpp │ │ │ │ │ ├── io_service_strand.hpp │ │ │ │ │ ├── ip │ │ │ │ │ ├── address.hpp │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ ├── address_v4_iterator.hpp │ │ │ │ │ ├── address_v4_range.hpp │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ ├── address_v6_iterator.hpp │ │ │ │ │ ├── address_v6_range.hpp │ │ │ │ │ ├── bad_address_cast.hpp │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── basic_resolver.hpp │ │ │ │ │ ├── basic_resolver_entry.hpp │ │ │ │ │ ├── basic_resolver_iterator.hpp │ │ │ │ │ ├── basic_resolver_query.hpp │ │ │ │ │ ├── basic_resolver_results.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ │ └── socket_option.hpp │ │ │ │ │ ├── host_name.hpp │ │ │ │ │ ├── icmp.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── address.hpp │ │ │ │ │ │ ├── address.ipp │ │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ │ ├── address_v4.ipp │ │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ │ ├── address_v6.ipp │ │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ │ ├── host_name.ipp │ │ │ │ │ │ ├── network_v4.hpp │ │ │ │ │ │ ├── network_v4.ipp │ │ │ │ │ │ ├── network_v6.hpp │ │ │ │ │ │ └── network_v6.ipp │ │ │ │ │ ├── multicast.hpp │ │ │ │ │ ├── network_v4.hpp │ │ │ │ │ ├── network_v6.hpp │ │ │ │ │ ├── resolver_base.hpp │ │ │ │ │ ├── resolver_query_base.hpp │ │ │ │ │ ├── resolver_service.hpp │ │ │ │ │ ├── tcp.hpp │ │ │ │ │ ├── udp.hpp │ │ │ │ │ ├── unicast.hpp │ │ │ │ │ └── v6_only.hpp │ │ │ │ │ ├── is_executor.hpp │ │ │ │ │ ├── is_read_buffered.hpp │ │ │ │ │ ├── is_write_buffered.hpp │ │ │ │ │ ├── local │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── connect_pair.hpp │ │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ └── stream_protocol.hpp │ │ │ │ │ ├── packaged_task.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── posix │ │ │ │ │ ├── basic_descriptor.hpp │ │ │ │ │ ├── basic_stream_descriptor.hpp │ │ │ │ │ ├── descriptor.hpp │ │ │ │ │ ├── descriptor_base.hpp │ │ │ │ │ ├── stream_descriptor.hpp │ │ │ │ │ └── stream_descriptor_service.hpp │ │ │ │ │ ├── post.hpp │ │ │ │ │ ├── raw_socket_service.hpp │ │ │ │ │ ├── read.hpp │ │ │ │ │ ├── read_at.hpp │ │ │ │ │ ├── read_until.hpp │ │ │ │ │ ├── seq_packet_socket_service.hpp │ │ │ │ │ ├── serial_port.hpp │ │ │ │ │ ├── serial_port_base.hpp │ │ │ │ │ ├── serial_port_service.hpp │ │ │ │ │ ├── signal_set.hpp │ │ │ │ │ ├── signal_set_service.hpp │ │ │ │ │ ├── socket_acceptor_service.hpp │ │ │ │ │ ├── socket_base.hpp │ │ │ │ │ ├── spawn.hpp │ │ │ │ │ ├── ssl.hpp │ │ │ │ │ ├── ssl │ │ │ │ │ ├── context.hpp │ │ │ │ │ ├── context_base.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── buffered_handshake_op.hpp │ │ │ │ │ │ ├── engine.hpp │ │ │ │ │ │ ├── handshake_op.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── engine.ipp │ │ │ │ │ │ │ └── openssl_init.ipp │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ ├── openssl_init.hpp │ │ │ │ │ │ ├── openssl_types.hpp │ │ │ │ │ │ ├── password_callback.hpp │ │ │ │ │ │ ├── read_op.hpp │ │ │ │ │ │ ├── shutdown_op.hpp │ │ │ │ │ │ ├── stream_core.hpp │ │ │ │ │ │ ├── verify_callback.hpp │ │ │ │ │ │ └── write_op.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── context.hpp │ │ │ │ │ │ ├── context.ipp │ │ │ │ │ │ ├── error.ipp │ │ │ │ │ │ ├── rfc2818_verification.ipp │ │ │ │ │ │ └── src.hpp │ │ │ │ │ ├── rfc2818_verification.hpp │ │ │ │ │ ├── stream.hpp │ │ │ │ │ ├── stream_base.hpp │ │ │ │ │ ├── verify_context.hpp │ │ │ │ │ └── verify_mode.hpp │ │ │ │ │ ├── steady_timer.hpp │ │ │ │ │ ├── strand.hpp │ │ │ │ │ ├── stream_socket_service.hpp │ │ │ │ │ ├── streambuf.hpp │ │ │ │ │ ├── system_context.hpp │ │ │ │ │ ├── system_error.hpp │ │ │ │ │ ├── system_executor.hpp │ │ │ │ │ ├── system_timer.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── thread_pool.hpp │ │ │ │ │ ├── time_traits.hpp │ │ │ │ │ ├── ts │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── internet.hpp │ │ │ │ │ ├── io_context.hpp │ │ │ │ │ ├── net.hpp │ │ │ │ │ ├── netfwd.hpp │ │ │ │ │ ├── socket.hpp │ │ │ │ │ └── timer.hpp │ │ │ │ │ ├── unyield.hpp │ │ │ │ │ ├── use_future.hpp │ │ │ │ │ ├── uses_executor.hpp │ │ │ │ │ ├── version.hpp │ │ │ │ │ ├── wait_traits.hpp │ │ │ │ │ ├── waitable_timer_service.hpp │ │ │ │ │ ├── windows │ │ │ │ │ ├── basic_handle.hpp │ │ │ │ │ ├── basic_object_handle.hpp │ │ │ │ │ ├── basic_random_access_handle.hpp │ │ │ │ │ ├── basic_stream_handle.hpp │ │ │ │ │ ├── object_handle.hpp │ │ │ │ │ ├── object_handle_service.hpp │ │ │ │ │ ├── overlapped_handle.hpp │ │ │ │ │ ├── overlapped_ptr.hpp │ │ │ │ │ ├── random_access_handle.hpp │ │ │ │ │ ├── random_access_handle_service.hpp │ │ │ │ │ ├── stream_handle.hpp │ │ │ │ │ └── stream_handle_service.hpp │ │ │ │ │ ├── write.hpp │ │ │ │ │ ├── write_at.hpp │ │ │ │ │ └── yield.hpp │ │ │ ├── install-sh │ │ │ ├── missing │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.mgw │ │ │ │ ├── Makefile.msc │ │ │ │ ├── asio.cpp │ │ │ │ ├── asio_ssl.cpp │ │ │ │ ├── examples │ │ │ │ │ ├── cpp03 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── allocation │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── buffers │ │ │ │ │ │ │ └── reference_counted.cpp │ │ │ │ │ │ ├── chat │ │ │ │ │ │ │ ├── chat_client.cpp │ │ │ │ │ │ │ ├── chat_message.hpp │ │ │ │ │ │ │ ├── chat_server.cpp │ │ │ │ │ │ │ └── posix_chat_client.cpp │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ ├── async_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── async_udp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_udp_echo_client.cpp │ │ │ │ │ │ │ └── blocking_udp_echo_server.cpp │ │ │ │ │ │ ├── fork │ │ │ │ │ │ │ ├── daemon.cpp │ │ │ │ │ │ │ └── process_per_connection.cpp │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── async_client.cpp │ │ │ │ │ │ │ │ └── sync_client.cpp │ │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ │ ├── connection_manager.cpp │ │ │ │ │ │ │ │ ├── connection_manager.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_handler.cpp │ │ │ │ │ │ │ │ ├── request_handler.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ │ ├── server2 │ │ │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── io_context_pool.cpp │ │ │ │ │ │ │ │ ├── io_context_pool.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_handler.cpp │ │ │ │ │ │ │ │ ├── request_handler.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ │ ├── server3 │ │ │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_handler.cpp │ │ │ │ │ │ │ │ ├── request_handler.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ │ └── server4 │ │ │ │ │ │ │ │ ├── file_handler.cpp │ │ │ │ │ │ │ │ ├── file_handler.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ ├── icmp │ │ │ │ │ │ │ ├── icmp_header.hpp │ │ │ │ │ │ │ ├── ipv4_header.hpp │ │ │ │ │ │ │ └── ping.cpp │ │ │ │ │ │ ├── invocation │ │ │ │ │ │ │ └── prioritised_handlers.cpp │ │ │ │ │ │ ├── iostreams │ │ │ │ │ │ │ ├── daytime_client.cpp │ │ │ │ │ │ │ ├── daytime_server.cpp │ │ │ │ │ │ │ └── http_client.cpp │ │ │ │ │ │ ├── local │ │ │ │ │ │ │ ├── connect_pair.cpp │ │ │ │ │ │ │ ├── iostream_client.cpp │ │ │ │ │ │ │ ├── stream_client.cpp │ │ │ │ │ │ │ └── stream_server.cpp │ │ │ │ │ │ ├── multicast │ │ │ │ │ │ │ ├── receiver.cpp │ │ │ │ │ │ │ └── sender.cpp │ │ │ │ │ │ ├── nonblocking │ │ │ │ │ │ │ └── third_party_lib.cpp │ │ │ │ │ │ ├── porthopper │ │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ │ ├── protocol.hpp │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── serialization │ │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ └── stock.hpp │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── basic_logger.hpp │ │ │ │ │ │ │ ├── daytime_client.cpp │ │ │ │ │ │ │ ├── logger.hpp │ │ │ │ │ │ │ ├── logger_service.cpp │ │ │ │ │ │ │ └── logger_service.hpp │ │ │ │ │ │ ├── socks4 │ │ │ │ │ │ │ ├── socks4.hpp │ │ │ │ │ │ │ └── sync_client.cpp │ │ │ │ │ │ ├── spawn │ │ │ │ │ │ │ ├── echo_server.cpp │ │ │ │ │ │ │ └── parallel_grep.cpp │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── ca.pem │ │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ │ ├── dh2048.pem │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ └── server.pem │ │ │ │ │ │ ├── timeouts │ │ │ │ │ │ │ ├── async_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_token_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_udp_client.cpp │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── timers │ │ │ │ │ │ │ └── time_t_timer.cpp │ │ │ │ │ │ ├── tutorial │ │ │ │ │ │ │ ├── daytime1 │ │ │ │ │ │ │ │ └── client.cpp │ │ │ │ │ │ │ ├── daytime2 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── daytime3 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── daytime4 │ │ │ │ │ │ │ │ └── client.cpp │ │ │ │ │ │ │ ├── daytime5 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── daytime6 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── daytime7 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── timer1 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ │ ├── timer2 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ │ ├── timer3 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ │ ├── timer4 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ │ └── timer5 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ └── transmit_file.cpp │ │ │ │ │ ├── cpp11 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── allocation │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── buffers │ │ │ │ │ │ │ └── reference_counted.cpp │ │ │ │ │ │ ├── chat │ │ │ │ │ │ │ ├── chat_client.cpp │ │ │ │ │ │ │ ├── chat_message.hpp │ │ │ │ │ │ │ └── chat_server.cpp │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ ├── async_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── async_udp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_udp_echo_client.cpp │ │ │ │ │ │ │ └── blocking_udp_echo_server.cpp │ │ │ │ │ │ ├── executors │ │ │ │ │ │ │ ├── actor.cpp │ │ │ │ │ │ │ ├── bank_account_1.cpp │ │ │ │ │ │ │ ├── bank_account_2.cpp │ │ │ │ │ │ │ ├── fork_join.cpp │ │ │ │ │ │ │ ├── pipeline.cpp │ │ │ │ │ │ │ └── priority_scheduler.cpp │ │ │ │ │ │ ├── fork │ │ │ │ │ │ │ ├── daemon.cpp │ │ │ │ │ │ │ └── process_per_connection.cpp │ │ │ │ │ │ ├── futures │ │ │ │ │ │ │ └── daytime_client.cpp │ │ │ │ │ │ ├── handler_tracking │ │ │ │ │ │ │ └── custom_tracking.hpp │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ │ ├── connection_manager.cpp │ │ │ │ │ │ │ │ ├── connection_manager.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_handler.cpp │ │ │ │ │ │ │ │ ├── request_handler.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ ├── invocation │ │ │ │ │ │ │ └── prioritised_handlers.cpp │ │ │ │ │ │ ├── iostreams │ │ │ │ │ │ │ └── http_client.cpp │ │ │ │ │ │ ├── local │ │ │ │ │ │ │ ├── connect_pair.cpp │ │ │ │ │ │ │ ├── iostream_client.cpp │ │ │ │ │ │ │ ├── stream_client.cpp │ │ │ │ │ │ │ └── stream_server.cpp │ │ │ │ │ │ ├── multicast │ │ │ │ │ │ │ ├── receiver.cpp │ │ │ │ │ │ │ └── sender.cpp │ │ │ │ │ │ ├── nonblocking │ │ │ │ │ │ │ └── third_party_lib.cpp │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ ├── composed_1.cpp │ │ │ │ │ │ │ ├── composed_2.cpp │ │ │ │ │ │ │ ├── composed_3.cpp │ │ │ │ │ │ │ ├── composed_4.cpp │ │ │ │ │ │ │ └── composed_5.cpp │ │ │ │ │ │ ├── socks4 │ │ │ │ │ │ │ ├── socks4.hpp │ │ │ │ │ │ │ └── sync_client.cpp │ │ │ │ │ │ ├── spawn │ │ │ │ │ │ │ ├── echo_server.cpp │ │ │ │ │ │ │ └── parallel_grep.cpp │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── timeouts │ │ │ │ │ │ │ ├── async_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_token_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_udp_client.cpp │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ └── timers │ │ │ │ │ │ │ └── time_t_timer.cpp │ │ │ │ │ ├── cpp14 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ ├── async_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── async_udp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_udp_echo_client.cpp │ │ │ │ │ │ │ └── blocking_udp_echo_server.cpp │ │ │ │ │ │ ├── executors │ │ │ │ │ │ │ ├── actor.cpp │ │ │ │ │ │ │ ├── async_1.cpp │ │ │ │ │ │ │ ├── async_2.cpp │ │ │ │ │ │ │ ├── bank_account_1.cpp │ │ │ │ │ │ │ ├── bank_account_2.cpp │ │ │ │ │ │ │ ├── fork_join.cpp │ │ │ │ │ │ │ ├── pipeline.cpp │ │ │ │ │ │ │ └── priority_scheduler.cpp │ │ │ │ │ │ └── iostreams │ │ │ │ │ │ │ └── http_client.cpp │ │ │ │ │ └── cpp17 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── coroutines_ts │ │ │ │ │ │ ├── chat_server.cpp │ │ │ │ │ │ ├── double_buffered_echo_server.cpp │ │ │ │ │ │ ├── echo_server.cpp │ │ │ │ │ │ ├── range_based_for.cpp │ │ │ │ │ │ └── refactored_echo_server.cpp │ │ │ │ ├── tests │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── latency │ │ │ │ │ │ ├── allocator.hpp │ │ │ │ │ │ ├── high_res_clock.hpp │ │ │ │ │ │ ├── tcp_client.cpp │ │ │ │ │ │ ├── tcp_server.cpp │ │ │ │ │ │ ├── udp_client.cpp │ │ │ │ │ │ └── udp_server.cpp │ │ │ │ │ ├── performance │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ ├── handler_allocator.hpp │ │ │ │ │ │ └── server.cpp │ │ │ │ │ └── unit │ │ │ │ │ │ ├── archetypes │ │ │ │ │ │ ├── async_ops.hpp │ │ │ │ │ │ ├── async_result.hpp │ │ │ │ │ │ ├── deprecated_async_ops.hpp │ │ │ │ │ │ ├── deprecated_async_result.hpp │ │ │ │ │ │ ├── gettable_socket_option.hpp │ │ │ │ │ │ ├── io_control_command.hpp │ │ │ │ │ │ └── settable_socket_option.hpp │ │ │ │ │ │ ├── associated_allocator.cpp │ │ │ │ │ │ ├── associated_executor.cpp │ │ │ │ │ │ ├── async_result.cpp │ │ │ │ │ │ ├── basic_datagram_socket.cpp │ │ │ │ │ │ ├── basic_deadline_timer.cpp │ │ │ │ │ │ ├── basic_raw_socket.cpp │ │ │ │ │ │ ├── basic_seq_packet_socket.cpp │ │ │ │ │ │ ├── basic_serial_port.cpp │ │ │ │ │ │ ├── basic_signal_set.cpp │ │ │ │ │ │ ├── basic_socket_acceptor.cpp │ │ │ │ │ │ ├── basic_stream_socket.cpp │ │ │ │ │ │ ├── basic_streambuf.cpp │ │ │ │ │ │ ├── basic_waitable_timer.cpp │ │ │ │ │ │ ├── bind_executor.cpp │ │ │ │ │ │ ├── buffer.cpp │ │ │ │ │ │ ├── buffered_read_stream.cpp │ │ │ │ │ │ ├── buffered_stream.cpp │ │ │ │ │ │ ├── buffered_write_stream.cpp │ │ │ │ │ │ ├── buffers_iterator.cpp │ │ │ │ │ │ ├── completion_condition.cpp │ │ │ │ │ │ ├── connect.cpp │ │ │ │ │ │ ├── coroutine.cpp │ │ │ │ │ │ ├── datagram_socket_service.cpp │ │ │ │ │ │ ├── deadline_timer.cpp │ │ │ │ │ │ ├── deadline_timer_service.cpp │ │ │ │ │ │ ├── defer.cpp │ │ │ │ │ │ ├── dispatch.cpp │ │ │ │ │ │ ├── error.cpp │ │ │ │ │ │ ├── execution_context.cpp │ │ │ │ │ │ ├── executor.cpp │ │ │ │ │ │ ├── executor_work_guard.cpp │ │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── basic_endpoint.cpp │ │ │ │ │ │ ├── datagram_protocol.cpp │ │ │ │ │ │ ├── raw_protocol.cpp │ │ │ │ │ │ ├── seq_packet_protocol.cpp │ │ │ │ │ │ └── stream_protocol.cpp │ │ │ │ │ │ ├── high_resolution_timer.cpp │ │ │ │ │ │ ├── io_context.cpp │ │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── address.cpp │ │ │ │ │ │ ├── address_v4.cpp │ │ │ │ │ │ ├── address_v4_iterator.cpp │ │ │ │ │ │ ├── address_v4_range.cpp │ │ │ │ │ │ ├── address_v6.cpp │ │ │ │ │ │ ├── address_v6_iterator.cpp │ │ │ │ │ │ ├── address_v6_range.cpp │ │ │ │ │ │ ├── basic_endpoint.cpp │ │ │ │ │ │ ├── basic_resolver.cpp │ │ │ │ │ │ ├── basic_resolver_entry.cpp │ │ │ │ │ │ ├── basic_resolver_iterator.cpp │ │ │ │ │ │ ├── basic_resolver_query.cpp │ │ │ │ │ │ ├── host_name.cpp │ │ │ │ │ │ ├── icmp.cpp │ │ │ │ │ │ ├── multicast.cpp │ │ │ │ │ │ ├── network_v4.cpp │ │ │ │ │ │ ├── network_v6.cpp │ │ │ │ │ │ ├── resolver_query_base.cpp │ │ │ │ │ │ ├── resolver_service.cpp │ │ │ │ │ │ ├── tcp.cpp │ │ │ │ │ │ ├── udp.cpp │ │ │ │ │ │ ├── unicast.cpp │ │ │ │ │ │ └── v6_only.cpp │ │ │ │ │ │ ├── is_read_buffered.cpp │ │ │ │ │ │ ├── is_write_buffered.cpp │ │ │ │ │ │ ├── local │ │ │ │ │ │ ├── basic_endpoint.cpp │ │ │ │ │ │ ├── connect_pair.cpp │ │ │ │ │ │ ├── datagram_protocol.cpp │ │ │ │ │ │ └── stream_protocol.cpp │ │ │ │ │ │ ├── packaged_task.cpp │ │ │ │ │ │ ├── placeholders.cpp │ │ │ │ │ │ ├── posix │ │ │ │ │ │ ├── basic_descriptor.cpp │ │ │ │ │ │ ├── basic_stream_descriptor.cpp │ │ │ │ │ │ ├── descriptor.cpp │ │ │ │ │ │ ├── descriptor_base.cpp │ │ │ │ │ │ ├── stream_descriptor.cpp │ │ │ │ │ │ └── stream_descriptor_service.cpp │ │ │ │ │ │ ├── post.cpp │ │ │ │ │ │ ├── raw_socket_service.cpp │ │ │ │ │ │ ├── read.cpp │ │ │ │ │ │ ├── read_at.cpp │ │ │ │ │ │ ├── read_until.cpp │ │ │ │ │ │ ├── seq_packet_socket_service.cpp │ │ │ │ │ │ ├── serial_port.cpp │ │ │ │ │ │ ├── serial_port_base.cpp │ │ │ │ │ │ ├── serial_port_service.cpp │ │ │ │ │ │ ├── signal_set.cpp │ │ │ │ │ │ ├── signal_set_service.cpp │ │ │ │ │ │ ├── socket_acceptor_service.cpp │ │ │ │ │ │ ├── socket_base.cpp │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ ├── context.cpp │ │ │ │ │ │ ├── context_base.cpp │ │ │ │ │ │ ├── error.cpp │ │ │ │ │ │ ├── rfc2818_verification.cpp │ │ │ │ │ │ ├── stream.cpp │ │ │ │ │ │ └── stream_base.cpp │ │ │ │ │ │ ├── steady_timer.cpp │ │ │ │ │ │ ├── strand.cpp │ │ │ │ │ │ ├── stream_socket_service.cpp │ │ │ │ │ │ ├── streambuf.cpp │ │ │ │ │ │ ├── system_context.cpp │ │ │ │ │ │ ├── system_executor.cpp │ │ │ │ │ │ ├── system_timer.cpp │ │ │ │ │ │ ├── thread.cpp │ │ │ │ │ │ ├── time_traits.cpp │ │ │ │ │ │ ├── ts │ │ │ │ │ │ ├── buffer.cpp │ │ │ │ │ │ ├── executor.cpp │ │ │ │ │ │ ├── internet.cpp │ │ │ │ │ │ ├── io_context.cpp │ │ │ │ │ │ ├── net.cpp │ │ │ │ │ │ ├── netfwd.cpp │ │ │ │ │ │ ├── socket.cpp │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ ├── unit_test.hpp │ │ │ │ │ │ ├── use_future.cpp │ │ │ │ │ │ ├── uses_executor.cpp │ │ │ │ │ │ ├── wait_traits.cpp │ │ │ │ │ │ ├── waitable_timer_service.cpp │ │ │ │ │ │ ├── windows │ │ │ │ │ │ ├── basic_handle.cpp │ │ │ │ │ │ ├── basic_object_handle.cpp │ │ │ │ │ │ ├── basic_random_access_handle.cpp │ │ │ │ │ │ ├── basic_stream_handle.cpp │ │ │ │ │ │ ├── object_handle.cpp │ │ │ │ │ │ ├── object_handle_service.cpp │ │ │ │ │ │ ├── overlapped_handle.cpp │ │ │ │ │ │ ├── overlapped_ptr.cpp │ │ │ │ │ │ ├── random_access_handle.cpp │ │ │ │ │ │ ├── random_access_handle_service.cpp │ │ │ │ │ │ ├── stream_handle.cpp │ │ │ │ │ │ └── stream_handle_service.cpp │ │ │ │ │ │ ├── write.cpp │ │ │ │ │ │ └── write_at.cpp │ │ │ │ └── tools │ │ │ │ │ └── handlerviz.pl │ │ │ └── test-driver │ │ └── websocketpp │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── Doxyfile │ │ │ ├── SConstruct │ │ │ ├── changelog.md │ │ │ ├── cmake │ │ │ └── CMakeHelpers.cmake │ │ │ ├── docs │ │ │ ├── config.dox │ │ │ ├── faq.dox │ │ │ ├── getting_started.dox │ │ │ ├── handlers.dox │ │ │ ├── logging.dox │ │ │ ├── manual.css │ │ │ ├── manual.dox │ │ │ ├── simple_broadcast_server.cpp │ │ │ ├── simple_count_server_thread.cpp │ │ │ └── tutorials.dox │ │ │ ├── examples │ │ │ ├── associative_storage │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── associative_storage.cpp │ │ │ ├── broadcast_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── broadcast_server.cpp │ │ │ ├── debug_client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── debug_client.cpp │ │ │ ├── debug_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── debug_server.cpp │ │ │ ├── dev │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── main.cpp │ │ │ ├── echo_client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── echo_client.cpp │ │ │ ├── echo_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── echo_handler.hpp │ │ │ │ └── echo_server.cpp │ │ │ ├── echo_server_both │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── echo_server_both.cpp │ │ │ │ └── server.pem │ │ │ ├── echo_server_tls │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── dh.pem │ │ │ │ ├── echo_server_tls.cpp │ │ │ │ └── server.pem │ │ │ ├── enriched_storage │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── enriched_storage.cpp │ │ │ ├── external_io_service │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── external_io_service.cpp │ │ │ │ └── tcp_echo_server.hpp │ │ │ ├── handler_switch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── handler_switch.cpp │ │ │ ├── iostream_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── iostream_server.cpp │ │ │ ├── print_client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── print_client.cpp │ │ │ ├── print_client_tls │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── ca-chain.cert.pem │ │ │ │ └── print_client_tls.cpp │ │ │ ├── print_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── print_server.cpp │ │ │ ├── scratch_client │ │ │ │ ├── SConscript │ │ │ │ └── scratch_client.cpp │ │ │ ├── scratch_server │ │ │ │ ├── SConscript │ │ │ │ └── scratch_server.cpp │ │ │ ├── simple_broadcast_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── simple_broadcast_server.cpp │ │ │ ├── sip_client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.txt │ │ │ │ ├── SConscript │ │ │ │ └── sip_client.cpp │ │ │ ├── subprotocol_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── subprotocol_server.cpp │ │ │ ├── telemetry_client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── telemetry_client.cpp │ │ │ ├── telemetry_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── index.html │ │ │ │ └── telemetry_server.cpp │ │ │ ├── testee_client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── testee_client.cpp │ │ │ ├── testee_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── testee_server.cpp │ │ │ └── utility_client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── utility_client.cpp │ │ │ ├── readme.md │ │ │ ├── roadmap.md │ │ │ ├── test │ │ │ ├── connection │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── connection.cpp │ │ │ │ ├── connection_tu2.cpp │ │ │ │ └── connection_tu2.hpp │ │ │ ├── endpoint │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── endpoint.cpp │ │ │ ├── extension │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── extension.cpp │ │ │ │ └── permessage_deflate.cpp │ │ │ ├── http │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── a.out │ │ │ │ ├── parser.cpp │ │ │ │ ├── parser_perf.cpp │ │ │ │ ├── perf.out │ │ │ │ └── test.out │ │ │ ├── logger │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ └── basic.cpp │ │ │ ├── message_buffer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── alloc.cpp │ │ │ │ ├── message.cpp │ │ │ │ └── pool.cpp │ │ │ ├── processors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── extension_permessage_compress.cpp │ │ │ │ ├── hybi00.cpp │ │ │ │ ├── hybi07.cpp │ │ │ │ ├── hybi08.cpp │ │ │ │ ├── hybi13.cpp │ │ │ │ └── processor.cpp │ │ │ ├── random │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── none.cpp │ │ │ │ └── random_device.cpp │ │ │ ├── roles │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── client.cpp │ │ │ │ └── server.cpp │ │ │ ├── transport │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── asio │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── base.cpp │ │ │ │ │ ├── security.cpp │ │ │ │ │ └── timers.cpp │ │ │ │ ├── hybi_util.cpp │ │ │ │ ├── integration.cpp │ │ │ │ └── iostream │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── base.cpp │ │ │ │ │ ├── connection.cpp │ │ │ │ │ └── endpoint.cpp │ │ │ └── utility │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SConscript │ │ │ │ ├── close.cpp │ │ │ │ ├── error.cpp │ │ │ │ ├── frame.cpp │ │ │ │ ├── sha1.cpp │ │ │ │ ├── uri.cpp │ │ │ │ └── utilities.cpp │ │ │ ├── tutorials │ │ │ ├── broadcast_tutorial │ │ │ │ └── broadcast_tutorial.md │ │ │ ├── chat_tutorial │ │ │ │ └── chat_tutorial.md │ │ │ ├── utility_client │ │ │ │ ├── step1.cpp │ │ │ │ ├── step2.cpp │ │ │ │ ├── step3.cpp │ │ │ │ ├── step4.cpp │ │ │ │ ├── step5.cpp │ │ │ │ ├── step6.cpp │ │ │ │ └── utility_client.md │ │ │ └── utility_server │ │ │ │ ├── step1.cpp │ │ │ │ ├── step2.cpp │ │ │ │ └── utility_server.md │ │ │ ├── websocketpp-config.cmake.in │ │ │ └── websocketpp │ │ │ ├── CMakeLists.txt │ │ │ ├── base64 │ │ │ └── base64.hpp │ │ │ ├── client.hpp │ │ │ ├── close.hpp │ │ │ ├── common │ │ │ ├── asio.hpp │ │ │ ├── asio_ssl.hpp │ │ │ ├── chrono.hpp │ │ │ ├── connection_hdl.hpp │ │ │ ├── cpp11.hpp │ │ │ ├── functional.hpp │ │ │ ├── md5.hpp │ │ │ ├── memory.hpp │ │ │ ├── network.hpp │ │ │ ├── platforms.hpp │ │ │ ├── random.hpp │ │ │ ├── regex.hpp │ │ │ ├── stdint.hpp │ │ │ ├── system_error.hpp │ │ │ ├── thread.hpp │ │ │ ├── time.hpp │ │ │ └── type_traits.hpp │ │ │ ├── concurrency │ │ │ ├── basic.hpp │ │ │ └── none.hpp │ │ │ ├── config │ │ │ ├── asio.hpp │ │ │ ├── asio_client.hpp │ │ │ ├── asio_no_tls.hpp │ │ │ ├── asio_no_tls_client.hpp │ │ │ ├── boost_config.hpp │ │ │ ├── core.hpp │ │ │ ├── core_client.hpp │ │ │ ├── debug.hpp │ │ │ ├── debug_asio.hpp │ │ │ ├── debug_asio_no_tls.hpp │ │ │ ├── minimal_client.hpp │ │ │ └── minimal_server.hpp │ │ │ ├── connection.hpp │ │ │ ├── connection_base.hpp │ │ │ ├── endpoint.hpp │ │ │ ├── endpoint_base.hpp │ │ │ ├── error.hpp │ │ │ ├── extensions │ │ │ ├── extension.hpp │ │ │ └── permessage_deflate │ │ │ │ ├── disabled.hpp │ │ │ │ └── enabled.hpp │ │ │ ├── frame.hpp │ │ │ ├── http │ │ │ ├── constants.hpp │ │ │ ├── impl │ │ │ │ ├── parser.hpp │ │ │ │ ├── request.hpp │ │ │ │ └── response.hpp │ │ │ ├── parser.hpp │ │ │ ├── request.hpp │ │ │ └── response.hpp │ │ │ ├── impl │ │ │ ├── connection_impl.hpp │ │ │ ├── endpoint_impl.hpp │ │ │ └── utilities_impl.hpp │ │ │ ├── logger │ │ │ ├── basic.hpp │ │ │ ├── levels.hpp │ │ │ ├── stub.hpp │ │ │ └── syslog.hpp │ │ │ ├── message_buffer │ │ │ ├── alloc.hpp │ │ │ ├── message.hpp │ │ │ └── pool.hpp │ │ │ ├── processors │ │ │ ├── base.hpp │ │ │ ├── hybi00.hpp │ │ │ ├── hybi07.hpp │ │ │ ├── hybi08.hpp │ │ │ ├── hybi13.hpp │ │ │ └── processor.hpp │ │ │ ├── random │ │ │ ├── none.hpp │ │ │ └── random_device.hpp │ │ │ ├── roles │ │ │ ├── client_endpoint.hpp │ │ │ └── server_endpoint.hpp │ │ │ ├── server.hpp │ │ │ ├── sha1 │ │ │ └── sha1.hpp │ │ │ ├── transport │ │ │ ├── asio │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ ├── endpoint.hpp │ │ │ │ └── security │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── none.hpp │ │ │ │ │ └── tls.hpp │ │ │ ├── base │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── debug │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── iostream │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ └── stub │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── uri.hpp │ │ │ ├── utf8_validator.hpp │ │ │ ├── utilities.hpp │ │ │ └── version.hpp │ └── Windows │ │ └── com.ctytler.dcs.sdPlugin.sln ├── com.ctytler.dcs.sdPlugin │ ├── bin │ │ ├── concrt140.dll │ │ ├── extract_clickabledata.lua │ │ ├── i_18n.lua │ │ ├── lua.dll │ │ ├── msvcp140.dll │ │ ├── msvcp140_1.dll │ │ ├── msvcp140_2.dll │ │ ├── msvcp140_atomic_wait.dll │ │ ├── msvcp140_codecvt_ids.dll │ │ ├── vcamp140.dll │ │ ├── vccorlib140.dll │ │ ├── vcomp140.dll │ │ ├── vcruntime140.dll │ │ ├── vcruntime140_1.dll │ │ └── vcruntime140_threads.dll │ ├── en.json │ ├── helpDocs │ │ ├── change_button_image.png │ │ ├── debug_dcs_id_game_values.png │ │ ├── github-markdown.css │ │ ├── helpContents.md │ │ ├── helpWindow.html │ │ ├── id_lookup_example_fa-18c.png │ │ ├── id_lookup_import_buttons.png │ │ ├── ip_config_settings.png │ │ └── switch_states.png │ ├── images │ │ ├── Button_AV8B_ODU.png │ │ ├── Button_UFC_Blank.png │ │ ├── Button_UFC_Blank@2x.png │ │ ├── Chrome_Switch_High.png │ │ ├── Chrome_Switch_High@2x.png │ │ ├── Chrome_Switch_Low.png │ │ ├── Chrome_Switch_Low@2x.png │ │ ├── Rotary_Dial_0.png │ │ ├── Rotary_Dial_0@2x.png │ │ ├── Rotary_Dial_1.png │ │ ├── Rotary_Dial_1@2x.png │ │ ├── Rotary_Switch_Half_0.png │ │ ├── Rotary_Switch_Half_0@2x.png │ │ ├── Rotary_Switch_Half_1.png │ │ ├── Rotary_Switch_Half_1@2x.png │ │ ├── button_light_off.png │ │ ├── button_light_off@2x.png │ │ ├── button_light_on.png │ │ ├── button_light_on@2x.png │ │ ├── category_icon.png │ │ ├── category_icon.svg │ │ ├── category_icon@2x.png │ │ ├── display_icon.png │ │ ├── display_icon.svg │ │ ├── display_icon@2x.png │ │ ├── display_wide.png │ │ ├── display_wide@2x.png │ │ ├── icon.svg │ │ ├── plugin_icon.png │ │ └── plugin_icon@2x.png │ ├── manifest.json │ └── propertyinspector │ │ ├── README.md │ │ ├── comms_window.html │ │ ├── css │ │ ├── caret.svg │ │ ├── check.png │ │ ├── check.svg │ │ ├── elg_calendar.svg │ │ ├── elg_calendar_inv.svg │ │ ├── g_d8d8d8.svg │ │ ├── rcheck.svg │ │ └── sdpi.css │ │ ├── dcs_bios_prop_inspector.html │ │ ├── id_lookup_window.html │ │ ├── index.html │ │ ├── js │ │ ├── common.js │ │ ├── common_pi.js │ │ ├── comms_window_functions.js │ │ ├── dcs_bios_pi.js │ │ ├── external_windows_functions.js │ │ ├── id_lookup_window_functions.js │ │ ├── index_pi.js │ │ ├── send_receive_functions.js │ │ └── settings_functions.js │ │ └── json │ │ └── general_commands.js └── frontend-react-js │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── api │ │ ├── DcsBios │ │ │ ├── ControlReferenceInterface.tsx │ │ │ ├── DraggableItems.tsx │ │ │ └── Utilities.tsx │ │ └── Streamdeck │ │ │ ├── StreamdeckApi.tsx │ │ │ ├── StreamdeckWebsocket.test.tsx │ │ │ └── StreamdeckWebsocket.tsx │ ├── areas │ │ ├── ButtonConfiguration.module.css │ │ ├── ButtonConfiguration.tsx │ │ ├── IdLookup.tsx │ │ ├── RightSidebar.module.css │ │ └── RightSidebar.tsx │ ├── components │ │ ├── DcsBiosIdLookup.module.css │ │ ├── DcsBiosIdLookup.tsx │ │ ├── ModuleSelect.module.css │ │ ├── ModuleSelect.tsx │ │ ├── SearchBar.module.css │ │ ├── SearchBar.tsx │ │ ├── Table.module.css │ │ ├── Table.tsx │ │ └── test │ │ │ └── Table.test.tsx │ ├── forms │ │ ├── DropArea.tsx │ │ ├── Forms.module.css │ │ ├── SendCommand.tsx │ │ ├── StateMonitor.tsx │ │ └── TitleMonitor.tsx │ ├── index.css │ ├── index.tsx │ ├── modals │ │ ├── Backdrop.module.css │ │ ├── Backdrop.tsx │ │ ├── PluginSetup.module.css │ │ ├── PluginSetup.tsx │ │ ├── SelectedControlRef.module.css │ │ └── SelectedControlRef.tsx │ ├── react-app-env.d.ts │ └── setupTests.ts │ └── tsconfig.json ├── Tools ├── DistributionTool.exe ├── SocketTester │ ├── SocketTester.cpp │ ├── SocketTester.vcxproj │ ├── bin │ │ ├── SocketTester.exe │ │ └── lua.dll │ └── packages.config └── build_plugin.bat └── codecov.yml /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/cpp-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/.github/workflows/cpp-tests.yml -------------------------------------------------------------------------------- /.github/workflows/reactjs-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/.github/workflows/reactjs-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Configuration_AV8B_Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Images/Configuration_AV8B_Screenshot.jpg -------------------------------------------------------------------------------- /Images/DCS_Interface_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Images/DCS_Interface_Banner.png -------------------------------------------------------------------------------- /Images/Streamdeck_AV8B_Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Images/Streamdeck_AV8B_Demo.gif -------------------------------------------------------------------------------- /Images/icon_hi_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Images/icon_hi_res.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/README.md -------------------------------------------------------------------------------- /Release/Examples/A-10C.streamDeckProfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Examples/A-10C.streamDeckProfile -------------------------------------------------------------------------------- /Release/Examples/AV8BNA.streamDeckProfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Examples/AV8BNA.streamDeckProfile -------------------------------------------------------------------------------- /Release/Examples/F_A-18C.streamDeckProfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Examples/F_A-18C.streamDeckProfile -------------------------------------------------------------------------------- /Release/Examples/JF-17_UFCP.streamDeckProfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Examples/JF-17_UFCP.streamDeckProfile -------------------------------------------------------------------------------- /Release/Examples/JF-17_UFCP_icons_and_export_lua.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Examples/JF-17_UFCP_icons_and_export_lua.zip -------------------------------------------------------------------------------- /Release/Icon Library/AV8B_AG_VSTOL_NAV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/AV8B_AG_VSTOL_NAV.svg -------------------------------------------------------------------------------- /Release/Icon Library/Button_AV8B_ODU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Button_AV8B_ODU.png -------------------------------------------------------------------------------- /Release/Icon Library/Button_AV8B_ODU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Button_AV8B_ODU.svg -------------------------------------------------------------------------------- /Release/Icon Library/Button_UFC_Blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Button_UFC_Blank.png -------------------------------------------------------------------------------- /Release/Icon Library/Chrome_Switch_High.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Chrome_Switch_High.png -------------------------------------------------------------------------------- /Release/Icon Library/Chrome_Switch_Low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Chrome_Switch_Low.png -------------------------------------------------------------------------------- /Release/Icon Library/Chrome_Switch_Mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Chrome_Switch_Mid.png -------------------------------------------------------------------------------- /Release/Icon Library/MASTER_CAUTION_AV8B.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/MASTER_CAUTION_AV8B.svg -------------------------------------------------------------------------------- /Release/Icon Library/MASTER_CAUTION_AV8B_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/MASTER_CAUTION_AV8B_off.png -------------------------------------------------------------------------------- /Release/Icon Library/MASTER_CAUTION_AV8B_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/MASTER_CAUTION_AV8B_on.png -------------------------------------------------------------------------------- /Release/Icon Library/Mode_AA_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Mode_AA_off.png -------------------------------------------------------------------------------- /Release/Icon Library/Mode_AA_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Mode_AA_on.png -------------------------------------------------------------------------------- /Release/Icon Library/Mode_AV8B_AG_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Mode_AV8B_AG_off.png -------------------------------------------------------------------------------- /Release/Icon Library/Mode_AV8B_AG_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Mode_AV8B_AG_on.png -------------------------------------------------------------------------------- /Release/Icon Library/Mode_AV8B_NAV_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Mode_AV8B_NAV_off.png -------------------------------------------------------------------------------- /Release/Icon Library/Mode_AV8B_NAV_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Mode_AV8B_NAV_on.png -------------------------------------------------------------------------------- /Release/Icon Library/Mode_AV8B_VSTOL_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Mode_AV8B_VSTOL_off.png -------------------------------------------------------------------------------- /Release/Icon Library/Mode_AV8B_VSTOL_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Mode_AV8B_VSTOL_on.png -------------------------------------------------------------------------------- /Release/Icon Library/Rotary_Dial_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Rotary_Dial_0.png -------------------------------------------------------------------------------- /Release/Icon Library/Rotary_Dial_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Rotary_Dial_1.png -------------------------------------------------------------------------------- /Release/Icon Library/Rotary_Dial_Half_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Rotary_Dial_Half_0.png -------------------------------------------------------------------------------- /Release/Icon Library/Rotary_Dial_Half_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Rotary_Dial_Half_1.png -------------------------------------------------------------------------------- /Release/Icon Library/Rotary_Switch_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Rotary_Switch_0.png -------------------------------------------------------------------------------- /Release/Icon Library/Rotary_Switch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Rotary_Switch_1.png -------------------------------------------------------------------------------- /Release/Icon Library/Rotary_Switch_Half_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Rotary_Switch_Half_0.png -------------------------------------------------------------------------------- /Release/Icon Library/Rotary_Switch_Half_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Rotary_Switch_Half_1.png -------------------------------------------------------------------------------- /Release/Icon Library/Static_AV8B_ODU_Corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Static_AV8B_ODU_Corner.png -------------------------------------------------------------------------------- /Release/Icon Library/Static_AV8B_ODU_Corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/Icon Library/Static_AV8B_ODU_Corner.svg -------------------------------------------------------------------------------- /Release/com.ctytler.dcs.streamDeckPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Release/com.ctytler.dcs.streamDeckPlugin -------------------------------------------------------------------------------- /Sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/README.md -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/EPLJSONUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/EPLJSONUtils.h -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ESDBasePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ESDBasePlugin.h -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ESDConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ESDConnectionManager.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ESDConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ESDConnectionManager.h -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ESDLocalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ESDLocalizer.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ESDLocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ESDLocalizer.h -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ESDSDKDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ESDSDKDefines.h -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ESDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ESDUtilities.h -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ESDUtilitiesWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ESDUtilitiesWindows.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/ElgatoSD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/ElgatoSD.vcxproj -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/packages.config -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/pch.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/ElgatoSD/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/ElgatoSD/pch.h -------------------------------------------------------------------------------- /Sources/backend-cpp/SimulatorInterface/Protocols/DcsBiosProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/SimulatorInterface/Protocols/DcsBiosProtocol.h -------------------------------------------------------------------------------- /Sources/backend-cpp/SimulatorInterface/SimConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/SimulatorInterface/SimConnectionManager.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/SimulatorInterface/SimConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/SimulatorInterface/SimConnectionManager.h -------------------------------------------------------------------------------- /Sources/backend-cpp/SimulatorInterface/SimulatorInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/SimulatorInterface/SimulatorInterface.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/SimulatorInterface/SimulatorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/SimulatorInterface/SimulatorInterface.h -------------------------------------------------------------------------------- /Sources/backend-cpp/SimulatorInterface/SimulatorInterface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/SimulatorInterface/SimulatorInterface.vcxproj -------------------------------------------------------------------------------- /Sources/backend-cpp/SimulatorInterface/SimulatorProtocolTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/SimulatorInterface/SimulatorProtocolTypes.h -------------------------------------------------------------------------------- /Sources/backend-cpp/SimulatorInterface/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/SimulatorInterface/packages.config -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/ExportMonitors/TitleMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/ExportMonitors/TitleMonitor.h -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/SendActions/IncrementAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/SendActions/IncrementAction.h -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/SendActions/MomentaryAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/SendActions/MomentaryAction.h -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/SendActions/SwitchAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/SendActions/SwitchAction.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/SendActions/SwitchAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/SendActions/SwitchAction.h -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/StreamdeckContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/StreamdeckContext.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/StreamdeckContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/StreamdeckContext.h -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/StreamdeckContext.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/StreamdeckContext.vcxproj -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckContext/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckContext/packages.config -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckInterface/StreamdeckInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckInterface/StreamdeckInterface.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckInterface/StreamdeckInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckInterface/StreamdeckInterface.h -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckInterface/StreamdeckInterface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckInterface/StreamdeckInterface.vcxproj -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckInterface/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckInterface/main.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/StreamdeckInterface/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/StreamdeckInterface/packages.config -------------------------------------------------------------------------------- /Sources/backend-cpp/Test/MockESDConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Test/MockESDConnectionManager.h -------------------------------------------------------------------------------- /Sources/backend-cpp/Test/Test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Test/Test.vcxproj -------------------------------------------------------------------------------- /Sources/backend-cpp/Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Test/packages.config -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/Decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/Decimal.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/Decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/Decimal.h -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/JsonReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/JsonReader.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/JsonReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/JsonReader.h -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/LuaReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/LuaReader.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/LuaReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/LuaReader.h -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/StringUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/StringUtilities.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/StringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/StringUtilities.h -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/UdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/UdpSocket.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/UdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/UdpSocket.h -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/Utilities.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/Utilities.vcxproj -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/packages.config -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/test/DecimalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/test/DecimalTest.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/test/JsonReaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/test/JsonReaderTest.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/test/LuaReaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/test/LuaReaderTest.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/test/StringUtilitiesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/test/StringUtilitiesTest.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/test/UdpSocketTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/test/UdpSocketTest.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Utilities/test/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Utilities/test/sample.json -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/COPYING -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/INSTALL -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/LICENSE_1_0.txt -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/Makefile.am -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/Makefile.in -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/README -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/aclocal.m4 -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/compile -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/config.guess -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/config.sub -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/configure -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/configure.ac -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/depcomp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/examples.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/history.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/index.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/net_ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/net_ts.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/async.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/basics.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/buffers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/buffers.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/reactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/reactor.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/spawn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/spawn.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/strands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/strands.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/streams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/streams.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/core/threads.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/cpp2011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/cpp2011.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/networking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/networking.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/posix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/posix.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/posix/fork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/posix/fork.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/posix/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/posix/local.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/rationale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/rationale.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/serial_ports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/serial_ports.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/signals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/signals.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/ssl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/ssl.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/timers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/timers.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/overview/windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/overview/windows.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/Endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/Endpoint.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/Executor1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/Executor1.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/Handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/Handler.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/Protocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/Protocol.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ReadHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ReadHandler.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/Service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/Service.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/TimeTraits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/TimeTraits.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/WaitHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/WaitHandler.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/WaitTraits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/WaitTraits.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/add_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/add_service.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/async_read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/async_read.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/async_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/async_write.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffer.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffer_cast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffer_cast.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffer_copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffer_copy.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffer_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffer_size.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffers_end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/buffers_end.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/connect.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/coroutine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/coroutine.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/defer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/defer.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/dispatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/dispatch.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/error_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/error_code.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/executor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/executor.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/has_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/has_service.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/io_context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/io_context.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/io_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/io_service.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__address.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__icmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__icmp.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__icmp/v4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__icmp/v4.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__icmp/v6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__icmp/v6.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__tcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__tcp.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__tcp/v4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__tcp/v4.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__tcp/v6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__tcp/v6.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__udp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__udp.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__udp/v4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__udp/v4.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__udp/v6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__udp/v6.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__v6_only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ip__v6_only.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/is_executor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/is_executor.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/post.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/read.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/read_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/read_at.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/read_until.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/read_until.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/serial_port.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/serial_port.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/signal_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/signal_set.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/socket_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/socket_base.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/spawn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/spawn.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/ssl__stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/ssl__stream.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/strand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/strand.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/strand/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/strand/post.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/streambuf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/streambuf.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/thread.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/thread/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/thread/join.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/thread_pool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/thread_pool.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/use_future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/use_future.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/use_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/use_service.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/wait_traits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/wait_traits.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/write.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/reference/write_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/reference/write_at.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/boost_bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/boost_bind.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime1.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime2.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime3.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime4.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime5.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime6.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tutdaytime7.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer1.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer2.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer3.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer4.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/tutorial/tuttimer5.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/asio/using.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/asio/using.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/async_op1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/async_op1.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/async_op2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/async_op2.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/blank.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/boostbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/boostbook.css -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/caution.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/draft.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/home.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/important.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/index.html -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/next.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/next_disabled.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/note.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/prev.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/prev_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/prev_disabled.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/proactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/proactor.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/standalone_HTML.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/standalone_HTML.manifest -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/sync_op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/sync_op.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/tip.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/up.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/up_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/up_disabled.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/doc/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/doc/warning.png -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/Makefile.am -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/Makefile.in -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/async_result.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/basic_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/basic_io_object.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/basic_raw_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/basic_raw_socket.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/basic_serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/basic_serial_port.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/basic_signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/basic_signal_set.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/basic_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/basic_socket.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/basic_streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/basic_streambuf.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/bind_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/bind_executor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/buffer.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/buffered_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/buffered_stream.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/buffers_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/buffers_iterator.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/connect.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/coroutine.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/deadline_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/deadline_timer.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/defer.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/array.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/array_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/array_fwd.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/assert.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/call_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/call_stack.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/chrono.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/config.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/cstddef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/cstddef.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/cstdint.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/event.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/executor_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/executor_op.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/functional.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/future.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/global.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/hash_map.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/io_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/io_control.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/is_executor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/limits.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/memory.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/mutex.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/noncopyable.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/null_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/null_event.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/null_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/null_global.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/null_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/null_mutex.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/null_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/null_thread.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/object_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/object_pool.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/op_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/op_queue.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/operation.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/pop_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/pop_options.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/posix_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/posix_event.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/posix_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/posix_mutex.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/reactor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/reactor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/reactor_fwd.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/reactor_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/reactor_op.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/regex_fwd.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/resolve_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/resolve_op.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/scheduler.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/scoped_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/scoped_lock.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/scoped_ptr.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/signal_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/signal_init.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/signal_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/signal_op.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/socket_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/socket_ops.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/std_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/std_event.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/std_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/std_global.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/std_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/std_mutex.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/std_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/std_thread.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/string_view.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/thread.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/throw_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/throw_error.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/timer_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/timer_queue.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/tss_ptr.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/type_traits.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/wait_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/wait_op.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/win_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/win_event.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/win_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/win_global.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/win_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/win_mutex.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/win_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/win_thread.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/win_tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/win_tss_ptr.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/detail/winrt_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/detail/winrt_utils.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/dispatch.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/error.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/error_code.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/execution_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/execution_context.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/executor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/experimental.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/experimental.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/handler_alloc_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/handler_alloc_hook.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/handler_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/handler_type.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/connect.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/defer.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/dispatch.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/error.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/error_code.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/error_code.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/executor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/executor.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/executor.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/io_context.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/io_context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/io_context.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/post.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/read.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/read_at.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/read_until.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/spawn.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/src.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/src.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/thread_pool.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/thread_pool.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/thread_pool.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/use_future.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/write.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/impl/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/impl/write_at.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/io_context.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/io_context_strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/io_context_strand.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/io_service.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/io_service_strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/io_service_strand.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/address.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/address_v4.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/address_v6.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/basic_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/basic_endpoint.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/basic_resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/basic_resolver.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/detail/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/detail/endpoint.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/host_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/host_name.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/icmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/icmp.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address_v4.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address_v4.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address_v4.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address_v6.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address_v6.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/address_v6.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/host_name.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/host_name.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/network_v4.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/network_v4.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/network_v4.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/network_v6.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/network_v6.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/impl/network_v6.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/multicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/multicast.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/network_v4.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/network_v6.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/resolver_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/resolver_base.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/udp.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/unicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/unicast.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ip/v6_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ip/v6_only.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/is_executor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/is_read_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/is_read_buffered.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/is_write_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/is_write_buffered.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/local/connect_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/local/connect_pair.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/packaged_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/packaged_task.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/placeholders.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/posix/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/posix/descriptor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/post.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/raw_socket_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/raw_socket_service.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/read.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/read_at.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/read_until.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/serial_port.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/serial_port_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/serial_port_base.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/signal_set.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/signal_set_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/signal_set_service.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/socket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/socket_base.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/spawn.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/context.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/context_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/context_base.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/detail/engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/detail/engine.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/detail/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/detail/io.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/detail/read_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/detail/read_op.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/error.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/impl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/impl/context.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/impl/context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/impl/context.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/impl/error.ipp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/impl/src.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/stream.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/stream_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/stream_base.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/verify_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/verify_context.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ssl/verify_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ssl/verify_mode.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/steady_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/steady_timer.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/strand.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/streambuf.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/system_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/system_context.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/system_error.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/system_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/system_executor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/system_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/system_timer.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/thread.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/thread_pool.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/time_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/time_traits.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ts/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ts/buffer.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ts/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ts/executor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ts/internet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ts/internet.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ts/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ts/io_context.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ts/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ts/net.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ts/netfwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ts/netfwd.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ts/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ts/socket.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/ts/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/ts/timer.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/unyield.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/use_future.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/uses_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/uses_executor.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/version.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/wait_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/wait_traits.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/write.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/write_at.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/include/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/include/asio/yield.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/install-sh -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/missing -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/Makefile.am -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/Makefile.in -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/Makefile.mgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/Makefile.mgw -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/Makefile.msc -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/asio.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/asio_ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/asio_ssl.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/Makefile.am -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/Makefile.in -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/fork/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/fork/daemon.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/icmp/ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/icmp/ping.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/README -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/ca.pem -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/client.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/dh2048.pem -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/server.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp03/ssl/server.pem -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp11/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp11/Makefile.am -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp11/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp11/Makefile.in -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp11/fork/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp11/fork/daemon.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp11/ssl/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp11/ssl/client.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp11/ssl/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp11/ssl/server.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp14/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp14/Makefile.am -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp14/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp14/Makefile.in -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp17/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp17/Makefile.am -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/examples/cpp17/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/examples/cpp17/Makefile.in -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/Makefile.am -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/Makefile.in -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/latency/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/latency/allocator.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/latency/tcp_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/latency/tcp_client.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/latency/tcp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/latency/tcp_server.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/latency/udp_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/latency/udp_client.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/latency/udp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/latency/udp_server.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/performance/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/performance/client.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/performance/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/performance/server.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/async_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/async_result.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/basic_raw_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/basic_raw_socket.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/basic_signal_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/basic_signal_set.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/basic_streambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/basic_streambuf.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/bind_executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/bind_executor.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/buffer.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/buffered_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/buffered_stream.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/buffers_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/buffers_iterator.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/connect.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/coroutine.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/deadline_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/deadline_timer.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/defer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/defer.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/dispatch.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/error.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/executor.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/io_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/io_context.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/address.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/address_v4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/address_v4.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/address_v6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/address_v6.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/host_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/host_name.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/icmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/icmp.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/multicast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/multicast.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/network_v4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/network_v4.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/network_v6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/network_v6.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/tcp.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/udp.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/unicast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/unicast.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/v6_only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ip/v6_only.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/is_read_buffered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/is_read_buffered.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/packaged_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/packaged_task.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/placeholders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/placeholders.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/posix/descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/posix/descriptor.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/post.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/post.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/read.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/read_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/read_at.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/read_until.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/read_until.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/serial_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/serial_port.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/serial_port_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/serial_port_base.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/signal_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/signal_set.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/socket_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/socket_base.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/context.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/context_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/context_base.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/error.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/stream.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/stream_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ssl/stream_base.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/steady_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/steady_timer.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/strand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/strand.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/streambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/streambuf.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/system_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/system_context.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/system_executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/system_executor.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/system_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/system_timer.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/thread.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/time_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/time_traits.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/buffer.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/executor.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/internet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/internet.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/io_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/io_context.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/net.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/netfwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/netfwd.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/socket.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/ts/timer.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/unit_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/unit_test.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/use_future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/use_future.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/uses_executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/uses_executor.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/wait_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/wait_traits.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/write.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tests/unit/write_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tests/unit/write_at.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/src/tools/handlerviz.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/src/tools/handlerviz.pl -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/asio/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/asio/test-driver -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/COPYING -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/Doxyfile -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/SConstruct -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/changelog.md -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/cmake/CMakeHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/cmake/CMakeHelpers.cmake -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/docs/config.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/docs/config.dox -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/docs/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/docs/faq.dox -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/docs/getting_started.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/docs/getting_started.dox -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/docs/handlers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/docs/handlers.dox -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/docs/logging.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/docs/logging.dox -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/docs/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/docs/manual.css -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/docs/manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/docs/manual.dox -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/docs/tutorials.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/docs/tutorials.dox -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/examples/dev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/examples/dev/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/examples/dev/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/examples/dev/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/examples/dev/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/examples/dev/main.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/readme.md -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/roadmap.md -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/connection/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/connection/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/endpoint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/endpoint/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/endpoint/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/endpoint/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/endpoint/endpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/endpoint/endpoint.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/extension/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/extension/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/extension/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/extension/extension.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/http/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/http/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/http/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/http/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/http/a.out -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/http/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/http/parser.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/http/parser_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/http/parser_perf.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/http/perf.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/http/perf.out -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/http/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/http/test.out -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/logger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/logger/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/logger/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/logger/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/logger/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/logger/basic.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/random/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/random/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/random/none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/random/none.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/roles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/roles/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/roles/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/roles/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/roles/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/roles/client.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/roles/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/roles/server.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/transport/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/transport/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/utility/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/utility/SConscript -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/utility/close.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/utility/close.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/utility/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/utility/error.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/utility/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/utility/frame.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/utility/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/utility/sha1.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/test/utility/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/test/utility/uri.cpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/client.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/close.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/close.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/endpoint.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/error.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/frame.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/server.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/sha1/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/sha1/sha1.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/uri.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/utilities.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Vendor/websocketpp/websocketpp/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Vendor/websocketpp/websocketpp/version.hpp -------------------------------------------------------------------------------- /Sources/backend-cpp/Windows/com.ctytler.dcs.sdPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/backend-cpp/Windows/com.ctytler.dcs.sdPlugin.sln -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/concrt140.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/extract_clickabledata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/extract_clickabledata.lua -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/i_18n.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/i_18n.lua -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/lua.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140_1.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140_2.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140_atomic_wait.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140_atomic_wait.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140_codecvt_ids.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/msvcp140_codecvt_ids.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/vcamp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/vcamp140.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/vccorlib140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/vccorlib140.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/vcomp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/vcomp140.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/vcruntime140.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/vcruntime140_1.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/bin/vcruntime140_threads.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/bin/vcruntime140_threads.dll -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/en.json -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/helpDocs/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/helpDocs/github-markdown.css -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/helpDocs/helpContents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/helpDocs/helpContents.md -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/helpDocs/helpWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/helpDocs/helpWindow.html -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/helpDocs/ip_config_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/helpDocs/ip_config_settings.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/helpDocs/switch_states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/helpDocs/switch_states.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Button_AV8B_ODU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Button_AV8B_ODU.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Button_UFC_Blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Button_UFC_Blank.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Button_UFC_Blank@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Button_UFC_Blank@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Chrome_Switch_High.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Chrome_Switch_High.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Chrome_Switch_Low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Chrome_Switch_Low.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Chrome_Switch_Low@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Chrome_Switch_Low@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Dial_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Dial_0.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Dial_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Dial_0@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Dial_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Dial_1.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Dial_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Dial_1@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Switch_Half_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Switch_Half_0.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Switch_Half_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/Rotary_Switch_Half_1.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/button_light_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/button_light_off.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/button_light_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/button_light_off@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/button_light_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/button_light_on.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/button_light_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/button_light_on@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/category_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/category_icon.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/category_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/category_icon.svg -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/category_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/category_icon@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/display_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/display_icon.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/display_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/display_icon.svg -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/display_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/display_icon@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/display_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/display_wide.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/display_wide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/display_wide@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/icon.svg -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/plugin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/plugin_icon.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/images/plugin_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/images/plugin_icon@2x.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/manifest.json -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/propertyinspector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/propertyinspector/README.md -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/propertyinspector/css/caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/propertyinspector/css/caret.svg -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/propertyinspector/css/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/propertyinspector/css/check.png -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/propertyinspector/css/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/propertyinspector/css/check.svg -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/propertyinspector/css/sdpi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/propertyinspector/css/sdpi.css -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/propertyinspector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/propertyinspector/index.html -------------------------------------------------------------------------------- /Sources/com.ctytler.dcs.sdPlugin/propertyinspector/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/com.ctytler.dcs.sdPlugin/propertyinspector/js/common.js -------------------------------------------------------------------------------- /Sources/frontend-react-js/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Sources/frontend-react-js/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/.eslintrc -------------------------------------------------------------------------------- /Sources/frontend-react-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/.gitignore -------------------------------------------------------------------------------- /Sources/frontend-react-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/README.md -------------------------------------------------------------------------------- /Sources/frontend-react-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/package-lock.json -------------------------------------------------------------------------------- /Sources/frontend-react-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/package.json -------------------------------------------------------------------------------- /Sources/frontend-react-js/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/public/favicon.ico -------------------------------------------------------------------------------- /Sources/frontend-react-js/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/public/index.html -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/App.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/App.test.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/App.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/api/DcsBios/DraggableItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/api/DcsBios/DraggableItems.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/api/DcsBios/Utilities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/api/DcsBios/Utilities.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/api/Streamdeck/StreamdeckApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/api/Streamdeck/StreamdeckApi.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/areas/ButtonConfiguration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/areas/ButtonConfiguration.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/areas/IdLookup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/areas/IdLookup.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/areas/RightSidebar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/areas/RightSidebar.module.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/areas/RightSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/areas/RightSidebar.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/components/DcsBiosIdLookup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/components/DcsBiosIdLookup.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/components/ModuleSelect.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/components/ModuleSelect.module.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/components/ModuleSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/components/ModuleSelect.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/components/SearchBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/components/SearchBar.module.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/components/SearchBar.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/components/Table.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/components/Table.module.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/components/Table.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/components/test/Table.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/components/test/Table.test.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/forms/DropArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/forms/DropArea.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/forms/Forms.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/forms/Forms.module.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/forms/SendCommand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/forms/SendCommand.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/forms/StateMonitor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/forms/StateMonitor.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/forms/TitleMonitor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/forms/TitleMonitor.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/index.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/index.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/modals/Backdrop.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/modals/Backdrop.module.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/modals/Backdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/modals/Backdrop.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/modals/PluginSetup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/modals/PluginSetup.module.css -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/modals/PluginSetup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/modals/PluginSetup.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/modals/SelectedControlRef.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/modals/SelectedControlRef.tsx -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Sources/frontend-react-js/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/src/setupTests.ts -------------------------------------------------------------------------------- /Sources/frontend-react-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Sources/frontend-react-js/tsconfig.json -------------------------------------------------------------------------------- /Tools/DistributionTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Tools/DistributionTool.exe -------------------------------------------------------------------------------- /Tools/SocketTester/SocketTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Tools/SocketTester/SocketTester.cpp -------------------------------------------------------------------------------- /Tools/SocketTester/SocketTester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Tools/SocketTester/SocketTester.vcxproj -------------------------------------------------------------------------------- /Tools/SocketTester/bin/SocketTester.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Tools/SocketTester/bin/SocketTester.exe -------------------------------------------------------------------------------- /Tools/SocketTester/bin/lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Tools/SocketTester/bin/lua.dll -------------------------------------------------------------------------------- /Tools/SocketTester/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Tools/SocketTester/packages.config -------------------------------------------------------------------------------- /Tools/build_plugin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/Tools/build_plugin.bat -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enertial/streamdeck-dcs-interface/HEAD/codecov.yml --------------------------------------------------------------------------------