├── .gitignore ├── COPYING ├── LICENSE ├── README.md ├── Release └── avionics.madjack.dcs.streamDeckPlugin ├── Sources ├── Common │ ├── EPLJSONUtils.h │ ├── ESDBasePlugin.h │ ├── ESDConnectionManager.cpp │ ├── ESDConnectionManager.h │ ├── ESDLocalizer.cpp │ ├── ESDLocalizer.h │ ├── ESDSDKDefines.h │ ├── ESDUtilities.h │ ├── ESDUtilitiesMac.cpp │ ├── ESDUtilitiesWindows.cpp │ └── main.cpp ├── MyStreamDeckPlugin.cpp ├── MyStreamDeckPlugin.h ├── 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 │ ├── json │ │ ├── ChangeLog.md │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── doc │ │ │ ├── Doxyfile │ │ │ ├── Makefile │ │ │ ├── avatars.png │ │ │ ├── binary_formats.md │ │ │ ├── css │ │ │ │ ├── mylayout.css │ │ │ │ └── mylayout_docset.css │ │ │ ├── examples │ │ │ │ ├── README.cpp │ │ │ │ ├── README.link │ │ │ │ ├── README.output │ │ │ │ ├── array.cpp │ │ │ │ ├── array.link │ │ │ │ ├── array.output │ │ │ │ ├── at__object_t_key_type.cpp │ │ │ │ ├── at__object_t_key_type.link │ │ │ │ ├── at__object_t_key_type.output │ │ │ │ ├── at__object_t_key_type_const.cpp │ │ │ │ ├── at__object_t_key_type_const.link │ │ │ │ ├── at__object_t_key_type_const.output │ │ │ │ ├── at__size_type.cpp │ │ │ │ ├── at__size_type.link │ │ │ │ ├── at__size_type.output │ │ │ │ ├── at__size_type_const.cpp │ │ │ │ ├── at__size_type_const.link │ │ │ │ ├── at__size_type_const.output │ │ │ │ ├── at_json_pointer.cpp │ │ │ │ ├── at_json_pointer.link │ │ │ │ ├── at_json_pointer.output │ │ │ │ ├── at_json_pointer_const.cpp │ │ │ │ ├── at_json_pointer_const.link │ │ │ │ ├── at_json_pointer_const.output │ │ │ │ ├── back.cpp │ │ │ │ ├── back.link │ │ │ │ ├── back.output │ │ │ │ ├── basic_json__CompatibleType.cpp │ │ │ │ ├── basic_json__CompatibleType.link │ │ │ │ ├── basic_json__CompatibleType.output │ │ │ │ ├── basic_json__InputIt_InputIt.cpp │ │ │ │ ├── basic_json__InputIt_InputIt.link │ │ │ │ ├── basic_json__InputIt_InputIt.output │ │ │ │ ├── basic_json__basic_json.cpp │ │ │ │ ├── basic_json__basic_json.link │ │ │ │ ├── basic_json__basic_json.output │ │ │ │ ├── basic_json__copyassignment.cpp │ │ │ │ ├── basic_json__copyassignment.link │ │ │ │ ├── basic_json__copyassignment.output │ │ │ │ ├── basic_json__list_init_t.cpp │ │ │ │ ├── basic_json__list_init_t.link │ │ │ │ ├── basic_json__list_init_t.output │ │ │ │ ├── basic_json__moveconstructor.cpp │ │ │ │ ├── basic_json__moveconstructor.link │ │ │ │ ├── basic_json__moveconstructor.output │ │ │ │ ├── basic_json__nullptr_t.cpp │ │ │ │ ├── basic_json__nullptr_t.link │ │ │ │ ├── basic_json__nullptr_t.output │ │ │ │ ├── basic_json__size_type_basic_json.cpp │ │ │ │ ├── basic_json__size_type_basic_json.link │ │ │ │ ├── basic_json__size_type_basic_json.output │ │ │ │ ├── basic_json__value.cpp │ │ │ │ ├── basic_json__value.link │ │ │ │ ├── basic_json__value.output │ │ │ │ ├── basic_json__value_ptr.cpp │ │ │ │ ├── basic_json__value_ptr.link │ │ │ │ ├── basic_json__value_ptr.output │ │ │ │ ├── basic_json__value_t.cpp │ │ │ │ ├── basic_json__value_t.link │ │ │ │ ├── basic_json__value_t.output │ │ │ │ ├── begin.cpp │ │ │ │ ├── begin.link │ │ │ │ ├── begin.output │ │ │ │ ├── cbegin.cpp │ │ │ │ ├── cbegin.link │ │ │ │ ├── cbegin.output │ │ │ │ ├── cend.cpp │ │ │ │ ├── cend.link │ │ │ │ ├── cend.output │ │ │ │ ├── clear.cpp │ │ │ │ ├── clear.link │ │ │ │ ├── clear.output │ │ │ │ ├── count.cpp │ │ │ │ ├── count.link │ │ │ │ ├── count.output │ │ │ │ ├── crbegin.cpp │ │ │ │ ├── crbegin.link │ │ │ │ ├── crbegin.output │ │ │ │ ├── crend.cpp │ │ │ │ ├── crend.link │ │ │ │ ├── crend.output │ │ │ │ ├── diff.cpp │ │ │ │ ├── diff.link │ │ │ │ ├── diff.output │ │ │ │ ├── dump.cpp │ │ │ │ ├── dump.link │ │ │ │ ├── dump.output │ │ │ │ ├── emplace.cpp │ │ │ │ ├── emplace.link │ │ │ │ ├── emplace.output │ │ │ │ ├── emplace_back.cpp │ │ │ │ ├── emplace_back.link │ │ │ │ ├── emplace_back.output │ │ │ │ ├── empty.cpp │ │ │ │ ├── empty.link │ │ │ │ ├── empty.output │ │ │ │ ├── end.cpp │ │ │ │ ├── end.link │ │ │ │ ├── end.output │ │ │ │ ├── erase__IteratorType.cpp │ │ │ │ ├── erase__IteratorType.link │ │ │ │ ├── erase__IteratorType.output │ │ │ │ ├── erase__IteratorType_IteratorType.cpp │ │ │ │ ├── erase__IteratorType_IteratorType.link │ │ │ │ ├── erase__IteratorType_IteratorType.output │ │ │ │ ├── erase__key_type.cpp │ │ │ │ ├── erase__key_type.link │ │ │ │ ├── erase__key_type.output │ │ │ │ ├── erase__size_type.cpp │ │ │ │ ├── erase__size_type.link │ │ │ │ ├── erase__size_type.output │ │ │ │ ├── exception.cpp │ │ │ │ ├── exception.link │ │ │ │ ├── exception.output │ │ │ │ ├── find__key_type.cpp │ │ │ │ ├── find__key_type.link │ │ │ │ ├── find__key_type.output │ │ │ │ ├── flatten.cpp │ │ │ │ ├── flatten.link │ │ │ │ ├── flatten.output │ │ │ │ ├── from_bson.cpp │ │ │ │ ├── from_bson.link │ │ │ │ ├── from_bson.output │ │ │ │ ├── from_cbor.cpp │ │ │ │ ├── from_cbor.link │ │ │ │ ├── from_cbor.output │ │ │ │ ├── from_msgpack.cpp │ │ │ │ ├── from_msgpack.link │ │ │ │ ├── from_msgpack.output │ │ │ │ ├── from_ubjson.cpp │ │ │ │ ├── from_ubjson.link │ │ │ │ ├── from_ubjson.output │ │ │ │ ├── front.cpp │ │ │ │ ├── front.link │ │ │ │ ├── front.output │ │ │ │ ├── get__PointerType.cpp │ │ │ │ ├── get__PointerType.link │ │ │ │ ├── get__PointerType.output │ │ │ │ ├── get__ValueType_const.cpp │ │ │ │ ├── get__ValueType_const.link │ │ │ │ ├── get__ValueType_const.output │ │ │ │ ├── get_ptr.cpp │ │ │ │ ├── get_ptr.link │ │ │ │ ├── get_ptr.output │ │ │ │ ├── get_ref.cpp │ │ │ │ ├── get_ref.link │ │ │ │ ├── get_ref.output │ │ │ │ ├── get_to.cpp │ │ │ │ ├── get_to.link │ │ │ │ ├── get_to.output │ │ │ │ ├── insert.cpp │ │ │ │ ├── insert.link │ │ │ │ ├── insert.output │ │ │ │ ├── insert__count.cpp │ │ │ │ ├── insert__count.link │ │ │ │ ├── insert__count.output │ │ │ │ ├── insert__ilist.cpp │ │ │ │ ├── insert__ilist.link │ │ │ │ ├── insert__ilist.output │ │ │ │ ├── insert__range.cpp │ │ │ │ ├── insert__range.link │ │ │ │ ├── insert__range.output │ │ │ │ ├── insert__range_object.cpp │ │ │ │ ├── insert__range_object.link │ │ │ │ ├── insert__range_object.output │ │ │ │ ├── invalid_iterator.cpp │ │ │ │ ├── invalid_iterator.link │ │ │ │ ├── invalid_iterator.output │ │ │ │ ├── is_array.cpp │ │ │ │ ├── is_array.link │ │ │ │ ├── is_array.output │ │ │ │ ├── is_boolean.cpp │ │ │ │ ├── is_boolean.link │ │ │ │ ├── is_boolean.output │ │ │ │ ├── is_discarded.cpp │ │ │ │ ├── is_discarded.link │ │ │ │ ├── is_discarded.output │ │ │ │ ├── is_null.cpp │ │ │ │ ├── is_null.link │ │ │ │ ├── is_null.output │ │ │ │ ├── is_number.cpp │ │ │ │ ├── is_number.link │ │ │ │ ├── is_number.output │ │ │ │ ├── is_number_float.cpp │ │ │ │ ├── is_number_float.link │ │ │ │ ├── is_number_float.output │ │ │ │ ├── is_number_integer.cpp │ │ │ │ ├── is_number_integer.link │ │ │ │ ├── is_number_integer.output │ │ │ │ ├── is_number_unsigned.cpp │ │ │ │ ├── is_number_unsigned.link │ │ │ │ ├── is_number_unsigned.output │ │ │ │ ├── is_object.cpp │ │ │ │ ├── is_object.link │ │ │ │ ├── is_object.output │ │ │ │ ├── is_primitive.cpp │ │ │ │ ├── is_primitive.link │ │ │ │ ├── is_primitive.output │ │ │ │ ├── is_string.cpp │ │ │ │ ├── is_string.link │ │ │ │ ├── is_string.output │ │ │ │ ├── is_structured.cpp │ │ │ │ ├── is_structured.link │ │ │ │ ├── is_structured.output │ │ │ │ ├── items.cpp │ │ │ │ ├── items.link │ │ │ │ ├── items.output │ │ │ │ ├── iterator_wrapper.cpp │ │ │ │ ├── iterator_wrapper.link │ │ │ │ ├── iterator_wrapper.output │ │ │ │ ├── json_pointer.cpp │ │ │ │ ├── json_pointer.link │ │ │ │ ├── json_pointer.output │ │ │ │ ├── json_pointer__to_string.cpp │ │ │ │ ├── json_pointer__to_string.link │ │ │ │ ├── json_pointer__to_string.output │ │ │ │ ├── max_size.cpp │ │ │ │ ├── max_size.link │ │ │ │ ├── max_size.output │ │ │ │ ├── merge_patch.cpp │ │ │ │ ├── merge_patch.link │ │ │ │ ├── merge_patch.output │ │ │ │ ├── meta.cpp │ │ │ │ ├── meta.link │ │ │ │ ├── meta.output │ │ │ │ ├── object.cpp │ │ │ │ ├── object.link │ │ │ │ ├── object.output │ │ │ │ ├── operator__ValueType.cpp │ │ │ │ ├── operator__ValueType.link │ │ │ │ ├── operator__ValueType.output │ │ │ │ ├── operator__equal.cpp │ │ │ │ ├── operator__equal.link │ │ │ │ ├── operator__equal.output │ │ │ │ ├── operator__equal__nullptr_t.cpp │ │ │ │ ├── operator__equal__nullptr_t.link │ │ │ │ ├── operator__equal__nullptr_t.output │ │ │ │ ├── operator__greater.cpp │ │ │ │ ├── operator__greater.link │ │ │ │ ├── operator__greater.output │ │ │ │ ├── operator__greaterequal.cpp │ │ │ │ ├── operator__greaterequal.link │ │ │ │ ├── operator__greaterequal.output │ │ │ │ ├── operator__less.cpp │ │ │ │ ├── operator__less.link │ │ │ │ ├── operator__less.output │ │ │ │ ├── operator__lessequal.cpp │ │ │ │ ├── operator__lessequal.link │ │ │ │ ├── operator__lessequal.output │ │ │ │ ├── operator__notequal.cpp │ │ │ │ ├── operator__notequal.link │ │ │ │ ├── operator__notequal.output │ │ │ │ ├── operator__notequal__nullptr_t.cpp │ │ │ │ ├── operator__notequal__nullptr_t.link │ │ │ │ ├── operator__notequal__nullptr_t.output │ │ │ │ ├── operator__value_t.cpp │ │ │ │ ├── operator__value_t.link │ │ │ │ ├── operator__value_t.output │ │ │ │ ├── operator_deserialize.cpp │ │ │ │ ├── operator_deserialize.link │ │ │ │ ├── operator_deserialize.output │ │ │ │ ├── operator_serialize.cpp │ │ │ │ ├── operator_serialize.link │ │ │ │ ├── operator_serialize.output │ │ │ │ ├── operatorarray__key_type.cpp │ │ │ │ ├── operatorarray__key_type.link │ │ │ │ ├── operatorarray__key_type.output │ │ │ │ ├── operatorarray__key_type_const.cpp │ │ │ │ ├── operatorarray__key_type_const.link │ │ │ │ ├── operatorarray__key_type_const.output │ │ │ │ ├── operatorarray__size_type.cpp │ │ │ │ ├── operatorarray__size_type.link │ │ │ │ ├── operatorarray__size_type.output │ │ │ │ ├── operatorarray__size_type_const.cpp │ │ │ │ ├── operatorarray__size_type_const.link │ │ │ │ ├── operatorarray__size_type_const.output │ │ │ │ ├── operatorjson_pointer.cpp │ │ │ │ ├── operatorjson_pointer.link │ │ │ │ ├── operatorjson_pointer.output │ │ │ │ ├── operatorjson_pointer_const.cpp │ │ │ │ ├── operatorjson_pointer_const.link │ │ │ │ ├── operatorjson_pointer_const.output │ │ │ │ ├── other_error.cpp │ │ │ │ ├── other_error.link │ │ │ │ ├── other_error.output │ │ │ │ ├── out_of_range.cpp │ │ │ │ ├── out_of_range.link │ │ │ │ ├── out_of_range.output │ │ │ │ ├── parse__array__parser_callback_t.cpp │ │ │ │ ├── parse__array__parser_callback_t.link │ │ │ │ ├── parse__array__parser_callback_t.output │ │ │ │ ├── parse__contiguouscontainer__parser_callback_t.cpp │ │ │ │ ├── parse__contiguouscontainer__parser_callback_t.link │ │ │ │ ├── parse__contiguouscontainer__parser_callback_t.output │ │ │ │ ├── parse__istream__parser_callback_t.cpp │ │ │ │ ├── parse__istream__parser_callback_t.link │ │ │ │ ├── parse__istream__parser_callback_t.output │ │ │ │ ├── parse__iteratortype__parser_callback_t.cpp │ │ │ │ ├── parse__iteratortype__parser_callback_t.link │ │ │ │ ├── parse__iteratortype__parser_callback_t.output │ │ │ │ ├── parse__string__parser_callback_t.cpp │ │ │ │ ├── parse__string__parser_callback_t.link │ │ │ │ ├── parse__string__parser_callback_t.output │ │ │ │ ├── parse_error.cpp │ │ │ │ ├── parse_error.link │ │ │ │ ├── parse_error.output │ │ │ │ ├── patch.cpp │ │ │ │ ├── patch.link │ │ │ │ ├── patch.output │ │ │ │ ├── push_back.cpp │ │ │ │ ├── push_back.link │ │ │ │ ├── push_back.output │ │ │ │ ├── push_back__initializer_list.cpp │ │ │ │ ├── push_back__initializer_list.link │ │ │ │ ├── push_back__initializer_list.output │ │ │ │ ├── push_back__object_t__value.cpp │ │ │ │ ├── push_back__object_t__value.link │ │ │ │ ├── push_back__object_t__value.output │ │ │ │ ├── rbegin.cpp │ │ │ │ ├── rbegin.link │ │ │ │ ├── rbegin.output │ │ │ │ ├── rend.cpp │ │ │ │ ├── rend.link │ │ │ │ ├── rend.output │ │ │ │ ├── sax_parse.cpp │ │ │ │ ├── sax_parse.link │ │ │ │ ├── sax_parse.output │ │ │ │ ├── size.cpp │ │ │ │ ├── size.link │ │ │ │ ├── size.output │ │ │ │ ├── swap__array_t.cpp │ │ │ │ ├── swap__array_t.link │ │ │ │ ├── swap__array_t.output │ │ │ │ ├── swap__object_t.cpp │ │ │ │ ├── swap__object_t.link │ │ │ │ ├── swap__object_t.output │ │ │ │ ├── swap__reference.cpp │ │ │ │ ├── swap__reference.link │ │ │ │ ├── swap__reference.output │ │ │ │ ├── swap__string_t.cpp │ │ │ │ ├── swap__string_t.link │ │ │ │ ├── swap__string_t.output │ │ │ │ ├── to_bson.cpp │ │ │ │ ├── to_bson.link │ │ │ │ ├── to_bson.output │ │ │ │ ├── to_cbor.cpp │ │ │ │ ├── to_cbor.link │ │ │ │ ├── to_cbor.output │ │ │ │ ├── to_msgpack.cpp │ │ │ │ ├── to_msgpack.link │ │ │ │ ├── to_msgpack.output │ │ │ │ ├── to_ubjson.cpp │ │ │ │ ├── to_ubjson.link │ │ │ │ ├── to_ubjson.output │ │ │ │ ├── type.cpp │ │ │ │ ├── type.link │ │ │ │ ├── type.output │ │ │ │ ├── type_error.cpp │ │ │ │ ├── type_error.link │ │ │ │ ├── type_error.output │ │ │ │ ├── type_name.cpp │ │ │ │ ├── type_name.link │ │ │ │ ├── type_name.output │ │ │ │ ├── unflatten.cpp │ │ │ │ ├── unflatten.link │ │ │ │ ├── unflatten.output │ │ │ │ ├── update.cpp │ │ │ │ ├── update.link │ │ │ │ ├── update.output │ │ │ │ ├── update__range.cpp │ │ │ │ ├── update__range.link │ │ │ │ └── update__range.output │ │ │ ├── faq.md │ │ │ ├── images │ │ │ │ ├── binary.png │ │ │ │ ├── callback_events.png │ │ │ │ ├── range-begin-end.svg │ │ │ │ └── range-rbegin-rend.svg │ │ │ ├── index.md │ │ │ ├── json.gif │ │ │ ├── scripts │ │ │ │ ├── git-update-ghpages │ │ │ │ └── send_to_wandbox.py │ │ │ └── usages │ │ │ │ ├── ios.png │ │ │ │ └── macos.png │ │ └── src │ │ │ └── json.hpp │ └── 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 │ ├── avionics.madjack.dcs.sdPlugin.sln │ ├── avionics.madjack.dcs.sdPlugin.vcxproj │ ├── avionics.madjack.dcs.sdPlugin.vcxproj.filters │ ├── pch.cpp │ └── pch.h └── avionics.madjack.dcs.sdPlugin │ ├── defaultImage.png │ ├── defaultImage@2x.png │ ├── icon.png │ ├── icon@2x.png │ ├── iconDCS.png │ ├── manifest.json │ ├── pluginIcon.png │ ├── pluginIcon@2x.png │ └── propertyinspector │ ├── css │ ├── caret.svg │ ├── check.png │ ├── check.svg │ ├── elg_calendar.svg │ ├── elg_calendar_inv.svg │ ├── g_d8d8d8.svg │ ├── rcheck.svg │ └── sdpi.css │ ├── index.html │ └── js │ ├── common.js │ ├── common_pi.js │ └── index_pi.js └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/README.md -------------------------------------------------------------------------------- /Release/avionics.madjack.dcs.streamDeckPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Release/avionics.madjack.dcs.streamDeckPlugin -------------------------------------------------------------------------------- /Sources/Common/EPLJSONUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/EPLJSONUtils.h -------------------------------------------------------------------------------- /Sources/Common/ESDBasePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDBasePlugin.h -------------------------------------------------------------------------------- /Sources/Common/ESDConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDConnectionManager.cpp -------------------------------------------------------------------------------- /Sources/Common/ESDConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDConnectionManager.h -------------------------------------------------------------------------------- /Sources/Common/ESDLocalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDLocalizer.cpp -------------------------------------------------------------------------------- /Sources/Common/ESDLocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDLocalizer.h -------------------------------------------------------------------------------- /Sources/Common/ESDSDKDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDSDKDefines.h -------------------------------------------------------------------------------- /Sources/Common/ESDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDUtilities.h -------------------------------------------------------------------------------- /Sources/Common/ESDUtilitiesMac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDUtilitiesMac.cpp -------------------------------------------------------------------------------- /Sources/Common/ESDUtilitiesWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/ESDUtilitiesWindows.cpp -------------------------------------------------------------------------------- /Sources/Common/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Common/main.cpp -------------------------------------------------------------------------------- /Sources/MyStreamDeckPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/MyStreamDeckPlugin.cpp -------------------------------------------------------------------------------- /Sources/MyStreamDeckPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/MyStreamDeckPlugin.h -------------------------------------------------------------------------------- /Sources/Vendor/asio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/COPYING -------------------------------------------------------------------------------- /Sources/Vendor/asio/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/INSTALL -------------------------------------------------------------------------------- /Sources/Vendor/asio/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/LICENSE_1_0.txt -------------------------------------------------------------------------------- /Sources/Vendor/asio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/Makefile.am -------------------------------------------------------------------------------- /Sources/Vendor/asio/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/Makefile.in -------------------------------------------------------------------------------- /Sources/Vendor/asio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/README -------------------------------------------------------------------------------- /Sources/Vendor/asio/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/aclocal.m4 -------------------------------------------------------------------------------- /Sources/Vendor/asio/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/compile -------------------------------------------------------------------------------- /Sources/Vendor/asio/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/config.guess -------------------------------------------------------------------------------- /Sources/Vendor/asio/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/config.sub -------------------------------------------------------------------------------- /Sources/Vendor/asio/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/configure -------------------------------------------------------------------------------- /Sources/Vendor/asio/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/configure.ac -------------------------------------------------------------------------------- /Sources/Vendor/asio/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/depcomp -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/examples.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/history.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/index.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/net_ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/net_ts.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core/async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core/async.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core/basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core/basics.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core/buffers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core/buffers.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core/reactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core/reactor.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core/spawn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core/spawn.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core/strands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core/strands.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core/streams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core/streams.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/core/threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/core/threads.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/cpp2011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/cpp2011.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/cpp2011/array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/cpp2011/array.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/networking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/networking.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/posix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/posix.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/posix/fork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/posix/fork.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/posix/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/posix/local.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/rationale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/rationale.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/serial_ports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/serial_ports.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/signals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/signals.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/ssl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/ssl.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/timers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/timers.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/overview/windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/overview/windows.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/Endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/Endpoint.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/Executor1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/Executor1.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/Handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/Handler.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/Protocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/Protocol.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ReadHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ReadHandler.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/Service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/Service.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/TimeTraits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/TimeTraits.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/WaitHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/WaitHandler.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/WaitTraits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/WaitTraits.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/WriteHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/WriteHandler.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/add_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/add_service.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/async_read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/async_read.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/async_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/async_result.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/async_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/async_write.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/bad_executor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/bad_executor.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/basic_socket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/basic_socket.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/buffer.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/buffer_cast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/buffer_cast.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/buffer_copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/buffer_copy.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/buffer_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/buffer_size.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/buffers_end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/buffers_end.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/connect.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/const_buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/const_buffer.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/coroutine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/coroutine.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/defer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/defer.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/dispatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/dispatch.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/error_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/error_code.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/executor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/executor.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/executor_arg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/executor_arg.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/handler_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/handler_type.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/has_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/has_service.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/io_context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/io_context.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/io_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/io_service.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__address.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__icmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__icmp.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__icmp/v4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__icmp/v4.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__icmp/v6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__icmp/v6.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__tcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__tcp.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__tcp/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__tcp/type.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__tcp/v4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__tcp/v4.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__tcp/v6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__tcp/v6.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__udp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__udp.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__udp/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__udp/type.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__udp/v4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__udp/v4.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__udp/v6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__udp/v6.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ip__v6_only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ip__v6_only.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/is_executor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/is_executor.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/null_buffers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/null_buffers.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/post.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/read.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/read_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/read_at.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/read_until.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/read_until.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/serial_port.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/serial_port.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/signal_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/signal_set.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/socket_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/socket_base.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/spawn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/spawn.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ssl__context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ssl__context.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/ssl__stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/ssl__stream.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/steady_timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/steady_timer.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/strand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/strand.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/strand/defer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/strand/defer.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/strand/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/strand/post.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/streambuf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/streambuf.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/system_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/system_error.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/system_timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/system_timer.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/thread.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/thread/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/thread/join.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/thread_pool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/thread_pool.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/transfer_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/transfer_all.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/use_future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/use_future.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/use_future_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/use_future_t.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/use_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/use_service.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/wait_traits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/wait_traits.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/write.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/reference/write_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/reference/write_at.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/boost_bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/boost_bind.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tutdaytime1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tutdaytime1.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tutdaytime2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tutdaytime2.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tutdaytime3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tutdaytime3.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tutdaytime4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tutdaytime4.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tutdaytime5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tutdaytime5.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tutdaytime6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tutdaytime6.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tutdaytime7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tutdaytime7.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tuttimer1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tuttimer1.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tuttimer1/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tuttimer1/src.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tuttimer2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tuttimer2.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tuttimer3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tuttimer3.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tuttimer4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tuttimer4.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/tutorial/tuttimer5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/tutorial/tuttimer5.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/asio/using.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/asio/using.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/async_op1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/async_op1.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/async_op2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/async_op2.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/blank.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/boostbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/boostbook.css -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/caution.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/draft.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/home.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/important.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/index.html -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/next.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/next_disabled.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/note.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/prev.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/prev_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/prev_disabled.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/proactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/proactor.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/standalone_HTML.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/standalone_HTML.manifest -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/sync_op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/sync_op.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/tip.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/up.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/up_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/up_disabled.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/doc/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/doc/warning.png -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/Makefile.am -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/Makefile.in -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/async_result.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/basic_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/basic_io_object.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/basic_raw_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/basic_raw_socket.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/basic_signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/basic_signal_set.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/basic_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/basic_socket.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/basic_streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/basic_streambuf.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/bind_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/bind_executor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/buffer.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/buffered_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/buffered_stream.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/buffers_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/buffers_iterator.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/connect.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/coroutine.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/deadline_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/deadline_timer.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/defer.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/array.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/array_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/array_fwd.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/assert.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/chrono.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/config.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/cstddef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/cstddef.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/cstdint.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/event.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/future.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/global.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/hash_map.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/limits.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/memory.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/mutex.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/op_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/op_queue.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/operation.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/reactor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/regex_fwd.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/scheduler.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/signal_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/signal_op.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/std_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/std_event.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/std_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/std_mutex.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/thread.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/tss_ptr.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/wait_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/wait_op.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/win_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/win_event.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/detail/win_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/detail/win_mutex.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/dispatch.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/error.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/error_code.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/executor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/experimental.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/experimental.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/handler_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/handler_type.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/connect.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/defer.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/dispatch.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/error.ipp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/error_code.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/error_code.ipp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/executor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/executor.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/executor.ipp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/io_context.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/io_context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/io_context.ipp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/post.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/read.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/read_at.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/read_until.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/spawn.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/src.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/src.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/thread_pool.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/thread_pool.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/thread_pool.ipp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/use_future.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/write.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/impl/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/impl/write_at.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/io_context.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/io_service.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/address.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/address_v4.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/address_v6.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/host_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/host_name.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/icmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/icmp.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/impl/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/impl/address.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/impl/address.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/impl/address.ipp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/multicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/multicast.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/network_v4.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/network_v6.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/resolver_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/resolver_base.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/udp.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/unicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/unicast.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ip/v6_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ip/v6_only.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/is_executor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/is_read_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/is_read_buffered.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/packaged_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/packaged_task.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/placeholders.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/posix/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/posix/descriptor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/post.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/read.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/read_at.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/read_until.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/serial_port.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/serial_port_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/serial_port_base.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/signal_set.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/socket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/socket_base.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/spawn.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/context.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/context_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/context_base.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/detail/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/detail/io.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/error.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/impl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/impl/context.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/impl/context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/impl/context.ipp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/impl/error.ipp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/impl/src.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/stream.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/stream_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/stream_base.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ssl/verify_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ssl/verify_mode.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/steady_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/steady_timer.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/strand.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/streambuf.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/system_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/system_context.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/system_error.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/system_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/system_executor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/system_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/system_timer.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/thread.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/thread_pool.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/time_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/time_traits.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ts/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ts/buffer.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ts/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ts/executor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ts/internet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ts/internet.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ts/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ts/io_context.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ts/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ts/net.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ts/netfwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ts/netfwd.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ts/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ts/socket.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/ts/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/ts/timer.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/unyield.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/use_future.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/uses_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/uses_executor.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/version.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/wait_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/wait_traits.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/write.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/write_at.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/include/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/include/asio/yield.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/install-sh -------------------------------------------------------------------------------- /Sources/Vendor/asio/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/missing -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/Makefile.am -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/Makefile.in -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/Makefile.mgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/Makefile.mgw -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/Makefile.msc -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/asio.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/asio_ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/asio_ssl.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/Makefile.am -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/Makefile.in -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/icmp/ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/icmp/ping.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/ssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/ssl/README -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/ssl/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/ssl/ca.pem -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/ssl/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/ssl/client.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/ssl/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/ssl/dh2048.pem -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/ssl/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/ssl/server.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp03/ssl/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp03/ssl/server.pem -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp11/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp11/Makefile.am -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp11/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp11/Makefile.in -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp11/ssl/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp11/ssl/client.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp11/ssl/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp11/ssl/server.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp14/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp14/Makefile.am -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp14/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp14/Makefile.in -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp17/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp17/Makefile.am -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/examples/cpp17/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/examples/cpp17/Makefile.in -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/Makefile.am -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/Makefile.in -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/latency/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/latency/allocator.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/latency/tcp_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/latency/tcp_client.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/latency/tcp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/latency/tcp_server.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/latency/udp_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/latency/udp_client.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/latency/udp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/latency/udp_server.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/performance/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/performance/client.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/performance/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/performance/server.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/async_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/async_result.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/bind_executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/bind_executor.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/buffer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/connect.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/coroutine.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/deadline_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/deadline_timer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/defer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/defer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/dispatch.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/error.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/executor.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/io_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/io_context.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/address.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/address_v4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/address_v4.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/address_v6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/address_v6.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/host_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/host_name.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/icmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/icmp.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/multicast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/multicast.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/network_v4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/network_v4.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/network_v6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/network_v6.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/tcp.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/udp.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/unicast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/unicast.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ip/v6_only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ip/v6_only.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/packaged_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/packaged_task.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/placeholders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/placeholders.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/post.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/post.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/read.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/read_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/read_at.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/read_until.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/read_until.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/serial_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/serial_port.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/signal_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/signal_set.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/socket_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/socket_base.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ssl/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ssl/context.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ssl/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ssl/error.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ssl/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ssl/stream.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/steady_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/steady_timer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/strand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/strand.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/streambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/streambuf.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/system_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/system_context.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/system_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/system_timer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/thread.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/time_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/time_traits.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ts/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ts/buffer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ts/executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ts/executor.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ts/internet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ts/internet.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ts/io_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ts/io_context.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ts/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ts/net.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ts/netfwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ts/netfwd.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ts/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ts/socket.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/ts/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/ts/timer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/unit_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/unit_test.hpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/use_future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/use_future.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/uses_executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/uses_executor.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/wait_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/wait_traits.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/write.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tests/unit/write_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tests/unit/write_at.cpp -------------------------------------------------------------------------------- /Sources/Vendor/asio/src/tools/handlerviz.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/src/tools/handlerviz.pl -------------------------------------------------------------------------------- /Sources/Vendor/asio/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/asio/test-driver -------------------------------------------------------------------------------- /Sources/Vendor/json/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/ChangeLog.md -------------------------------------------------------------------------------- /Sources/Vendor/json/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/LICENSE.MIT -------------------------------------------------------------------------------- /Sources/Vendor/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/README.md -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/Doxyfile -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/Makefile -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/avatars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/avatars.png -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/binary_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/binary_formats.md -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/css/mylayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/css/mylayout.css -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/css/mylayout_docset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/css/mylayout_docset.css -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/README.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/README.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/README.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/README.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/README.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/array.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/array.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/array.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/array.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/at__object_t_key_type_const.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/at__size_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/at__size_type.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/at__size_type.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/at__size_type.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/at__size_type.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/at__size_type.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/at_json_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/at_json_pointer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/at_json_pointer.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/back.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/back.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/back.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__CompatibleType.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__InputIt_InputIt.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__basic_json.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__copyassignment.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__copyassignment.output: -------------------------------------------------------------------------------- 1 | 23 2 | 23 3 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__list_init_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__moveconstructor.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__moveconstructor.output: -------------------------------------------------------------------------------- 1 | null 2 | 23 3 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__nullptr_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__size_type_basic_json.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__value.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__value.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__value_ptr.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__value_ptr.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__value_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/basic_json__value_t.output: -------------------------------------------------------------------------------- 1 | null 2 | false 3 | 0 4 | 0.0 5 | {} 6 | [] 7 | "" 8 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/begin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/begin.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/begin.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/begin.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/cbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/cbegin.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/cbegin.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/cbegin.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/cend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/cend.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/cend.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/cend.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/clear.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/clear.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/clear.output: -------------------------------------------------------------------------------- 1 | null 2 | false 3 | 0 4 | 0.0 5 | {} 6 | [] 7 | "" 8 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/count.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/count.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/count.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/count.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/crbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/crbegin.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/crbegin.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/crbegin.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/crend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/crend.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/crend.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/crend.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/diff.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/diff.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/diff.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/diff.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/dump.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/dump.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/dump.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/dump.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/dump.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/emplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/emplace.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/emplace.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/emplace.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/emplace.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/emplace_back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/emplace_back.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/emplace_back.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/emplace_back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/emplace_back.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/empty.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/empty.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/empty.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/empty.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/end.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/end.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/end.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/end.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/erase__IteratorType_IteratorType.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/erase__key_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/erase__key_type.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/erase__key_type.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/erase__key_type.output: -------------------------------------------------------------------------------- 1 | {"two":2} 2 | 1 0 3 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/erase__size_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/erase__size_type.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/erase__size_type.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/erase__size_type.output: -------------------------------------------------------------------------------- 1 | [0,1,3,4,5] 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/exception.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/exception.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/exception.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/exception.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/find__key_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/find__key_type.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/find__key_type.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/flatten.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/flatten.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/flatten.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/flatten.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/from_bson.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_bson.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_bson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/from_bson.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/from_cbor.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_cbor.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_cbor.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/from_cbor.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/from_msgpack.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_msgpack.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_msgpack.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/from_msgpack.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/from_ubjson.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_ubjson.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/from_ubjson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/from_ubjson.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/front.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/front.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/front.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/front.output: -------------------------------------------------------------------------------- 1 | true 2 | 17 3 | 23.42 4 | 1 5 | 1 6 | "Hello, world" 7 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get__PointerType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/get__PointerType.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get__PointerType.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get__ValueType_const.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/get_ptr.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_ptr.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_ptr.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/get_ptr.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/get_ref.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_ref.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_ref.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/get_ref.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/get_to.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_to.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/get_to.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/get_to.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/insert.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert.output: -------------------------------------------------------------------------------- 1 | 10 2 | [1,2,10,3,4] 3 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/insert__count.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__count.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__count.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/insert__count.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__ilist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/insert__ilist.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__ilist.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/insert__ilist.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__ilist.output: -------------------------------------------------------------------------------- 1 | 7 2 | [1,2,3,4,7,8,9] 3 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/insert__range.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__range.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/insert__range.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/insert__range.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/invalid_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/invalid_iterator.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_array.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_array.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_array.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_array.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_boolean.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_boolean.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_boolean.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_boolean.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_discarded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_discarded.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_discarded.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_discarded.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_discarded.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_null.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_null.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_null.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_null.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_number.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_number.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_number.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_number.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_number_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_number_float.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_number_float.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_number_integer.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_number_unsigned.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_object.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_object.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_object.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_object.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_primitive.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_primitive.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_primitive.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_primitive.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_string.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_string.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_string.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_string.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_structured.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_structured.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_structured.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/is_structured.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/is_structured.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/items.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/items.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/items.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/items.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/iterator_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/iterator_wrapper.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/iterator_wrapper.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/json_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/json_pointer.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/json_pointer.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/json_pointer.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/json_pointer.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/json_pointer__to_string.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/max_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/max_size.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/max_size.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/max_size.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/max_size.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/merge_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/merge_patch.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/merge_patch.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/merge_patch.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/merge_patch.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/meta.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/meta.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/meta.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/meta.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/object.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/object.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/object.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/object.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/object.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__ValueType.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__equal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/operator__equal.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__equal.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__equal__nullptr_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__greater.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__greaterequal.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__less.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/operator__less.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__less.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__lessequal.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__notequal.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__notequal__nullptr_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator__value_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator_deserialize.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operator_serialize.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorarray__key_type.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorarray__key_type_const.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorarray__key_type_const.output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorarray__size_type.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorarray__size_type_const.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorarray__size_type_const.output: -------------------------------------------------------------------------------- 1 | "third" 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorjson_pointer.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorjson_pointer_const.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/operatorjson_pointer_const.output: -------------------------------------------------------------------------------- 1 | 1 2 | "foo" 3 | [1,2] 4 | 2 5 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/other_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/other_error.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/other_error.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/other_error.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/other_error.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/other_error.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/out_of_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/out_of_range.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/out_of_range.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/out_of_range.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/out_of_range.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/parse__istream__parser_callback_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/parse__iteratortype__parser_callback_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/parse__string__parser_callback_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/parse_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/parse_error.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/parse_error.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/parse_error.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/parse_error.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/parse_error.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/patch.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/patch.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/patch.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/patch.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/push_back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/push_back.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/push_back.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/push_back.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/push_back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/push_back.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/push_back__initializer_list.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/push_back__object_t__value.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/rbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/rbegin.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/rbegin.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/rbegin.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/rend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/rend.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/rend.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/rend.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/sax_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/sax_parse.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/sax_parse.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/sax_parse.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/sax_parse.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/sax_parse.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/size.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/size.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/size.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/size.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__array_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/swap__array_t.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__array_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__array_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/swap__array_t.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__object_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/swap__object_t.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__object_t.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/swap__reference.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__reference.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__string_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/swap__string_t.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/swap__string_t.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/swap__string_t.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_bson.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_bson.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_bson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_bson.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_cbor.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_cbor.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_cbor.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_cbor.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_msgpack.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_msgpack.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_msgpack.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_msgpack.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_msgpack.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_ubjson.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_ubjson.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/to_ubjson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/to_ubjson.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/type.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/type.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/type.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/type_error.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type_error.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/type_error.link -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type_error.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/type_error.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/type_name.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type_name.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/type_name.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/type_name.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/unflatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/unflatten.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/unflatten.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/unflatten.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/unflatten.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/update.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/update.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/update.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/update.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/update__range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/update__range.cpp -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/update__range.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/examples/update__range.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/examples/update__range.output -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/faq.md -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/images/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/images/binary.png -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/images/callback_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/images/callback_events.png -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/images/range-begin-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/images/range-begin-end.svg -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/images/range-rbegin-rend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/images/range-rbegin-rend.svg -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/index.md -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/json.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/json.gif -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/scripts/git-update-ghpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/scripts/git-update-ghpages -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/scripts/send_to_wandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/scripts/send_to_wandbox.py -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/usages/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/usages/ios.png -------------------------------------------------------------------------------- /Sources/Vendor/json/doc/usages/macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/doc/usages/macos.png -------------------------------------------------------------------------------- /Sources/Vendor/json/src/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/json/src/json.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/COPYING -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/Doxyfile -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/SConstruct -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/changelog.md -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/cmake/CMakeHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/cmake/CMakeHelpers.cmake -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/docs/config.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/docs/config.dox -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/docs/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/docs/faq.dox -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/docs/getting_started.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/docs/getting_started.dox -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/docs/handlers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/docs/handlers.dox -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/docs/logging.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/docs/logging.dox -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/docs/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/docs/manual.css -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/docs/manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/docs/manual.dox -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/docs/tutorials.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/docs/tutorials.dox -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/examples/dev/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/examples/dev/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/examples/dev/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/examples/dev/main.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/readme.md -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/roadmap.md -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/connection/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/connection/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/endpoint/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/endpoint/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/endpoint/endpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/endpoint/endpoint.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/extension/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/extension/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/http/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/http/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/http/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/http/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/http/a.out -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/http/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/http/parser.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/http/parser_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/http/parser_perf.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/http/perf.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/http/perf.out -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/http/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/http/test.out -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/logger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/logger/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/logger/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/logger/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/logger/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/logger/basic.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/processors/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/processors/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/processors/hybi00.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/processors/hybi00.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/processors/hybi07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/processors/hybi07.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/processors/hybi08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/processors/hybi08.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/processors/hybi13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/processors/hybi13.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/random/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/random/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/random/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/random/none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/random/none.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/roles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/roles/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/roles/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/roles/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/roles/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/roles/client.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/roles/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/roles/server.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/transport/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/transport/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/utility/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/utility/SConscript -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/utility/close.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/utility/close.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/utility/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/utility/error.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/utility/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/utility/frame.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/utility/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/utility/sha1.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/utility/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/utility/uri.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/test/utility/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/test/utility/utilities.cpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/client.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/close.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/close.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/common/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/common/md5.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/connection.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/endpoint.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/error.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/frame.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/server.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/sha1/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/sha1/sha1.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/uri.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/utilities.hpp -------------------------------------------------------------------------------- /Sources/Vendor/websocketpp/websocketpp/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Vendor/websocketpp/websocketpp/version.hpp -------------------------------------------------------------------------------- /Sources/Windows/avionics.madjack.dcs.sdPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Windows/avionics.madjack.dcs.sdPlugin.sln -------------------------------------------------------------------------------- /Sources/Windows/avionics.madjack.dcs.sdPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Windows/avionics.madjack.dcs.sdPlugin.vcxproj -------------------------------------------------------------------------------- /Sources/Windows/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Windows/pch.cpp -------------------------------------------------------------------------------- /Sources/Windows/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/Windows/pch.h -------------------------------------------------------------------------------- /Sources/avionics.madjack.dcs.sdPlugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/avionics.madjack.dcs.sdPlugin/icon.png -------------------------------------------------------------------------------- /Sources/avionics.madjack.dcs.sdPlugin/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/avionics.madjack.dcs.sdPlugin/icon@2x.png -------------------------------------------------------------------------------- /Sources/avionics.madjack.dcs.sdPlugin/iconDCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/avionics.madjack.dcs.sdPlugin/iconDCS.png -------------------------------------------------------------------------------- /Sources/avionics.madjack.dcs.sdPlugin/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/avionics.madjack.dcs.sdPlugin/manifest.json -------------------------------------------------------------------------------- /Sources/avionics.madjack.dcs.sdPlugin/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/Sources/avionics.madjack.dcs.sdPlugin/pluginIcon.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toureiffel/streamdeck-dcs/HEAD/screenshot.png --------------------------------------------------------------------------------