├── .bzrignore ├── .clang-format ├── .gitignore ├── .gitmodules ├── .jenkins ├── aws-galera-4-fullbuild.groovy └── pr-galera-4.x-review.groovy ├── .travis.yml ├── .whitesource ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── CONTRIBUTOR_AGREEMENT.txt ├── COPYING ├── GALERA_VERSION ├── LICENSE ├── README ├── SConscript ├── SConstruct ├── asio ├── LICENSE_1_0.txt ├── asio.hpp └── asio │ ├── associated_allocator.hpp │ ├── associated_executor.hpp │ ├── async_result.hpp │ ├── awaitable.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 │ ├── co_spawn.hpp │ ├── completion_condition.hpp │ ├── compose.hpp │ ├── connect.hpp │ ├── coroutine.hpp │ ├── deadline_timer.hpp │ ├── defer.hpp │ ├── detached.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_function.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 │ ├── io_object_executor.hpp │ ├── io_object_impl.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 │ ├── non_const_lvalue.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 │ ├── 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 │ ├── high_resolution_timer.hpp │ ├── impl │ ├── awaitable.hpp │ ├── buffered_read_stream.hpp │ ├── buffered_write_stream.hpp │ ├── co_spawn.hpp │ ├── compose.hpp │ ├── connect.hpp │ ├── defer.hpp │ ├── detached.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 │ ├── redirect_error.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_awaitable.hpp │ ├── 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 │ ├── 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 │ ├── post.hpp │ ├── read.hpp │ ├── read_at.hpp │ ├── read_until.hpp │ ├── redirect_error.hpp │ ├── serial_port.hpp │ ├── serial_port_base.hpp │ ├── signal_set.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 │ ├── streambuf.hpp │ ├── system_context.hpp │ ├── system_error.hpp │ ├── system_executor.hpp │ ├── system_timer.hpp │ ├── this_coro.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_awaitable.hpp │ ├── use_future.hpp │ ├── uses_executor.hpp │ ├── version.hpp │ ├── wait_traits.hpp │ ├── windows │ ├── basic_object_handle.hpp │ ├── basic_overlapped_handle.hpp │ ├── basic_random_access_handle.hpp │ ├── basic_stream_handle.hpp │ ├── object_handle.hpp │ ├── overlapped_handle.hpp │ ├── overlapped_ptr.hpp │ ├── random_access_handle.hpp │ └── stream_handle.hpp │ ├── write.hpp │ ├── write_at.hpp │ └── yield.hpp ├── cmake ├── alignment.cmake ├── array.cmake ├── asan.cmake ├── asio.cmake ├── boost.cmake ├── check.cmake ├── common.cmake ├── compiler.cmake ├── coverage.cmake ├── crc32c.cmake ├── custom_boost.cmake ├── endian.cmake ├── maintainer_mode.cmake ├── memorycheck.cmake ├── os.cmake ├── package.cmake ├── shared_ptr.cmake ├── ssl.cmake ├── unordered.cmake └── version.cmake ├── common └── common.h ├── debian ├── README.Maintainer ├── changelog ├── compat ├── control ├── copyright ├── galera-4.docs ├── galera-4.install ├── galera-4.links ├── galera-arbitrator-4.garb.default ├── galera-arbitrator-4.garb.init ├── galera-arbitrator-4.garb.service ├── galera-arbitrator-4.install ├── galera-arbitrator-4.lintian-overrides ├── galera-arbitrator-4.manpages ├── gbp.conf ├── rules ├── source │ └── format └── upstream │ ├── metadata │ └── signing-key.asc ├── docs ├── LICENSE.OpenSSL └── README ├── galera ├── CMakeLists.txt ├── SConscript ├── src │ ├── CMakeLists.txt │ ├── SConscript │ ├── action_source.hpp │ ├── certification.cpp │ ├── certification.hpp │ ├── data_set.cpp │ ├── data_set.hpp │ ├── fsm.hpp │ ├── galera-sym.map │ ├── galera_common.hpp │ ├── galera_exception.hpp │ ├── galera_gcs.hpp │ ├── galera_info.cpp │ ├── galera_info.hpp │ ├── galera_service_thd.cpp │ ├── galera_service_thd.hpp │ ├── galera_view.cpp │ ├── galera_view.hpp │ ├── gcs_action_source.cpp │ ├── gcs_action_source.hpp │ ├── gcs_dummy.cpp │ ├── ist.cpp │ ├── ist.hpp │ ├── ist_proto.cpp │ ├── ist_proto.hpp │ ├── key_data.cpp │ ├── key_data.hpp │ ├── key_entry_ng.hpp │ ├── key_entry_os.cpp │ ├── key_entry_os.hpp │ ├── key_os.hpp │ ├── key_set.cpp │ ├── key_set.hpp │ ├── mapped_buffer.cpp │ ├── mapped_buffer.hpp │ ├── monitor.hpp │ ├── nbo.hpp │ ├── progress_callback.hpp │ ├── replicator.cpp │ ├── replicator.hpp │ ├── replicator_smm.cpp │ ├── replicator_smm.hpp │ ├── replicator_smm_params.cpp │ ├── replicator_smm_stats.cpp │ ├── replicator_str.cpp │ ├── saved_state.cpp │ ├── saved_state.hpp │ ├── trx_handle.cpp │ ├── trx_handle.hpp │ ├── write_set.cpp │ ├── write_set.hpp │ ├── write_set_ng.cpp │ ├── write_set_ng.hpp │ ├── wsdb.cpp │ ├── wsdb.hpp │ ├── wsrep_params.cpp │ ├── wsrep_params.hpp │ └── wsrep_provider.cpp └── tests │ ├── CMakeLists.txt │ ├── SConscript │ ├── certification_check.cpp │ ├── data_set_check.cpp │ ├── defaults_check.cpp │ ├── galera_check.cpp │ ├── ist_check.cpp │ ├── key_set_check.cpp │ ├── progress_check.cpp │ ├── saved_state_check.cpp │ ├── service_thd_check.cpp │ ├── test_key.hpp │ ├── trx_handle_check.cpp │ ├── write_set_check.cpp │ └── write_set_ng_check.cpp ├── galerautils ├── CMakeLists.txt ├── ChangeLog ├── README ├── SConscript ├── doc │ └── Doxyfile ├── src │ ├── CMakeLists.txt │ ├── SConscript │ ├── galerautils.h │ ├── gu_abort.c │ ├── gu_abort.h │ ├── gu_alloc.cpp │ ├── gu_alloc.hpp │ ├── gu_arch.h │ ├── gu_array.hpp │ ├── gu_asio.cpp │ ├── gu_asio.hpp │ ├── gu_asio_datagram.cpp │ ├── gu_asio_datagram.hpp │ ├── gu_asio_debug.hpp │ ├── gu_asio_error_category.hpp │ ├── gu_asio_io_service_impl.hpp │ ├── gu_asio_ip_address_impl.hpp │ ├── gu_asio_socket_util.hpp │ ├── gu_asio_ssl.hpp │ ├── gu_asio_stream_engine.cpp │ ├── gu_asio_stream_engine.hpp │ ├── gu_asio_stream_react.cpp │ ├── gu_asio_stream_react.hpp │ ├── gu_asio_utils.hpp │ ├── gu_assert.h │ ├── gu_assert.hpp │ ├── gu_atomic.h │ ├── gu_atomic.hpp │ ├── gu_backtrace.c │ ├── gu_backtrace.h │ ├── gu_backtrace.hpp │ ├── gu_buf.h │ ├── gu_buf.hpp │ ├── gu_buffer.cpp │ ├── gu_buffer.hpp │ ├── gu_byteswap.h │ ├── gu_byteswap.hpp │ ├── gu_compiler.hpp │ ├── gu_cond.hpp │ ├── gu_conf.h │ ├── gu_config.cpp │ ├── gu_config.h │ ├── gu_config.hpp │ ├── gu_convert.hpp │ ├── gu_crc.hpp │ ├── gu_crc32c.c │ ├── gu_crc32c.h │ ├── gu_crc32c_arm64.c │ ├── gu_crc32c_x86.c │ ├── gu_datetime.cpp │ ├── gu_datetime.hpp │ ├── gu_dbug.c │ ├── gu_dbug.h │ ├── gu_debug_sync.cpp │ ├── gu_debug_sync.hpp │ ├── gu_deqmap.hpp │ ├── gu_digest.hpp │ ├── gu_disable_non_virtual_dtor.hpp │ ├── gu_enable_non_virtual_dtor.hpp │ ├── gu_errno.h │ ├── gu_event_service.cpp │ ├── gu_event_service.hpp │ ├── gu_exception.cpp │ ├── gu_exception.hpp │ ├── gu_fdesc.cpp │ ├── gu_fdesc.hpp │ ├── gu_fifo.c │ ├── gu_fifo.h │ ├── gu_fnv.h │ ├── gu_fnv_bench.c │ ├── gu_gtid.cpp │ ├── gu_gtid.hpp │ ├── gu_hash.h │ ├── gu_hexdump.c │ ├── gu_hexdump.cpp │ ├── gu_hexdump.h │ ├── gu_hexdump.hpp │ ├── gu_histogram.cpp │ ├── gu_histogram.hpp │ ├── gu_init.c │ ├── gu_init.h │ ├── gu_int128.h │ ├── gu_inttypes.hpp │ ├── gu_limits.c │ ├── gu_limits.h │ ├── gu_lock.hpp │ ├── gu_lock_step.c │ ├── gu_lock_step.h │ ├── gu_log.c │ ├── gu_log.h │ ├── gu_logger.cpp │ ├── gu_logger.hpp │ ├── gu_macros.h │ ├── gu_macros.hpp │ ├── gu_mem.c │ ├── gu_mem.h │ ├── gu_mem_pool.hpp │ ├── gu_mmap.cpp │ ├── gu_mmap.hpp │ ├── gu_mmh3.c │ ├── gu_mmh3.h │ ├── gu_monitor.hpp │ ├── gu_mutex.hpp │ ├── gu_progress.hpp │ ├── gu_rand.c │ ├── gu_rand.h │ ├── gu_regex.cpp │ ├── gu_regex.hpp │ ├── gu_reserved_container.hpp │ ├── gu_resolver.cpp │ ├── gu_resolver.hpp │ ├── gu_rset.cpp │ ├── gu_rset.hpp │ ├── gu_serializable.hpp │ ├── gu_serialize.cpp │ ├── gu_serialize.hpp │ ├── gu_shared_ptr.hpp │ ├── gu_signals.cpp │ ├── gu_signals.hpp │ ├── gu_spooky.c │ ├── gu_spooky.h │ ├── gu_stats.cpp │ ├── gu_stats.hpp │ ├── gu_status.hpp │ ├── gu_str.h │ ├── gu_string.hpp │ ├── gu_string_utils.cpp │ ├── gu_string_utils.hpp │ ├── gu_system.h │ ├── gu_thread.cpp │ ├── gu_thread.hpp │ ├── gu_threads.c │ ├── gu_threads.h │ ├── gu_throw.hpp │ ├── gu_time.c │ ├── gu_time.h │ ├── gu_to.c │ ├── gu_to.h │ ├── gu_types.h │ ├── gu_types.hpp │ ├── gu_unordered.hpp │ ├── gu_uri.cpp │ ├── gu_uri.hpp │ ├── gu_utils++.cpp │ ├── gu_utils.c │ ├── gu_utils.h │ ├── gu_utils.hpp │ ├── gu_uuid.c │ ├── gu_uuid.cpp │ ├── gu_uuid.h │ ├── gu_uuid.hpp │ ├── gu_vector.hpp │ ├── gu_vlq.cpp │ └── gu_vlq.hpp └── tests │ ├── CMakeLists.txt │ ├── SConscript │ ├── avalanche.c │ ├── copy_vs_assignment.cpp │ ├── crc32c_bench.cpp │ ├── deqmap_bench.cpp │ ├── gu_alloc_test.cpp │ ├── gu_alloc_test.hpp │ ├── gu_asio_test.cpp │ ├── gu_asio_test.hpp │ ├── gu_atomic_test.cpp │ ├── gu_atomic_test.hpp │ ├── gu_bswap_test.c │ ├── gu_bswap_test.h │ ├── gu_config_test.cpp │ ├── gu_config_test.hpp │ ├── gu_crc32c_test.c │ ├── gu_crc32c_test.h │ ├── gu_datetime_test.cpp │ ├── gu_datetime_test.hpp │ ├── gu_dbug_test.c │ ├── gu_dbug_test.h │ ├── gu_deqmap_test.cpp │ ├── gu_deqmap_test.hpp │ ├── gu_digest_test.cpp │ ├── gu_digest_test.hpp │ ├── gu_fifo_test.c │ ├── gu_fifo_test.h │ ├── gu_fnv_test.c │ ├── gu_fnv_test.h │ ├── gu_gtid_test.cpp │ ├── gu_gtid_test.hpp │ ├── gu_hash_test.c │ ├── gu_hash_test.h │ ├── gu_histogram_test.cpp │ ├── gu_histogram_test.hpp │ ├── gu_lock_step_test.c │ ├── gu_lock_step_test.h │ ├── gu_mem_pool_test.cpp │ ├── gu_mem_pool_test.hpp │ ├── gu_mem_test.c │ ├── gu_mem_test.h │ ├── gu_mmh3_test.c │ ├── gu_mmh3_test.h │ ├── gu_net_test.cpp │ ├── gu_net_test.hpp │ ├── gu_progress_test.cpp │ ├── gu_rset_test.cpp │ ├── gu_rset_test.hpp │ ├── gu_shared_ptr_test.cpp │ ├── gu_shared_ptr_test.hpp │ ├── gu_spooky_test.c │ ├── gu_spooky_test.h │ ├── gu_stats_test.cpp │ ├── gu_stats_test.hpp │ ├── gu_str_test.c │ ├── gu_str_test.h │ ├── gu_string_test.cpp │ ├── gu_string_test.hpp │ ├── gu_string_utils_test.cpp │ ├── gu_string_utils_test.hpp │ ├── gu_tests++.cpp │ ├── gu_tests++.hpp │ ├── gu_tests.c │ ├── gu_thread_test.cpp │ ├── gu_thread_test.hpp │ ├── gu_time_test.c │ ├── gu_time_test.h │ ├── gu_to_test.c │ ├── gu_uri_test.cpp │ ├── gu_uri_test.hpp │ ├── gu_utils_test++.cpp │ ├── gu_utils_test++.hpp │ ├── gu_utils_test.c │ ├── gu_utils_test.h │ ├── gu_uuid_test.c │ ├── gu_uuid_test.h │ ├── gu_vector_test.cpp │ ├── gu_vector_test.hpp │ ├── gu_vlq_test.cpp │ └── gu_vlq_test.hpp ├── garb ├── CMakeLists.txt ├── SConscript ├── files │ ├── freebsd │ │ └── garb.sh │ ├── garb-systemd │ ├── garb.cnf │ ├── garb.service │ └── garb.sh ├── garb_config.cpp ├── garb_config.hpp ├── garb_gcs.cpp ├── garb_gcs.hpp ├── garb_logger.cpp ├── garb_logger.hpp ├── garb_main.cpp ├── garb_recv_loop.cpp └── garb_recv_loop.hpp ├── gcache ├── AUTHORS ├── CMakeLists.txt ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── SConscript ├── bootstrap.sh ├── configure.ac ├── src │ ├── CMakeLists.txt │ ├── GCache.cpp │ ├── GCache.hpp │ ├── GCache_memops.cpp │ ├── GCache_seqno.cpp │ ├── Makefile.am │ ├── SConscript │ ├── gcache.h │ ├── gcache_bh.hpp │ ├── gcache_limits.hpp │ ├── gcache_mem_store.cpp │ ├── gcache_mem_store.hpp │ ├── gcache_memops.hpp │ ├── gcache_page.cpp │ ├── gcache_page.hpp │ ├── gcache_page_store.cpp │ ├── gcache_page_store.hpp │ ├── gcache_params.cpp │ ├── gcache_rb_store.cpp │ ├── gcache_rb_store.hpp │ ├── gcache_seqno.hpp │ ├── gcache_types.hpp │ └── test.cpp └── tests │ ├── CMakeLists.txt │ ├── SConscript │ ├── gcache_mem_test.cpp │ ├── gcache_mem_test.hpp │ ├── gcache_page_test.cpp │ ├── gcache_page_test.hpp │ ├── gcache_rb_test.cpp │ ├── gcache_rb_test.hpp │ ├── gcache_tests.cpp │ ├── gcache_tests.hpp │ ├── gcache_top_test.cpp │ └── gcache_top_test.hpp ├── gcomm ├── CMakeLists.txt ├── SConscript ├── doc │ └── Doxyfile ├── src │ ├── CMakeLists.txt │ ├── SConscript │ ├── asio_protonet.cpp │ ├── asio_protonet.hpp │ ├── asio_tcp.cpp │ ├── asio_tcp.hpp │ ├── asio_udp.cpp │ ├── asio_udp.hpp │ ├── conf.cpp │ ├── datagram.cpp │ ├── defaults.cpp │ ├── defaults.hpp │ ├── evs_consensus.cpp │ ├── evs_consensus.hpp │ ├── evs_input_map2.cpp │ ├── evs_input_map2.hpp │ ├── evs_message2.cpp │ ├── evs_message2.hpp │ ├── evs_node.cpp │ ├── evs_node.hpp │ ├── evs_proto.cpp │ ├── evs_proto.hpp │ ├── evs_seqno.hpp │ ├── fair_send_queue.hpp │ ├── gcomm │ │ ├── common.hpp │ │ ├── conf.hpp │ │ ├── datagram.hpp │ │ ├── exception.hpp │ │ ├── map.hpp │ │ ├── order.hpp │ │ ├── protolay.hpp │ │ ├── protonet.hpp │ │ ├── protostack.hpp │ │ ├── transport.hpp │ │ ├── types.hpp │ │ ├── util.hpp │ │ ├── uuid.hpp │ │ └── view.hpp │ ├── gmcast.cpp │ ├── gmcast.hpp │ ├── gmcast_link.hpp │ ├── gmcast_message.hpp │ ├── gmcast_node.hpp │ ├── gmcast_proto.cpp │ ├── gmcast_proto.hpp │ ├── pc.cpp │ ├── pc.hpp │ ├── pc_message.hpp │ ├── pc_proto.cpp │ ├── pc_proto.hpp │ ├── protocol_version.hpp │ ├── protonet.cpp │ ├── protostack.cpp │ ├── socket.cpp │ ├── socket.hpp │ ├── transport.cpp │ ├── uuid.cpp │ └── view.cpp └── test │ ├── CMakeLists.txt │ ├── SConscript │ ├── check_evs2.cpp │ ├── check_fair_send_queue.cpp │ ├── check_gcomm.cpp │ ├── check_gcomm.hpp │ ├── check_gcomm_nondet.cpp │ ├── check_gmcast.cpp │ ├── check_gmcast_nondet.cpp │ ├── check_pc.cpp │ ├── check_pc_nondet.cpp │ ├── check_templ.hpp │ ├── check_trace.cpp │ ├── check_trace.hpp │ ├── check_types.cpp │ ├── check_util.cpp │ ├── check_util_nondet.cpp │ └── ssl_test.cpp ├── gcs ├── CMakeLists.txt ├── ChangeLog ├── README ├── SConscript ├── doc │ ├── Coding_conventions.txt │ ├── Doxyfile │ ├── GCS_Architecture.odt │ ├── GCS_Architecture.png │ └── GCS_connection_states.txt └── src │ ├── CMakeLists.txt │ ├── SConscript │ ├── gcs.cpp │ ├── gcs.hpp │ ├── gcs_act.hpp │ ├── gcs_act_cchange.cpp │ ├── gcs_act_proto.cpp │ ├── gcs_act_proto.hpp │ ├── gcs_backend.cpp │ ├── gcs_backend.hpp │ ├── gcs_code_msg.cpp │ ├── gcs_code_msg.hpp │ ├── gcs_comp_msg.cpp │ ├── gcs_comp_msg.hpp │ ├── gcs_conf.cpp │ ├── gcs_core.cpp │ ├── gcs_core.hpp │ ├── gcs_defrag.cpp │ ├── gcs_defrag.hpp │ ├── gcs_dummy.cpp │ ├── gcs_dummy.hpp │ ├── gcs_error.cpp │ ├── gcs_error.hpp │ ├── gcs_fc.cpp │ ├── gcs_fc.hpp │ ├── gcs_fifo_lite.cpp │ ├── gcs_fifo_lite.hpp │ ├── gcs_gcache.hpp │ ├── gcs_gcomm.cpp │ ├── gcs_gcomm.hpp │ ├── gcs_group.cpp │ ├── gcs_group.hpp │ ├── gcs_msg_type.cpp │ ├── gcs_msg_type.hpp │ ├── gcs_node.cpp │ ├── gcs_node.hpp │ ├── gcs_params.cpp │ ├── gcs_params.hpp │ ├── gcs_priv.hpp │ ├── gcs_recv_msg.hpp │ ├── gcs_seqno.hpp │ ├── gcs_sm.cpp │ ├── gcs_sm.hpp │ ├── gcs_spread.cpp │ ├── gcs_spread.hpp │ ├── gcs_state_msg.cpp │ ├── gcs_state_msg.hpp │ ├── gcs_test.cpp │ ├── gcs_test.hpp │ ├── gcs_test.sh │ └── unit_tests │ ├── CMakeLists.txt │ ├── SConscript │ ├── gcs_act_cchange_test.cpp │ ├── gcs_act_cchange_test.hpp │ ├── gcs_backend_test.cpp │ ├── gcs_backend_test.hpp │ ├── gcs_comp_test.cpp │ ├── gcs_comp_test.hpp │ ├── gcs_core_test.cpp │ ├── gcs_core_test.hpp │ ├── gcs_defrag_test.cpp │ ├── gcs_defrag_test.hpp │ ├── gcs_fc_test.cpp │ ├── gcs_fc_test.hpp │ ├── gcs_fifo_test.cpp │ ├── gcs_fifo_test.hpp │ ├── gcs_group_test.cpp │ ├── gcs_group_test.hpp │ ├── gcs_memb_test.cpp │ ├── gcs_memb_test.hpp │ ├── gcs_node_test.cpp │ ├── gcs_node_test.hpp │ ├── gcs_proto_test.cpp │ ├── gcs_proto_test.hpp │ ├── gcs_sm_test.cpp │ ├── gcs_sm_test.hpp │ ├── gcs_state_msg_test.cpp │ ├── gcs_state_msg_test.hpp │ ├── gcs_test_utils.cpp │ ├── gcs_test_utils.hpp │ └── gcs_tests.cpp ├── man ├── garb-systemd.8 └── garbd.8 ├── scripts ├── build.sh ├── docker │ ├── Dockerfile │ ├── build.sh │ └── entrypoint.sh ├── mysql │ ├── LICENSE │ ├── LICENSE.mysql │ ├── QUICK_START │ ├── README │ ├── build.sh │ ├── centos │ │ ├── init.centos │ │ ├── init.oracle │ │ ├── my.cnf │ │ ├── mysql-wsrep.list │ │ └── mysqld_safe │ ├── debian │ │ ├── 5.1.list │ │ ├── 5.5.list │ │ ├── 5.6.list │ │ ├── common.list │ │ ├── debian-start.inc.sh │ │ ├── echo_stderr │ │ ├── etc │ │ │ ├── init.d │ │ │ │ └── mysql │ │ │ ├── logcheck │ │ │ │ ├── ignore.d.paranoid │ │ │ │ │ └── mysql-server-5_1 │ │ │ │ ├── ignore.d.server │ │ │ │ │ └── mysql-server-5_1 │ │ │ │ └── ignore.d.workstation │ │ │ │ │ └── mysql-server-5_1 │ │ │ ├── logrotate.d │ │ │ │ └── mysql-server │ │ │ └── mysql │ │ │ │ ├── conf.d │ │ │ │ └── mysqld_safe_syslog.cnf │ │ │ │ └── debian-start │ │ ├── my.cnf │ │ ├── mysql │ │ ├── mysql-server-wsrep.list │ │ ├── mysqld_safe-5.1 │ │ └── mysqld_safe-5.5 │ ├── freebsd.sh │ ├── freebsd │ │ ├── LICENSE │ │ ├── catalog.mk │ │ ├── client-comment │ │ ├── client-descr │ │ ├── client-ldconfig │ │ ├── client-message │ │ ├── client-mtree │ │ ├── client-plist │ │ ├── mysql-server.sh │ │ ├── server-comment │ │ ├── server-descr │ │ ├── server-message │ │ ├── server-mtree │ │ └── server-plist │ ├── get_patch.sh │ ├── init_db.sh │ ├── mariadb_var_10.4.tgz │ ├── my-5.1.cnf │ ├── my-5.5.cnf │ ├── mysql-galera │ ├── mysql-plain │ ├── mysql_var_5.5.tgz │ ├── mysql_var_5.6.tgz │ ├── mysql_var_5.7.tgz │ ├── rpm.sh │ └── rpm_wc.sh ├── openrep │ ├── common │ ├── configure │ ├── demote │ ├── flush │ ├── halt │ ├── kill │ ├── not_supported │ ├── offline │ ├── online │ ├── plugin.cnf │ ├── prepare │ ├── promote │ ├── provision │ ├── redundant │ ├── release │ ├── service │ ├── status │ ├── stop │ └── waitevent └── packages │ ├── CMakeLists.txt │ ├── README │ ├── README-MySQL │ ├── codership-galera.spec.in │ ├── debian │ ├── empty │ ├── freebsd.sh │ ├── freebsd │ ├── LICENSE │ ├── catalog.mk │ ├── galera-comment │ ├── galera-descr │ ├── galera-ldconfig │ ├── galera-message │ ├── galera-mtree │ └── galera-plist │ ├── galera-common.inc │ ├── galera-dev.list │ ├── galera-obs.spec │ ├── galera.list │ └── rpm.sh ├── tests ├── conf │ ├── README.md │ ├── bundle-galera-server-1.pem │ ├── bundle-galera-server-2.pem │ ├── bundle-galera-server-3.pem │ ├── cluster.conf.tmpl │ ├── common_my.cnf.tmpl │ ├── dummy.conf │ ├── galera-ca.pem │ ├── galera-int.pem │ ├── galera-server-1.key │ ├── galera-server-1.pem │ ├── galera-server-2.key │ ├── galera-server-2.pem │ ├── galera-server-3.key │ ├── galera-server-3.pem │ ├── galera_ca.pem │ ├── galera_cert.pem │ ├── galera_key.pem │ ├── gen-cert-chain.sh │ ├── main.conf │ ├── my.cnf.1.tmpl │ ├── my.cnf.2.tmpl │ ├── my.cnf.3.tmpl │ ├── nodes.conf.tmpl │ └── sqlgen.conf ├── regressions │ ├── lp1003929 │ │ └── run.sh │ ├── lp1013978 │ │ └── run.sh │ ├── lp1019473 │ │ └── run.sh │ ├── lp1026181 │ │ └── run.sh │ ├── lp1055961 │ │ └── run.sh │ ├── lp1073220 │ │ └── run.sh │ ├── lp1089490 │ │ └── run.sh │ ├── lp1100496 │ │ └── run.sh │ ├── lp1130888 │ │ └── run.sh │ ├── lp1179361 │ │ └── run.sh │ ├── lp1184034 │ │ └── run.sh │ ├── lp1206129 │ │ └── run.sh │ ├── lp1208493 │ │ └── run.sh │ ├── lp1255964 │ │ └── run.sh │ ├── lp1274199 │ │ └── run.sh │ ├── lp1284803 │ │ └── run.sh │ ├── lp1299116 │ │ └── run.sh │ ├── lp1314854 │ │ └── run.sh │ ├── lp518749 │ │ ├── mysqlfs.sql │ │ └── run.sh │ ├── lp587170 │ │ └── run.sh │ ├── lp847353 │ │ └── run.sh │ ├── lp861212 │ │ └── run.sh │ ├── lp900816 │ │ └── run.sh │ ├── lp909155 │ │ └── run.sh │ ├── lp917416 │ │ └── run.sh │ ├── lp922757 │ │ └── run.sh │ ├── lp928150 │ │ └── run.sh │ ├── lp930221 │ │ └── run.sh │ ├── lp959512 │ │ └── run.sh │ ├── lp963734 │ │ └── run.sh │ ├── lp966950 │ │ └── run.sh │ ├── lp967134 │ │ └── run.sh │ ├── lp970714 │ │ ├── lp.sql │ │ └── run.sh │ ├── lp994579 │ │ └── run.sh │ ├── run-all.sh │ ├── t281 │ │ └── run.sh │ └── t285 │ │ └── run.sh ├── run.sh ├── run_sqlgen.sh ├── run_test_set.sh ├── scripts │ ├── README │ ├── action.sh │ ├── command.sh │ ├── install.sh │ ├── jobs.sh │ ├── kill.sh │ ├── misc.sh │ ├── remove.sh │ └── signal.sh ├── t │ └── dummy.sh ├── tap │ ├── README │ ├── run_test_set.pl │ └── tap-functions ├── test_causal │ ├── SConstruct │ ├── causal.cpp │ ├── causal.sh │ └── hard_causal.sh ├── test_cppcheck │ └── run.sh ├── test_dbt2 │ └── run.sh ├── test_dots │ └── run.sh ├── test_drupal │ ├── README │ ├── drupal.jmx │ ├── drupal5.diff │ ├── drupal6.10.tgz │ ├── drupal6.jmx │ ├── drupal6.sql.gz │ ├── drupal6_8080.jmx │ ├── drupaldb.sql.gz │ ├── loaddb.sh │ └── run.sh ├── test_insert │ ├── create_big.sql │ ├── create_small.sql │ ├── insert_big.sql │ ├── insert_small.sql │ └── run.sh ├── test_memory │ └── run.sh ├── test_mtr │ ├── innodb.suite │ └── run.sh ├── test_overhead │ └── run.sh ├── test_pc_recovery │ ├── README │ └── run.sh ├── test_seesaw │ ├── README │ ├── run.sh │ └── sysbench.sh ├── test_segmentation │ └── run.sh ├── test_sqlgen │ └── run.sh ├── test_startstop │ └── run.sh ├── test_stopcont │ ├── README │ └── run.sh └── test_upgrade │ ├── README │ └── run.sh └── wsrep └── tests ├── CMakeLists.txt ├── SConscript └── wsrep_loader_test.c /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/.bzrignore -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/.travis.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/.whitesource -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /CONTRIBUTOR_AGREEMENT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/CONTRIBUTOR_AGREEMENT.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/COPYING -------------------------------------------------------------------------------- /GALERA_VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/GALERA_VERSION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/README -------------------------------------------------------------------------------- /SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/SConscript -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/SConstruct -------------------------------------------------------------------------------- /asio/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/LICENSE_1_0.txt -------------------------------------------------------------------------------- /asio/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio.hpp -------------------------------------------------------------------------------- /asio/asio/associated_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/associated_executor.hpp -------------------------------------------------------------------------------- /asio/asio/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/async_result.hpp -------------------------------------------------------------------------------- /asio/asio/awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/awaitable.hpp -------------------------------------------------------------------------------- /asio/asio/basic_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/basic_io_object.hpp -------------------------------------------------------------------------------- /asio/asio/basic_raw_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/basic_raw_socket.hpp -------------------------------------------------------------------------------- /asio/asio/basic_serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/basic_serial_port.hpp -------------------------------------------------------------------------------- /asio/asio/basic_signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/basic_signal_set.hpp -------------------------------------------------------------------------------- /asio/asio/basic_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/basic_socket.hpp -------------------------------------------------------------------------------- /asio/asio/basic_stream_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/basic_stream_socket.hpp -------------------------------------------------------------------------------- /asio/asio/basic_streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/basic_streambuf.hpp -------------------------------------------------------------------------------- /asio/asio/basic_streambuf_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/basic_streambuf_fwd.hpp -------------------------------------------------------------------------------- /asio/asio/bind_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/bind_executor.hpp -------------------------------------------------------------------------------- /asio/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/buffer.hpp -------------------------------------------------------------------------------- /asio/asio/buffered_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/buffered_stream.hpp -------------------------------------------------------------------------------- /asio/asio/buffered_stream_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/buffered_stream_fwd.hpp -------------------------------------------------------------------------------- /asio/asio/buffers_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/buffers_iterator.hpp -------------------------------------------------------------------------------- /asio/asio/co_spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/co_spawn.hpp -------------------------------------------------------------------------------- /asio/asio/compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/compose.hpp -------------------------------------------------------------------------------- /asio/asio/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/connect.hpp -------------------------------------------------------------------------------- /asio/asio/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/coroutine.hpp -------------------------------------------------------------------------------- /asio/asio/deadline_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/deadline_timer.hpp -------------------------------------------------------------------------------- /asio/asio/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/defer.hpp -------------------------------------------------------------------------------- /asio/asio/detached.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detached.hpp -------------------------------------------------------------------------------- /asio/asio/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/array.hpp -------------------------------------------------------------------------------- /asio/asio/detail/array_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/array_fwd.hpp -------------------------------------------------------------------------------- /asio/asio/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/assert.hpp -------------------------------------------------------------------------------- /asio/asio/detail/atomic_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/atomic_count.hpp -------------------------------------------------------------------------------- /asio/asio/detail/bind_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/bind_handler.hpp -------------------------------------------------------------------------------- /asio/asio/detail/call_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/call_stack.hpp -------------------------------------------------------------------------------- /asio/asio/detail/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/chrono.hpp -------------------------------------------------------------------------------- /asio/asio/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/config.hpp -------------------------------------------------------------------------------- /asio/asio/detail/cstddef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/cstddef.hpp -------------------------------------------------------------------------------- /asio/asio/detail/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/cstdint.hpp -------------------------------------------------------------------------------- /asio/asio/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/event.hpp -------------------------------------------------------------------------------- /asio/asio/detail/executor_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/executor_op.hpp -------------------------------------------------------------------------------- /asio/asio/detail/fenced_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/fenced_block.hpp -------------------------------------------------------------------------------- /asio/asio/detail/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/functional.hpp -------------------------------------------------------------------------------- /asio/asio/detail/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/future.hpp -------------------------------------------------------------------------------- /asio/asio/detail/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/global.hpp -------------------------------------------------------------------------------- /asio/asio/detail/handler_work.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/handler_work.hpp -------------------------------------------------------------------------------- /asio/asio/detail/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/hash_map.hpp -------------------------------------------------------------------------------- /asio/asio/detail/io_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/io_control.hpp -------------------------------------------------------------------------------- /asio/asio/detail/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/is_executor.hpp -------------------------------------------------------------------------------- /asio/asio/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/limits.hpp -------------------------------------------------------------------------------- /asio/asio/detail/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/memory.hpp -------------------------------------------------------------------------------- /asio/asio/detail/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/mutex.hpp -------------------------------------------------------------------------------- /asio/asio/detail/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/noncopyable.hpp -------------------------------------------------------------------------------- /asio/asio/detail/null_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/null_event.hpp -------------------------------------------------------------------------------- /asio/asio/detail/null_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/null_global.hpp -------------------------------------------------------------------------------- /asio/asio/detail/null_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/null_mutex.hpp -------------------------------------------------------------------------------- /asio/asio/detail/null_reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/null_reactor.hpp -------------------------------------------------------------------------------- /asio/asio/detail/null_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/null_thread.hpp -------------------------------------------------------------------------------- /asio/asio/detail/null_tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/null_tss_ptr.hpp -------------------------------------------------------------------------------- /asio/asio/detail/object_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/object_pool.hpp -------------------------------------------------------------------------------- /asio/asio/detail/op_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/op_queue.hpp -------------------------------------------------------------------------------- /asio/asio/detail/operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/operation.hpp -------------------------------------------------------------------------------- /asio/asio/detail/pop_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/pop_options.hpp -------------------------------------------------------------------------------- /asio/asio/detail/posix_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/posix_event.hpp -------------------------------------------------------------------------------- /asio/asio/detail/posix_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/posix_global.hpp -------------------------------------------------------------------------------- /asio/asio/detail/posix_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/posix_mutex.hpp -------------------------------------------------------------------------------- /asio/asio/detail/posix_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/posix_thread.hpp -------------------------------------------------------------------------------- /asio/asio/detail/push_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/push_options.hpp -------------------------------------------------------------------------------- /asio/asio/detail/reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/reactor.hpp -------------------------------------------------------------------------------- /asio/asio/detail/reactor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/reactor_fwd.hpp -------------------------------------------------------------------------------- /asio/asio/detail/reactor_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/reactor_op.hpp -------------------------------------------------------------------------------- /asio/asio/detail/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/regex_fwd.hpp -------------------------------------------------------------------------------- /asio/asio/detail/resolve_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/resolve_op.hpp -------------------------------------------------------------------------------- /asio/asio/detail/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/scheduler.hpp -------------------------------------------------------------------------------- /asio/asio/detail/scoped_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/scoped_lock.hpp -------------------------------------------------------------------------------- /asio/asio/detail/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/scoped_ptr.hpp -------------------------------------------------------------------------------- /asio/asio/detail/signal_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/signal_init.hpp -------------------------------------------------------------------------------- /asio/asio/detail/signal_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/signal_op.hpp -------------------------------------------------------------------------------- /asio/asio/detail/socket_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/socket_ops.hpp -------------------------------------------------------------------------------- /asio/asio/detail/socket_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/socket_types.hpp -------------------------------------------------------------------------------- /asio/asio/detail/static_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/static_mutex.hpp -------------------------------------------------------------------------------- /asio/asio/detail/std_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/std_event.hpp -------------------------------------------------------------------------------- /asio/asio/detail/std_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/std_global.hpp -------------------------------------------------------------------------------- /asio/asio/detail/std_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/std_mutex.hpp -------------------------------------------------------------------------------- /asio/asio/detail/std_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/std_thread.hpp -------------------------------------------------------------------------------- /asio/asio/detail/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/string_view.hpp -------------------------------------------------------------------------------- /asio/asio/detail/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/thread.hpp -------------------------------------------------------------------------------- /asio/asio/detail/thread_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/thread_group.hpp -------------------------------------------------------------------------------- /asio/asio/detail/throw_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/throw_error.hpp -------------------------------------------------------------------------------- /asio/asio/detail/timer_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/timer_queue.hpp -------------------------------------------------------------------------------- /asio/asio/detail/tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/tss_ptr.hpp -------------------------------------------------------------------------------- /asio/asio/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/type_traits.hpp -------------------------------------------------------------------------------- /asio/asio/detail/wait_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/wait_handler.hpp -------------------------------------------------------------------------------- /asio/asio/detail/wait_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/wait_op.hpp -------------------------------------------------------------------------------- /asio/asio/detail/win_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/win_event.hpp -------------------------------------------------------------------------------- /asio/asio/detail/win_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/win_global.hpp -------------------------------------------------------------------------------- /asio/asio/detail/win_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/win_mutex.hpp -------------------------------------------------------------------------------- /asio/asio/detail/win_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/win_thread.hpp -------------------------------------------------------------------------------- /asio/asio/detail/win_tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/win_tss_ptr.hpp -------------------------------------------------------------------------------- /asio/asio/detail/wince_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/wince_thread.hpp -------------------------------------------------------------------------------- /asio/asio/detail/winrt_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/winrt_utils.hpp -------------------------------------------------------------------------------- /asio/asio/detail/winsock_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/detail/winsock_init.hpp -------------------------------------------------------------------------------- /asio/asio/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/dispatch.hpp -------------------------------------------------------------------------------- /asio/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/error.hpp -------------------------------------------------------------------------------- /asio/asio/error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/error_code.hpp -------------------------------------------------------------------------------- /asio/asio/execution_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/execution_context.hpp -------------------------------------------------------------------------------- /asio/asio/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/executor.hpp -------------------------------------------------------------------------------- /asio/asio/executor_work_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/executor_work_guard.hpp -------------------------------------------------------------------------------- /asio/asio/handler_alloc_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/handler_alloc_hook.hpp -------------------------------------------------------------------------------- /asio/asio/handler_invoke_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/handler_invoke_hook.hpp -------------------------------------------------------------------------------- /asio/asio/impl/awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/awaitable.hpp -------------------------------------------------------------------------------- /asio/asio/impl/co_spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/co_spawn.hpp -------------------------------------------------------------------------------- /asio/asio/impl/compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/compose.hpp -------------------------------------------------------------------------------- /asio/asio/impl/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/connect.hpp -------------------------------------------------------------------------------- /asio/asio/impl/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/defer.hpp -------------------------------------------------------------------------------- /asio/asio/impl/detached.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/detached.hpp -------------------------------------------------------------------------------- /asio/asio/impl/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/dispatch.hpp -------------------------------------------------------------------------------- /asio/asio/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/error.ipp -------------------------------------------------------------------------------- /asio/asio/impl/error_code.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/error_code.ipp -------------------------------------------------------------------------------- /asio/asio/impl/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/executor.hpp -------------------------------------------------------------------------------- /asio/asio/impl/executor.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/executor.ipp -------------------------------------------------------------------------------- /asio/asio/impl/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/io_context.hpp -------------------------------------------------------------------------------- /asio/asio/impl/io_context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/io_context.ipp -------------------------------------------------------------------------------- /asio/asio/impl/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/post.hpp -------------------------------------------------------------------------------- /asio/asio/impl/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/read.hpp -------------------------------------------------------------------------------- /asio/asio/impl/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/read_at.hpp -------------------------------------------------------------------------------- /asio/asio/impl/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/read_until.hpp -------------------------------------------------------------------------------- /asio/asio/impl/redirect_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/redirect_error.hpp -------------------------------------------------------------------------------- /asio/asio/impl/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/spawn.hpp -------------------------------------------------------------------------------- /asio/asio/impl/src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/src.cpp -------------------------------------------------------------------------------- /asio/asio/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/src.hpp -------------------------------------------------------------------------------- /asio/asio/impl/system_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/system_context.hpp -------------------------------------------------------------------------------- /asio/asio/impl/system_context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/system_context.ipp -------------------------------------------------------------------------------- /asio/asio/impl/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/thread_pool.hpp -------------------------------------------------------------------------------- /asio/asio/impl/thread_pool.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/thread_pool.ipp -------------------------------------------------------------------------------- /asio/asio/impl/use_awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/use_awaitable.hpp -------------------------------------------------------------------------------- /asio/asio/impl/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/use_future.hpp -------------------------------------------------------------------------------- /asio/asio/impl/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/write.hpp -------------------------------------------------------------------------------- /asio/asio/impl/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/impl/write_at.hpp -------------------------------------------------------------------------------- /asio/asio/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/io_context.hpp -------------------------------------------------------------------------------- /asio/asio/io_context_strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/io_context_strand.hpp -------------------------------------------------------------------------------- /asio/asio/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/io_service.hpp -------------------------------------------------------------------------------- /asio/asio/io_service_strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/io_service_strand.hpp -------------------------------------------------------------------------------- /asio/asio/ip/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/address.hpp -------------------------------------------------------------------------------- /asio/asio/ip/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/address_v4.hpp -------------------------------------------------------------------------------- /asio/asio/ip/address_v4_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/address_v4_range.hpp -------------------------------------------------------------------------------- /asio/asio/ip/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/address_v6.hpp -------------------------------------------------------------------------------- /asio/asio/ip/address_v6_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/address_v6_range.hpp -------------------------------------------------------------------------------- /asio/asio/ip/bad_address_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/bad_address_cast.hpp -------------------------------------------------------------------------------- /asio/asio/ip/basic_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/basic_endpoint.hpp -------------------------------------------------------------------------------- /asio/asio/ip/basic_resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/basic_resolver.hpp -------------------------------------------------------------------------------- /asio/asio/ip/detail/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/detail/endpoint.hpp -------------------------------------------------------------------------------- /asio/asio/ip/host_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/host_name.hpp -------------------------------------------------------------------------------- /asio/asio/ip/icmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/icmp.hpp -------------------------------------------------------------------------------- /asio/asio/ip/impl/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/address.hpp -------------------------------------------------------------------------------- /asio/asio/ip/impl/address.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/address.ipp -------------------------------------------------------------------------------- /asio/asio/ip/impl/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/address_v4.hpp -------------------------------------------------------------------------------- /asio/asio/ip/impl/address_v4.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/address_v4.ipp -------------------------------------------------------------------------------- /asio/asio/ip/impl/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/address_v6.hpp -------------------------------------------------------------------------------- /asio/asio/ip/impl/address_v6.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/address_v6.ipp -------------------------------------------------------------------------------- /asio/asio/ip/impl/host_name.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/host_name.ipp -------------------------------------------------------------------------------- /asio/asio/ip/impl/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/network_v4.hpp -------------------------------------------------------------------------------- /asio/asio/ip/impl/network_v4.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/network_v4.ipp -------------------------------------------------------------------------------- /asio/asio/ip/impl/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/network_v6.hpp -------------------------------------------------------------------------------- /asio/asio/ip/impl/network_v6.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/impl/network_v6.ipp -------------------------------------------------------------------------------- /asio/asio/ip/multicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/multicast.hpp -------------------------------------------------------------------------------- /asio/asio/ip/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/network_v4.hpp -------------------------------------------------------------------------------- /asio/asio/ip/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/network_v6.hpp -------------------------------------------------------------------------------- /asio/asio/ip/resolver_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/resolver_base.hpp -------------------------------------------------------------------------------- /asio/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /asio/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/udp.hpp -------------------------------------------------------------------------------- /asio/asio/ip/unicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/unicast.hpp -------------------------------------------------------------------------------- /asio/asio/ip/v6_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ip/v6_only.hpp -------------------------------------------------------------------------------- /asio/asio/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/is_executor.hpp -------------------------------------------------------------------------------- /asio/asio/is_read_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/is_read_buffered.hpp -------------------------------------------------------------------------------- /asio/asio/is_write_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/is_write_buffered.hpp -------------------------------------------------------------------------------- /asio/asio/local/connect_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/local/connect_pair.hpp -------------------------------------------------------------------------------- /asio/asio/packaged_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/packaged_task.hpp -------------------------------------------------------------------------------- /asio/asio/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/placeholders.hpp -------------------------------------------------------------------------------- /asio/asio/posix/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/posix/descriptor.hpp -------------------------------------------------------------------------------- /asio/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/post.hpp -------------------------------------------------------------------------------- /asio/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/read.hpp -------------------------------------------------------------------------------- /asio/asio/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/read_at.hpp -------------------------------------------------------------------------------- /asio/asio/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/read_until.hpp -------------------------------------------------------------------------------- /asio/asio/redirect_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/redirect_error.hpp -------------------------------------------------------------------------------- /asio/asio/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/serial_port.hpp -------------------------------------------------------------------------------- /asio/asio/serial_port_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/serial_port_base.hpp -------------------------------------------------------------------------------- /asio/asio/signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/signal_set.hpp -------------------------------------------------------------------------------- /asio/asio/socket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/socket_base.hpp -------------------------------------------------------------------------------- /asio/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/spawn.hpp -------------------------------------------------------------------------------- /asio/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/context.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/context_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/context_base.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/detail/engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/detail/engine.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/detail/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/detail/io.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/detail/read_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/detail/read_op.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/detail/write_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/detail/write_op.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/error.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/impl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/impl/context.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/impl/context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/impl/context.ipp -------------------------------------------------------------------------------- /asio/asio/ssl/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/impl/error.ipp -------------------------------------------------------------------------------- /asio/asio/ssl/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/impl/src.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/stream.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/stream_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/stream_base.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/verify_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/verify_context.hpp -------------------------------------------------------------------------------- /asio/asio/ssl/verify_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ssl/verify_mode.hpp -------------------------------------------------------------------------------- /asio/asio/steady_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/steady_timer.hpp -------------------------------------------------------------------------------- /asio/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/strand.hpp -------------------------------------------------------------------------------- /asio/asio/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/streambuf.hpp -------------------------------------------------------------------------------- /asio/asio/system_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/system_context.hpp -------------------------------------------------------------------------------- /asio/asio/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/system_error.hpp -------------------------------------------------------------------------------- /asio/asio/system_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/system_executor.hpp -------------------------------------------------------------------------------- /asio/asio/system_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/system_timer.hpp -------------------------------------------------------------------------------- /asio/asio/this_coro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/this_coro.hpp -------------------------------------------------------------------------------- /asio/asio/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/thread.hpp -------------------------------------------------------------------------------- /asio/asio/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/thread_pool.hpp -------------------------------------------------------------------------------- /asio/asio/time_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/time_traits.hpp -------------------------------------------------------------------------------- /asio/asio/ts/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ts/buffer.hpp -------------------------------------------------------------------------------- /asio/asio/ts/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ts/executor.hpp -------------------------------------------------------------------------------- /asio/asio/ts/internet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ts/internet.hpp -------------------------------------------------------------------------------- /asio/asio/ts/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ts/io_context.hpp -------------------------------------------------------------------------------- /asio/asio/ts/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ts/net.hpp -------------------------------------------------------------------------------- /asio/asio/ts/netfwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ts/netfwd.hpp -------------------------------------------------------------------------------- /asio/asio/ts/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ts/socket.hpp -------------------------------------------------------------------------------- /asio/asio/ts/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/ts/timer.hpp -------------------------------------------------------------------------------- /asio/asio/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/unyield.hpp -------------------------------------------------------------------------------- /asio/asio/use_awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/use_awaitable.hpp -------------------------------------------------------------------------------- /asio/asio/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/use_future.hpp -------------------------------------------------------------------------------- /asio/asio/uses_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/uses_executor.hpp -------------------------------------------------------------------------------- /asio/asio/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/version.hpp -------------------------------------------------------------------------------- /asio/asio/wait_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/wait_traits.hpp -------------------------------------------------------------------------------- /asio/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/write.hpp -------------------------------------------------------------------------------- /asio/asio/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/write_at.hpp -------------------------------------------------------------------------------- /asio/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/asio/asio/yield.hpp -------------------------------------------------------------------------------- /cmake/alignment.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/alignment.cmake -------------------------------------------------------------------------------- /cmake/array.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/array.cmake -------------------------------------------------------------------------------- /cmake/asan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/asan.cmake -------------------------------------------------------------------------------- /cmake/asio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/asio.cmake -------------------------------------------------------------------------------- /cmake/boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/boost.cmake -------------------------------------------------------------------------------- /cmake/check.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/check.cmake -------------------------------------------------------------------------------- /cmake/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/common.cmake -------------------------------------------------------------------------------- /cmake/compiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/compiler.cmake -------------------------------------------------------------------------------- /cmake/coverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/coverage.cmake -------------------------------------------------------------------------------- /cmake/crc32c.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/crc32c.cmake -------------------------------------------------------------------------------- /cmake/custom_boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/custom_boost.cmake -------------------------------------------------------------------------------- /cmake/endian.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/endian.cmake -------------------------------------------------------------------------------- /cmake/maintainer_mode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/maintainer_mode.cmake -------------------------------------------------------------------------------- /cmake/memorycheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/memorycheck.cmake -------------------------------------------------------------------------------- /cmake/os.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/os.cmake -------------------------------------------------------------------------------- /cmake/package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/package.cmake -------------------------------------------------------------------------------- /cmake/shared_ptr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/shared_ptr.cmake -------------------------------------------------------------------------------- /cmake/ssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/ssl.cmake -------------------------------------------------------------------------------- /cmake/unordered.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/unordered.cmake -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/cmake/version.cmake -------------------------------------------------------------------------------- /common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/common/common.h -------------------------------------------------------------------------------- /debian/README.Maintainer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/README.Maintainer -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/galera-4.docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | scripts/packages/README 3 | -------------------------------------------------------------------------------- /debian/galera-4.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/galera-4.install -------------------------------------------------------------------------------- /debian/galera-4.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/galera-4.links -------------------------------------------------------------------------------- /debian/galera-arbitrator-4.garb.default: -------------------------------------------------------------------------------- 1 | ../garb/files/garb.cnf -------------------------------------------------------------------------------- /debian/galera-arbitrator-4.garb.init: -------------------------------------------------------------------------------- 1 | ../garb/files/garb.sh -------------------------------------------------------------------------------- /debian/galera-arbitrator-4.garb.service: -------------------------------------------------------------------------------- 1 | ../garb/files/garb.service -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/gbp.conf -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/upstream/metadata -------------------------------------------------------------------------------- /debian/upstream/signing-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/debian/upstream/signing-key.asc -------------------------------------------------------------------------------- /docs/LICENSE.OpenSSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/docs/LICENSE.OpenSSL -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/docs/README -------------------------------------------------------------------------------- /galera/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/CMakeLists.txt -------------------------------------------------------------------------------- /galera/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/SConscript -------------------------------------------------------------------------------- /galera/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/CMakeLists.txt -------------------------------------------------------------------------------- /galera/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/SConscript -------------------------------------------------------------------------------- /galera/src/action_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/action_source.hpp -------------------------------------------------------------------------------- /galera/src/certification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/certification.cpp -------------------------------------------------------------------------------- /galera/src/certification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/certification.hpp -------------------------------------------------------------------------------- /galera/src/data_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/data_set.cpp -------------------------------------------------------------------------------- /galera/src/data_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/data_set.hpp -------------------------------------------------------------------------------- /galera/src/fsm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/fsm.hpp -------------------------------------------------------------------------------- /galera/src/galera-sym.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera-sym.map -------------------------------------------------------------------------------- /galera/src/galera_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_common.hpp -------------------------------------------------------------------------------- /galera/src/galera_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_exception.hpp -------------------------------------------------------------------------------- /galera/src/galera_gcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_gcs.hpp -------------------------------------------------------------------------------- /galera/src/galera_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_info.cpp -------------------------------------------------------------------------------- /galera/src/galera_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_info.hpp -------------------------------------------------------------------------------- /galera/src/galera_service_thd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_service_thd.cpp -------------------------------------------------------------------------------- /galera/src/galera_service_thd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_service_thd.hpp -------------------------------------------------------------------------------- /galera/src/galera_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_view.cpp -------------------------------------------------------------------------------- /galera/src/galera_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/galera_view.hpp -------------------------------------------------------------------------------- /galera/src/gcs_action_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/gcs_action_source.cpp -------------------------------------------------------------------------------- /galera/src/gcs_action_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/gcs_action_source.hpp -------------------------------------------------------------------------------- /galera/src/gcs_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/gcs_dummy.cpp -------------------------------------------------------------------------------- /galera/src/ist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/ist.cpp -------------------------------------------------------------------------------- /galera/src/ist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/ist.hpp -------------------------------------------------------------------------------- /galera/src/ist_proto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/ist_proto.cpp -------------------------------------------------------------------------------- /galera/src/ist_proto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/ist_proto.hpp -------------------------------------------------------------------------------- /galera/src/key_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/key_data.cpp -------------------------------------------------------------------------------- /galera/src/key_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/key_data.hpp -------------------------------------------------------------------------------- /galera/src/key_entry_ng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/key_entry_ng.hpp -------------------------------------------------------------------------------- /galera/src/key_entry_os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/key_entry_os.cpp -------------------------------------------------------------------------------- /galera/src/key_entry_os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/key_entry_os.hpp -------------------------------------------------------------------------------- /galera/src/key_os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/key_os.hpp -------------------------------------------------------------------------------- /galera/src/key_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/key_set.cpp -------------------------------------------------------------------------------- /galera/src/key_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/key_set.hpp -------------------------------------------------------------------------------- /galera/src/mapped_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/mapped_buffer.cpp -------------------------------------------------------------------------------- /galera/src/mapped_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/mapped_buffer.hpp -------------------------------------------------------------------------------- /galera/src/monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/monitor.hpp -------------------------------------------------------------------------------- /galera/src/nbo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/nbo.hpp -------------------------------------------------------------------------------- /galera/src/progress_callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/progress_callback.hpp -------------------------------------------------------------------------------- /galera/src/replicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/replicator.cpp -------------------------------------------------------------------------------- /galera/src/replicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/replicator.hpp -------------------------------------------------------------------------------- /galera/src/replicator_smm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/replicator_smm.cpp -------------------------------------------------------------------------------- /galera/src/replicator_smm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/replicator_smm.hpp -------------------------------------------------------------------------------- /galera/src/replicator_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/replicator_str.cpp -------------------------------------------------------------------------------- /galera/src/saved_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/saved_state.cpp -------------------------------------------------------------------------------- /galera/src/saved_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/saved_state.hpp -------------------------------------------------------------------------------- /galera/src/trx_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/trx_handle.cpp -------------------------------------------------------------------------------- /galera/src/trx_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/trx_handle.hpp -------------------------------------------------------------------------------- /galera/src/write_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/write_set.cpp -------------------------------------------------------------------------------- /galera/src/write_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/write_set.hpp -------------------------------------------------------------------------------- /galera/src/write_set_ng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/write_set_ng.cpp -------------------------------------------------------------------------------- /galera/src/write_set_ng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/write_set_ng.hpp -------------------------------------------------------------------------------- /galera/src/wsdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/wsdb.cpp -------------------------------------------------------------------------------- /galera/src/wsdb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/wsdb.hpp -------------------------------------------------------------------------------- /galera/src/wsrep_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/wsrep_params.cpp -------------------------------------------------------------------------------- /galera/src/wsrep_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/wsrep_params.hpp -------------------------------------------------------------------------------- /galera/src/wsrep_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/src/wsrep_provider.cpp -------------------------------------------------------------------------------- /galera/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/CMakeLists.txt -------------------------------------------------------------------------------- /galera/tests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/SConscript -------------------------------------------------------------------------------- /galera/tests/data_set_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/data_set_check.cpp -------------------------------------------------------------------------------- /galera/tests/defaults_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/defaults_check.cpp -------------------------------------------------------------------------------- /galera/tests/galera_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/galera_check.cpp -------------------------------------------------------------------------------- /galera/tests/ist_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/ist_check.cpp -------------------------------------------------------------------------------- /galera/tests/key_set_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/key_set_check.cpp -------------------------------------------------------------------------------- /galera/tests/progress_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/progress_check.cpp -------------------------------------------------------------------------------- /galera/tests/test_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/test_key.hpp -------------------------------------------------------------------------------- /galera/tests/trx_handle_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/trx_handle_check.cpp -------------------------------------------------------------------------------- /galera/tests/write_set_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galera/tests/write_set_check.cpp -------------------------------------------------------------------------------- /galerautils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/CMakeLists.txt -------------------------------------------------------------------------------- /galerautils/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/ChangeLog -------------------------------------------------------------------------------- /galerautils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/README -------------------------------------------------------------------------------- /galerautils/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/SConscript -------------------------------------------------------------------------------- /galerautils/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/doc/Doxyfile -------------------------------------------------------------------------------- /galerautils/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/CMakeLists.txt -------------------------------------------------------------------------------- /galerautils/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/SConscript -------------------------------------------------------------------------------- /galerautils/src/galerautils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/galerautils.h -------------------------------------------------------------------------------- /galerautils/src/gu_abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_abort.c -------------------------------------------------------------------------------- /galerautils/src/gu_abort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_abort.h -------------------------------------------------------------------------------- /galerautils/src/gu_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_alloc.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_alloc.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_arch.h -------------------------------------------------------------------------------- /galerautils/src/gu_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_array.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_asio.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_asio.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_asio_debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_asio_debug.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_asio_ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_asio_ssl.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_asio_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_asio_utils.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_assert.h -------------------------------------------------------------------------------- /galerautils/src/gu_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_assert.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_atomic.h -------------------------------------------------------------------------------- /galerautils/src/gu_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_atomic.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_backtrace.c -------------------------------------------------------------------------------- /galerautils/src/gu_backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_backtrace.h -------------------------------------------------------------------------------- /galerautils/src/gu_backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_backtrace.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_buf.h -------------------------------------------------------------------------------- /galerautils/src/gu_buf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_buf.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_buffer.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_buffer.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_byteswap.h -------------------------------------------------------------------------------- /galerautils/src/gu_byteswap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_byteswap.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_compiler.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_cond.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_cond.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_conf.h -------------------------------------------------------------------------------- /galerautils/src/gu_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_config.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_config.h -------------------------------------------------------------------------------- /galerautils/src/gu_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_config.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_convert.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_crc.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_crc32c.c -------------------------------------------------------------------------------- /galerautils/src/gu_crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_crc32c.h -------------------------------------------------------------------------------- /galerautils/src/gu_crc32c_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_crc32c_arm64.c -------------------------------------------------------------------------------- /galerautils/src/gu_crc32c_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_crc32c_x86.c -------------------------------------------------------------------------------- /galerautils/src/gu_datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_datetime.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_datetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_datetime.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_dbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_dbug.c -------------------------------------------------------------------------------- /galerautils/src/gu_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_dbug.h -------------------------------------------------------------------------------- /galerautils/src/gu_debug_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_debug_sync.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_debug_sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_debug_sync.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_deqmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_deqmap.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_digest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_digest.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_errno.h -------------------------------------------------------------------------------- /galerautils/src/gu_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_exception.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_exception.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_fdesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_fdesc.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_fdesc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_fdesc.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_fifo.c -------------------------------------------------------------------------------- /galerautils/src/gu_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_fifo.h -------------------------------------------------------------------------------- /galerautils/src/gu_fnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_fnv.h -------------------------------------------------------------------------------- /galerautils/src/gu_fnv_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_fnv_bench.c -------------------------------------------------------------------------------- /galerautils/src/gu_gtid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_gtid.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_gtid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_gtid.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_hash.h -------------------------------------------------------------------------------- /galerautils/src/gu_hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_hexdump.c -------------------------------------------------------------------------------- /galerautils/src/gu_hexdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_hexdump.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_hexdump.h -------------------------------------------------------------------------------- /galerautils/src/gu_hexdump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_hexdump.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_histogram.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_histogram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_histogram.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_init.c -------------------------------------------------------------------------------- /galerautils/src/gu_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_init.h -------------------------------------------------------------------------------- /galerautils/src/gu_int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_int128.h -------------------------------------------------------------------------------- /galerautils/src/gu_inttypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_inttypes.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_limits.c -------------------------------------------------------------------------------- /galerautils/src/gu_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_limits.h -------------------------------------------------------------------------------- /galerautils/src/gu_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_lock.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_lock_step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_lock_step.c -------------------------------------------------------------------------------- /galerautils/src/gu_lock_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_lock_step.h -------------------------------------------------------------------------------- /galerautils/src/gu_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_log.c -------------------------------------------------------------------------------- /galerautils/src/gu_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_log.h -------------------------------------------------------------------------------- /galerautils/src/gu_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_logger.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_logger.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_macros.h -------------------------------------------------------------------------------- /galerautils/src/gu_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_macros.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_mem.c -------------------------------------------------------------------------------- /galerautils/src/gu_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_mem.h -------------------------------------------------------------------------------- /galerautils/src/gu_mem_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_mem_pool.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_mmap.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_mmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_mmap.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_mmh3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_mmh3.c -------------------------------------------------------------------------------- /galerautils/src/gu_mmh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_mmh3.h -------------------------------------------------------------------------------- /galerautils/src/gu_monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_monitor.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_mutex.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_progress.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_rand.c -------------------------------------------------------------------------------- /galerautils/src/gu_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_rand.h -------------------------------------------------------------------------------- /galerautils/src/gu_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_regex.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_regex.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_resolver.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_resolver.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_rset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_rset.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_rset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_rset.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_serialize.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_serialize.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_shared_ptr.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_signals.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_signals.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_spooky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_spooky.c -------------------------------------------------------------------------------- /galerautils/src/gu_spooky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_spooky.h -------------------------------------------------------------------------------- /galerautils/src/gu_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_stats.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_stats.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_status.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_str.h -------------------------------------------------------------------------------- /galerautils/src/gu_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_string.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_system.h -------------------------------------------------------------------------------- /galerautils/src/gu_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_thread.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_thread.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_threads.c -------------------------------------------------------------------------------- /galerautils/src/gu_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_threads.h -------------------------------------------------------------------------------- /galerautils/src/gu_throw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_throw.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_time.c -------------------------------------------------------------------------------- /galerautils/src/gu_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_time.h -------------------------------------------------------------------------------- /galerautils/src/gu_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_to.c -------------------------------------------------------------------------------- /galerautils/src/gu_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_to.h -------------------------------------------------------------------------------- /galerautils/src/gu_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_types.h -------------------------------------------------------------------------------- /galerautils/src/gu_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_types.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_unordered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_unordered.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_uri.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_uri.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_utils++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_utils++.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_utils.c -------------------------------------------------------------------------------- /galerautils/src/gu_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_utils.h -------------------------------------------------------------------------------- /galerautils/src/gu_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_utils.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_uuid.c -------------------------------------------------------------------------------- /galerautils/src/gu_uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_uuid.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_uuid.h -------------------------------------------------------------------------------- /galerautils/src/gu_uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_uuid.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_vector.hpp -------------------------------------------------------------------------------- /galerautils/src/gu_vlq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_vlq.cpp -------------------------------------------------------------------------------- /galerautils/src/gu_vlq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/src/gu_vlq.hpp -------------------------------------------------------------------------------- /galerautils/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/CMakeLists.txt -------------------------------------------------------------------------------- /galerautils/tests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/SConscript -------------------------------------------------------------------------------- /galerautils/tests/avalanche.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/avalanche.c -------------------------------------------------------------------------------- /galerautils/tests/gu_bswap_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_bswap_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_bswap_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_bswap_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_dbug_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_dbug_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_dbug_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_dbug_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_fifo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_fifo_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_fifo_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_fifo_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_fnv_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_fnv_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_fnv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_fnv_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_hash_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_hash_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_hash_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_hash_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_mem_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_mem_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_mem_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_mem_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_mmh3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_mmh3_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_mmh3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_mmh3_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_net_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_net_test.cpp -------------------------------------------------------------------------------- /galerautils/tests/gu_net_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_net_test.hpp -------------------------------------------------------------------------------- /galerautils/tests/gu_str_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_str_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_str_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_str_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_tests++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_tests++.cpp -------------------------------------------------------------------------------- /galerautils/tests/gu_tests++.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_tests++.hpp -------------------------------------------------------------------------------- /galerautils/tests/gu_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_tests.c -------------------------------------------------------------------------------- /galerautils/tests/gu_time_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_time_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_time_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_time_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_to_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_to_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_uri_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_uri_test.cpp -------------------------------------------------------------------------------- /galerautils/tests/gu_uri_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_uri_test.hpp -------------------------------------------------------------------------------- /galerautils/tests/gu_utils_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_utils_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_utils_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_utils_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_uuid_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_uuid_test.c -------------------------------------------------------------------------------- /galerautils/tests/gu_uuid_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_uuid_test.h -------------------------------------------------------------------------------- /galerautils/tests/gu_vlq_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_vlq_test.cpp -------------------------------------------------------------------------------- /galerautils/tests/gu_vlq_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/galerautils/tests/gu_vlq_test.hpp -------------------------------------------------------------------------------- /garb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/CMakeLists.txt -------------------------------------------------------------------------------- /garb/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/SConscript -------------------------------------------------------------------------------- /garb/files/freebsd/garb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/files/freebsd/garb.sh -------------------------------------------------------------------------------- /garb/files/garb-systemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/files/garb-systemd -------------------------------------------------------------------------------- /garb/files/garb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/files/garb.cnf -------------------------------------------------------------------------------- /garb/files/garb.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/files/garb.service -------------------------------------------------------------------------------- /garb/files/garb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/files/garb.sh -------------------------------------------------------------------------------- /garb/garb_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_config.cpp -------------------------------------------------------------------------------- /garb/garb_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_config.hpp -------------------------------------------------------------------------------- /garb/garb_gcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_gcs.cpp -------------------------------------------------------------------------------- /garb/garb_gcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_gcs.hpp -------------------------------------------------------------------------------- /garb/garb_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_logger.cpp -------------------------------------------------------------------------------- /garb/garb_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_logger.hpp -------------------------------------------------------------------------------- /garb/garb_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_main.cpp -------------------------------------------------------------------------------- /garb/garb_recv_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_recv_loop.cpp -------------------------------------------------------------------------------- /garb/garb_recv_loop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/garb/garb_recv_loop.hpp -------------------------------------------------------------------------------- /gcache/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/AUTHORS -------------------------------------------------------------------------------- /gcache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/CMakeLists.txt -------------------------------------------------------------------------------- /gcache/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcache/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/Makefile.am -------------------------------------------------------------------------------- /gcache/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcache/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/README -------------------------------------------------------------------------------- /gcache/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/SConscript -------------------------------------------------------------------------------- /gcache/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/bootstrap.sh -------------------------------------------------------------------------------- /gcache/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/configure.ac -------------------------------------------------------------------------------- /gcache/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/CMakeLists.txt -------------------------------------------------------------------------------- /gcache/src/GCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/GCache.cpp -------------------------------------------------------------------------------- /gcache/src/GCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/GCache.hpp -------------------------------------------------------------------------------- /gcache/src/GCache_memops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/GCache_memops.cpp -------------------------------------------------------------------------------- /gcache/src/GCache_seqno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/GCache_seqno.cpp -------------------------------------------------------------------------------- /gcache/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/Makefile.am -------------------------------------------------------------------------------- /gcache/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/SConscript -------------------------------------------------------------------------------- /gcache/src/gcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache.h -------------------------------------------------------------------------------- /gcache/src/gcache_bh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_bh.hpp -------------------------------------------------------------------------------- /gcache/src/gcache_limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_limits.hpp -------------------------------------------------------------------------------- /gcache/src/gcache_mem_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_mem_store.cpp -------------------------------------------------------------------------------- /gcache/src/gcache_mem_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_mem_store.hpp -------------------------------------------------------------------------------- /gcache/src/gcache_memops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_memops.hpp -------------------------------------------------------------------------------- /gcache/src/gcache_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_page.cpp -------------------------------------------------------------------------------- /gcache/src/gcache_page.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_page.hpp -------------------------------------------------------------------------------- /gcache/src/gcache_page_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_page_store.cpp -------------------------------------------------------------------------------- /gcache/src/gcache_page_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_page_store.hpp -------------------------------------------------------------------------------- /gcache/src/gcache_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_params.cpp -------------------------------------------------------------------------------- /gcache/src/gcache_rb_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_rb_store.cpp -------------------------------------------------------------------------------- /gcache/src/gcache_rb_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_rb_store.hpp -------------------------------------------------------------------------------- /gcache/src/gcache_seqno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_seqno.hpp -------------------------------------------------------------------------------- /gcache/src/gcache_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/gcache_types.hpp -------------------------------------------------------------------------------- /gcache/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/src/test.cpp -------------------------------------------------------------------------------- /gcache/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/CMakeLists.txt -------------------------------------------------------------------------------- /gcache/tests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/SConscript -------------------------------------------------------------------------------- /gcache/tests/gcache_mem_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_mem_test.cpp -------------------------------------------------------------------------------- /gcache/tests/gcache_mem_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_mem_test.hpp -------------------------------------------------------------------------------- /gcache/tests/gcache_page_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_page_test.cpp -------------------------------------------------------------------------------- /gcache/tests/gcache_page_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_page_test.hpp -------------------------------------------------------------------------------- /gcache/tests/gcache_rb_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_rb_test.cpp -------------------------------------------------------------------------------- /gcache/tests/gcache_rb_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_rb_test.hpp -------------------------------------------------------------------------------- /gcache/tests/gcache_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_tests.cpp -------------------------------------------------------------------------------- /gcache/tests/gcache_tests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_tests.hpp -------------------------------------------------------------------------------- /gcache/tests/gcache_top_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_top_test.cpp -------------------------------------------------------------------------------- /gcache/tests/gcache_top_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcache/tests/gcache_top_test.hpp -------------------------------------------------------------------------------- /gcomm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/CMakeLists.txt -------------------------------------------------------------------------------- /gcomm/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/SConscript -------------------------------------------------------------------------------- /gcomm/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/doc/Doxyfile -------------------------------------------------------------------------------- /gcomm/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/CMakeLists.txt -------------------------------------------------------------------------------- /gcomm/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/SConscript -------------------------------------------------------------------------------- /gcomm/src/asio_protonet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/asio_protonet.cpp -------------------------------------------------------------------------------- /gcomm/src/asio_protonet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/asio_protonet.hpp -------------------------------------------------------------------------------- /gcomm/src/asio_tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/asio_tcp.cpp -------------------------------------------------------------------------------- /gcomm/src/asio_tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/asio_tcp.hpp -------------------------------------------------------------------------------- /gcomm/src/asio_udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/asio_udp.cpp -------------------------------------------------------------------------------- /gcomm/src/asio_udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/asio_udp.hpp -------------------------------------------------------------------------------- /gcomm/src/conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/conf.cpp -------------------------------------------------------------------------------- /gcomm/src/datagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/datagram.cpp -------------------------------------------------------------------------------- /gcomm/src/defaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/defaults.cpp -------------------------------------------------------------------------------- /gcomm/src/defaults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/defaults.hpp -------------------------------------------------------------------------------- /gcomm/src/evs_consensus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_consensus.cpp -------------------------------------------------------------------------------- /gcomm/src/evs_consensus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_consensus.hpp -------------------------------------------------------------------------------- /gcomm/src/evs_input_map2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_input_map2.cpp -------------------------------------------------------------------------------- /gcomm/src/evs_input_map2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_input_map2.hpp -------------------------------------------------------------------------------- /gcomm/src/evs_message2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_message2.cpp -------------------------------------------------------------------------------- /gcomm/src/evs_message2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_message2.hpp -------------------------------------------------------------------------------- /gcomm/src/evs_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_node.cpp -------------------------------------------------------------------------------- /gcomm/src/evs_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_node.hpp -------------------------------------------------------------------------------- /gcomm/src/evs_proto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_proto.cpp -------------------------------------------------------------------------------- /gcomm/src/evs_proto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_proto.hpp -------------------------------------------------------------------------------- /gcomm/src/evs_seqno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/evs_seqno.hpp -------------------------------------------------------------------------------- /gcomm/src/fair_send_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/fair_send_queue.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/common.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/conf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/conf.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/datagram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/datagram.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/exception.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/map.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/order.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/protolay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/protolay.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/protonet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/protonet.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/protostack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/protostack.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/transport.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/types.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/util.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/uuid.hpp -------------------------------------------------------------------------------- /gcomm/src/gcomm/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gcomm/view.hpp -------------------------------------------------------------------------------- /gcomm/src/gmcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gmcast.cpp -------------------------------------------------------------------------------- /gcomm/src/gmcast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gmcast.hpp -------------------------------------------------------------------------------- /gcomm/src/gmcast_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gmcast_link.hpp -------------------------------------------------------------------------------- /gcomm/src/gmcast_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gmcast_message.hpp -------------------------------------------------------------------------------- /gcomm/src/gmcast_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gmcast_node.hpp -------------------------------------------------------------------------------- /gcomm/src/gmcast_proto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gmcast_proto.cpp -------------------------------------------------------------------------------- /gcomm/src/gmcast_proto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/gmcast_proto.hpp -------------------------------------------------------------------------------- /gcomm/src/pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/pc.cpp -------------------------------------------------------------------------------- /gcomm/src/pc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/pc.hpp -------------------------------------------------------------------------------- /gcomm/src/pc_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/pc_message.hpp -------------------------------------------------------------------------------- /gcomm/src/pc_proto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/pc_proto.cpp -------------------------------------------------------------------------------- /gcomm/src/pc_proto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/pc_proto.hpp -------------------------------------------------------------------------------- /gcomm/src/protocol_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/protocol_version.hpp -------------------------------------------------------------------------------- /gcomm/src/protonet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/protonet.cpp -------------------------------------------------------------------------------- /gcomm/src/protostack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/protostack.cpp -------------------------------------------------------------------------------- /gcomm/src/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/socket.cpp -------------------------------------------------------------------------------- /gcomm/src/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/socket.hpp -------------------------------------------------------------------------------- /gcomm/src/transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/transport.cpp -------------------------------------------------------------------------------- /gcomm/src/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/uuid.cpp -------------------------------------------------------------------------------- /gcomm/src/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/src/view.cpp -------------------------------------------------------------------------------- /gcomm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/CMakeLists.txt -------------------------------------------------------------------------------- /gcomm/test/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/SConscript -------------------------------------------------------------------------------- /gcomm/test/check_evs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_evs2.cpp -------------------------------------------------------------------------------- /gcomm/test/check_gcomm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_gcomm.cpp -------------------------------------------------------------------------------- /gcomm/test/check_gcomm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_gcomm.hpp -------------------------------------------------------------------------------- /gcomm/test/check_gcomm_nondet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_gcomm_nondet.cpp -------------------------------------------------------------------------------- /gcomm/test/check_gmcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_gmcast.cpp -------------------------------------------------------------------------------- /gcomm/test/check_pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_pc.cpp -------------------------------------------------------------------------------- /gcomm/test/check_pc_nondet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_pc_nondet.cpp -------------------------------------------------------------------------------- /gcomm/test/check_templ.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_templ.hpp -------------------------------------------------------------------------------- /gcomm/test/check_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_trace.cpp -------------------------------------------------------------------------------- /gcomm/test/check_trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_trace.hpp -------------------------------------------------------------------------------- /gcomm/test/check_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_types.cpp -------------------------------------------------------------------------------- /gcomm/test/check_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_util.cpp -------------------------------------------------------------------------------- /gcomm/test/check_util_nondet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/check_util_nondet.cpp -------------------------------------------------------------------------------- /gcomm/test/ssl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcomm/test/ssl_test.cpp -------------------------------------------------------------------------------- /gcs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/CMakeLists.txt -------------------------------------------------------------------------------- /gcs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/ChangeLog -------------------------------------------------------------------------------- /gcs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/README -------------------------------------------------------------------------------- /gcs/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/SConscript -------------------------------------------------------------------------------- /gcs/doc/Coding_conventions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/doc/Coding_conventions.txt -------------------------------------------------------------------------------- /gcs/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/doc/Doxyfile -------------------------------------------------------------------------------- /gcs/doc/GCS_Architecture.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/doc/GCS_Architecture.odt -------------------------------------------------------------------------------- /gcs/doc/GCS_Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/doc/GCS_Architecture.png -------------------------------------------------------------------------------- /gcs/doc/GCS_connection_states.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/doc/GCS_connection_states.txt -------------------------------------------------------------------------------- /gcs/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/CMakeLists.txt -------------------------------------------------------------------------------- /gcs/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/SConscript -------------------------------------------------------------------------------- /gcs/src/gcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs.cpp -------------------------------------------------------------------------------- /gcs/src/gcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_act.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_act.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_act_cchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_act_cchange.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_act_proto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_act_proto.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_act_proto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_act_proto.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_backend.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_backend.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_code_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_code_msg.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_code_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_code_msg.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_comp_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_comp_msg.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_comp_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_comp_msg.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_conf.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_core.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_core.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_defrag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_defrag.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_defrag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_defrag.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_dummy.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_dummy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_dummy.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_error.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_error.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_fc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_fc.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_fc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_fc.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_fifo_lite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_fifo_lite.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_fifo_lite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_fifo_lite.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_gcache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_gcache.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_gcomm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_gcomm.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_gcomm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_gcomm.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_group.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_group.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_msg_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_msg_type.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_msg_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_msg_type.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_node.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_node.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_params.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_params.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_priv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_priv.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_recv_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_recv_msg.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_seqno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_seqno.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_sm.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_sm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_sm.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_spread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_spread.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_spread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_spread.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_state_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_state_msg.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_state_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_state_msg.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_test.cpp -------------------------------------------------------------------------------- /gcs/src/gcs_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_test.hpp -------------------------------------------------------------------------------- /gcs/src/gcs_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/gcs_test.sh -------------------------------------------------------------------------------- /gcs/src/unit_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/unit_tests/CMakeLists.txt -------------------------------------------------------------------------------- /gcs/src/unit_tests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/unit_tests/SConscript -------------------------------------------------------------------------------- /gcs/src/unit_tests/gcs_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/gcs/src/unit_tests/gcs_tests.cpp -------------------------------------------------------------------------------- /man/garb-systemd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/man/garb-systemd.8 -------------------------------------------------------------------------------- /man/garbd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/man/garbd.8 -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/docker/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/docker/build.sh -------------------------------------------------------------------------------- /scripts/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/docker/entrypoint.sh -------------------------------------------------------------------------------- /scripts/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/LICENSE -------------------------------------------------------------------------------- /scripts/mysql/LICENSE.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/LICENSE.mysql -------------------------------------------------------------------------------- /scripts/mysql/QUICK_START: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/QUICK_START -------------------------------------------------------------------------------- /scripts/mysql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/README -------------------------------------------------------------------------------- /scripts/mysql/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/build.sh -------------------------------------------------------------------------------- /scripts/mysql/centos/init.centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/centos/init.centos -------------------------------------------------------------------------------- /scripts/mysql/centos/init.oracle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/centos/init.oracle -------------------------------------------------------------------------------- /scripts/mysql/centos/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/centos/my.cnf -------------------------------------------------------------------------------- /scripts/mysql/centos/mysqld_safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/centos/mysqld_safe -------------------------------------------------------------------------------- /scripts/mysql/debian/5.1.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/debian/5.1.list -------------------------------------------------------------------------------- /scripts/mysql/debian/5.5.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/debian/5.5.list -------------------------------------------------------------------------------- /scripts/mysql/debian/5.6.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/debian/5.6.list -------------------------------------------------------------------------------- /scripts/mysql/debian/common.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/debian/common.list -------------------------------------------------------------------------------- /scripts/mysql/debian/echo_stderr: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "$*" 1>&2 3 | -------------------------------------------------------------------------------- /scripts/mysql/debian/etc/mysql/conf.d/mysqld_safe_syslog.cnf: -------------------------------------------------------------------------------- 1 | [mysqld_safe] 2 | syslog 3 | -------------------------------------------------------------------------------- /scripts/mysql/debian/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/debian/my.cnf -------------------------------------------------------------------------------- /scripts/mysql/debian/mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/debian/mysql -------------------------------------------------------------------------------- /scripts/mysql/debian/mysql-server-wsrep.list: -------------------------------------------------------------------------------- 1 | %include ${MYSQL_MAJOR}.list 2 | -------------------------------------------------------------------------------- /scripts/mysql/freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/freebsd.sh -------------------------------------------------------------------------------- /scripts/mysql/freebsd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/freebsd/LICENSE -------------------------------------------------------------------------------- /scripts/mysql/freebsd/catalog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/freebsd/catalog.mk -------------------------------------------------------------------------------- /scripts/mysql/freebsd/client-comment: -------------------------------------------------------------------------------- 1 | wsrep-enabled multithreaded SQL database (client) 2 | -------------------------------------------------------------------------------- /scripts/mysql/freebsd/client-ldconfig: -------------------------------------------------------------------------------- 1 | /usr/local/lib/mysql 2 | -------------------------------------------------------------------------------- /scripts/mysql/freebsd/client-message: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/mysql/freebsd/server-comment: -------------------------------------------------------------------------------- 1 | wsrep-enabled multithreaded SQL database (server) 2 | -------------------------------------------------------------------------------- /scripts/mysql/get_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/get_patch.sh -------------------------------------------------------------------------------- /scripts/mysql/init_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/init_db.sh -------------------------------------------------------------------------------- /scripts/mysql/my-5.1.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/my-5.1.cnf -------------------------------------------------------------------------------- /scripts/mysql/my-5.5.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/my-5.5.cnf -------------------------------------------------------------------------------- /scripts/mysql/mysql-galera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/mysql-galera -------------------------------------------------------------------------------- /scripts/mysql/mysql-plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/mysql-plain -------------------------------------------------------------------------------- /scripts/mysql/mysql_var_5.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/mysql_var_5.5.tgz -------------------------------------------------------------------------------- /scripts/mysql/mysql_var_5.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/mysql_var_5.6.tgz -------------------------------------------------------------------------------- /scripts/mysql/mysql_var_5.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/mysql_var_5.7.tgz -------------------------------------------------------------------------------- /scripts/mysql/rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/rpm.sh -------------------------------------------------------------------------------- /scripts/mysql/rpm_wc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/mysql/rpm_wc.sh -------------------------------------------------------------------------------- /scripts/openrep/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/openrep/common -------------------------------------------------------------------------------- /scripts/openrep/configure: -------------------------------------------------------------------------------- 1 | redundant -------------------------------------------------------------------------------- /scripts/openrep/demote: -------------------------------------------------------------------------------- 1 | redundant -------------------------------------------------------------------------------- /scripts/openrep/flush: -------------------------------------------------------------------------------- 1 | not_supported -------------------------------------------------------------------------------- /scripts/openrep/halt: -------------------------------------------------------------------------------- 1 | service -------------------------------------------------------------------------------- /scripts/openrep/kill: -------------------------------------------------------------------------------- 1 | service -------------------------------------------------------------------------------- /scripts/openrep/not_supported: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/openrep/not_supported -------------------------------------------------------------------------------- /scripts/openrep/offline: -------------------------------------------------------------------------------- 1 | service -------------------------------------------------------------------------------- /scripts/openrep/online: -------------------------------------------------------------------------------- 1 | service -------------------------------------------------------------------------------- /scripts/openrep/plugin.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/openrep/plugin.cnf -------------------------------------------------------------------------------- /scripts/openrep/prepare: -------------------------------------------------------------------------------- 1 | redundant -------------------------------------------------------------------------------- /scripts/openrep/promote: -------------------------------------------------------------------------------- 1 | redundant -------------------------------------------------------------------------------- /scripts/openrep/provision: -------------------------------------------------------------------------------- 1 | not_supported -------------------------------------------------------------------------------- /scripts/openrep/redundant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/openrep/redundant -------------------------------------------------------------------------------- /scripts/openrep/release: -------------------------------------------------------------------------------- 1 | not_supported -------------------------------------------------------------------------------- /scripts/openrep/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/openrep/service -------------------------------------------------------------------------------- /scripts/openrep/status: -------------------------------------------------------------------------------- 1 | not_supported -------------------------------------------------------------------------------- /scripts/openrep/stop: -------------------------------------------------------------------------------- 1 | service -------------------------------------------------------------------------------- /scripts/openrep/waitevent: -------------------------------------------------------------------------------- 1 | not_supported -------------------------------------------------------------------------------- /scripts/packages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/packages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/README -------------------------------------------------------------------------------- /scripts/packages/README-MySQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/README-MySQL -------------------------------------------------------------------------------- /scripts/packages/debian: -------------------------------------------------------------------------------- 1 | ../../debian -------------------------------------------------------------------------------- /scripts/packages/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/freebsd.sh -------------------------------------------------------------------------------- /scripts/packages/freebsd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/freebsd/LICENSE -------------------------------------------------------------------------------- /scripts/packages/freebsd/galera-ldconfig: -------------------------------------------------------------------------------- 1 | /usr/local/lib/galera 2 | -------------------------------------------------------------------------------- /scripts/packages/galera-dev.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/galera-dev.list -------------------------------------------------------------------------------- /scripts/packages/galera-obs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/galera-obs.spec -------------------------------------------------------------------------------- /scripts/packages/galera.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/galera.list -------------------------------------------------------------------------------- /scripts/packages/rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/scripts/packages/rpm.sh -------------------------------------------------------------------------------- /tests/conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/README.md -------------------------------------------------------------------------------- /tests/conf/cluster.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/cluster.conf.tmpl -------------------------------------------------------------------------------- /tests/conf/common_my.cnf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/common_my.cnf.tmpl -------------------------------------------------------------------------------- /tests/conf/dummy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/dummy.conf -------------------------------------------------------------------------------- /tests/conf/galera-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera-ca.pem -------------------------------------------------------------------------------- /tests/conf/galera-int.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera-int.pem -------------------------------------------------------------------------------- /tests/conf/galera-server-1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera-server-1.key -------------------------------------------------------------------------------- /tests/conf/galera-server-1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera-server-1.pem -------------------------------------------------------------------------------- /tests/conf/galera-server-2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera-server-2.key -------------------------------------------------------------------------------- /tests/conf/galera-server-2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera-server-2.pem -------------------------------------------------------------------------------- /tests/conf/galera-server-3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera-server-3.key -------------------------------------------------------------------------------- /tests/conf/galera-server-3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera-server-3.pem -------------------------------------------------------------------------------- /tests/conf/galera_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera_ca.pem -------------------------------------------------------------------------------- /tests/conf/galera_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera_cert.pem -------------------------------------------------------------------------------- /tests/conf/galera_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/galera_key.pem -------------------------------------------------------------------------------- /tests/conf/gen-cert-chain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/gen-cert-chain.sh -------------------------------------------------------------------------------- /tests/conf/main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/main.conf -------------------------------------------------------------------------------- /tests/conf/my.cnf.1.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/my.cnf.1.tmpl -------------------------------------------------------------------------------- /tests/conf/my.cnf.2.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/my.cnf.2.tmpl -------------------------------------------------------------------------------- /tests/conf/my.cnf.3.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/my.cnf.3.tmpl -------------------------------------------------------------------------------- /tests/conf/nodes.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/nodes.conf.tmpl -------------------------------------------------------------------------------- /tests/conf/sqlgen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/conf/sqlgen.conf -------------------------------------------------------------------------------- /tests/regressions/lp518749/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/regressions/lp518749/run.sh -------------------------------------------------------------------------------- /tests/regressions/lp587170/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/regressions/lp587170/run.sh -------------------------------------------------------------------------------- /tests/regressions/run-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/regressions/run-all.sh -------------------------------------------------------------------------------- /tests/regressions/t281/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/regressions/t281/run.sh -------------------------------------------------------------------------------- /tests/regressions/t285/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/regressions/t285/run.sh -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/run.sh -------------------------------------------------------------------------------- /tests/run_sqlgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/run_sqlgen.sh -------------------------------------------------------------------------------- /tests/run_test_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/run_test_set.sh -------------------------------------------------------------------------------- /tests/scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/README -------------------------------------------------------------------------------- /tests/scripts/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/action.sh -------------------------------------------------------------------------------- /tests/scripts/command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/command.sh -------------------------------------------------------------------------------- /tests/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/install.sh -------------------------------------------------------------------------------- /tests/scripts/jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/jobs.sh -------------------------------------------------------------------------------- /tests/scripts/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/kill.sh -------------------------------------------------------------------------------- /tests/scripts/misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/misc.sh -------------------------------------------------------------------------------- /tests/scripts/remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/remove.sh -------------------------------------------------------------------------------- /tests/scripts/signal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/scripts/signal.sh -------------------------------------------------------------------------------- /tests/t/dummy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/t/dummy.sh -------------------------------------------------------------------------------- /tests/tap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/tap/README -------------------------------------------------------------------------------- /tests/tap/run_test_set.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/tap/run_test_set.pl -------------------------------------------------------------------------------- /tests/tap/tap-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/tap/tap-functions -------------------------------------------------------------------------------- /tests/test_causal/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_causal/SConstruct -------------------------------------------------------------------------------- /tests/test_causal/causal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_causal/causal.cpp -------------------------------------------------------------------------------- /tests/test_causal/causal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_causal/causal.sh -------------------------------------------------------------------------------- /tests/test_cppcheck/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_cppcheck/run.sh -------------------------------------------------------------------------------- /tests/test_dbt2/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Not implemented" > $GALERA_RESULT_DIR/out 4 | exit 1 5 | -------------------------------------------------------------------------------- /tests/test_dots/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Not implemented" > $GALERA_RESULT_DIR/out 4 | exit 1 5 | -------------------------------------------------------------------------------- /tests/test_drupal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_drupal/README -------------------------------------------------------------------------------- /tests/test_drupal/drupal.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_drupal/drupal.jmx -------------------------------------------------------------------------------- /tests/test_drupal/drupal5.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_drupal/drupal5.diff -------------------------------------------------------------------------------- /tests/test_drupal/drupal6.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_drupal/drupal6.jmx -------------------------------------------------------------------------------- /tests/test_drupal/loaddb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_drupal/loaddb.sh -------------------------------------------------------------------------------- /tests/test_drupal/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_drupal/run.sh -------------------------------------------------------------------------------- /tests/test_insert/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_insert/run.sh -------------------------------------------------------------------------------- /tests/test_memory/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_memory/run.sh -------------------------------------------------------------------------------- /tests/test_mtr/innodb.suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_mtr/innodb.suite -------------------------------------------------------------------------------- /tests/test_mtr/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_mtr/run.sh -------------------------------------------------------------------------------- /tests/test_overhead/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_overhead/run.sh -------------------------------------------------------------------------------- /tests/test_pc_recovery/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_pc_recovery/README -------------------------------------------------------------------------------- /tests/test_pc_recovery/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_pc_recovery/run.sh -------------------------------------------------------------------------------- /tests/test_seesaw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_seesaw/README -------------------------------------------------------------------------------- /tests/test_seesaw/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_seesaw/run.sh -------------------------------------------------------------------------------- /tests/test_seesaw/sysbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_seesaw/sysbench.sh -------------------------------------------------------------------------------- /tests/test_segmentation/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_segmentation/run.sh -------------------------------------------------------------------------------- /tests/test_sqlgen/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_sqlgen/run.sh -------------------------------------------------------------------------------- /tests/test_startstop/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_startstop/run.sh -------------------------------------------------------------------------------- /tests/test_stopcont/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_stopcont/README -------------------------------------------------------------------------------- /tests/test_stopcont/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_stopcont/run.sh -------------------------------------------------------------------------------- /tests/test_upgrade/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_upgrade/README -------------------------------------------------------------------------------- /tests/test_upgrade/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/tests/test_upgrade/run.sh -------------------------------------------------------------------------------- /wsrep/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/wsrep/tests/CMakeLists.txt -------------------------------------------------------------------------------- /wsrep/tests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/galera/HEAD/wsrep/tests/SConscript --------------------------------------------------------------------------------