├── .gitignore ├── CMakeLists.txt ├── License.txt ├── README.md ├── README.txt ├── cmake ├── Coverage.cmake ├── FindGMock.cmake ├── FindLibEvent2.cmake ├── FindMySQL.cmake ├── HarnessTesting.cmake ├── Plugin.cmake ├── TextUtils.cmake ├── cmake_parse_arguments.cmake ├── compile_flags.cmake ├── compiler.cmake ├── configure.cmake ├── docs.cmake ├── gmocktest.cmake ├── install_layout.cmake ├── libutils.cmake ├── mysqlx_protobuf.cmake ├── packaging.cmake ├── platform.cmake ├── protobuf.cmake ├── settings.cmake ├── ssl.cmake ├── testing.cmake └── version.cmake ├── config.h.in ├── doc ├── doxygen.cfg.in ├── router_doxygen.css ├── router_footer.html ├── router_header.html └── sample_mysqlrouter.conf ├── ext ├── RAPIDJSON-README ├── duktape │ └── duktape-2.1.0 │ │ ├── LICENSE.txt │ │ ├── README.rst │ │ ├── extras │ │ ├── README.rst │ │ ├── alloc-pool │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_alloc_pool.c │ │ │ ├── duk_alloc_pool.h │ │ │ ├── ptrcomp.yaml │ │ │ ├── ptrcomp_fixup.h │ │ │ └── test.c │ │ ├── console │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_console.c │ │ │ ├── duk_console.h │ │ │ └── test.c │ │ ├── duk-v1-compat │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_v1_compat.c │ │ │ ├── duk_v1_compat.h │ │ │ ├── test.c │ │ │ ├── test_compile1.js │ │ │ ├── test_compile2.js │ │ │ ├── test_eval1.js │ │ │ └── test_eval2.js │ │ ├── logging │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_logging.c │ │ │ ├── duk_logging.h │ │ │ └── test.c │ │ ├── minimal-printf │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_minimal_printf.c │ │ │ ├── duk_minimal_printf.h │ │ │ └── test.c │ │ ├── module-duktape │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_module_duktape.c │ │ │ ├── duk_module_duktape.h │ │ │ └── test.c │ │ ├── module-node │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_module_node.c │ │ │ ├── duk_module_node.h │ │ │ └── test.c │ │ └── print-alert │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_print_alert.c │ │ │ ├── duk_print_alert.h │ │ │ └── test.c │ │ ├── licenses │ │ ├── commonjs.txt │ │ ├── lua.txt │ │ ├── murmurhash2.txt │ │ ├── splitmix64.txt │ │ └── xoroshiro128plus.txt │ │ └── src │ │ ├── duk_config.h │ │ ├── duk_source_meta.json │ │ ├── duktape.c │ │ └── duktape.h ├── gmock │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── build-aux │ │ └── .keep │ ├── configure.ac │ ├── include │ │ └── gmock │ │ │ ├── gmock-actions.h │ │ │ ├── gmock-cardinalities.h │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-generated-actions.h.pump │ │ │ ├── gmock-generated-function-mockers.h │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ ├── gmock-generated-matchers.h │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ ├── gmock-generated-nice-strict.h │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ ├── gmock-matchers.h │ │ │ ├── gmock-more-actions.h │ │ │ ├── gmock-more-matchers.h │ │ │ ├── gmock-spec-builders.h │ │ │ ├── gmock.h │ │ │ └── internal │ │ │ ├── gmock-generated-internal-utils.h │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ ├── gmock-internal-utils.h │ │ │ └── gmock-port.h │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── 2005 │ │ │ ├── gmock.sln │ │ │ ├── gmock.vcproj │ │ │ ├── gmock_config.vsprops │ │ │ ├── gmock_main.vcproj │ │ │ └── gmock_test.vcproj │ │ └── 2010 │ │ │ ├── gmock.sln │ │ │ ├── gmock.vcxproj │ │ │ ├── gmock_config.props │ │ │ ├── gmock_main.vcxproj │ │ │ └── gmock_test.vcxproj │ ├── scripts │ │ ├── fuse_gmock_files.py │ │ ├── generator │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── README.cppclean │ │ │ ├── cpp │ │ │ │ ├── __init__.py │ │ │ │ ├── ast.py │ │ │ │ ├── gmock_class.py │ │ │ │ ├── gmock_class_test.py │ │ │ │ ├── keywords.py │ │ │ │ ├── tokenize.py │ │ │ │ └── utils.py │ │ │ └── gmock_gen.py │ │ ├── gmock-config.in │ │ ├── gmock_doctor.py │ │ ├── upload.py │ │ └── upload_gmock.py │ ├── src │ │ ├── gmock-all.cc │ │ ├── gmock-cardinalities.cc │ │ ├── gmock-internal-utils.cc │ │ ├── gmock-matchers.cc │ │ ├── gmock-spec-builders.cc │ │ ├── gmock.cc │ │ └── gmock_main.cc │ └── test │ │ ├── gmock-actions_test.cc │ │ ├── gmock-cardinalities_test.cc │ │ ├── gmock-generated-actions_test.cc │ │ ├── gmock-generated-function-mockers_test.cc │ │ ├── gmock-generated-internal-utils_test.cc │ │ ├── gmock-generated-matchers_test.cc │ │ ├── gmock-internal-utils_test.cc │ │ ├── gmock-matchers_test.cc │ │ ├── gmock-more-actions_test.cc │ │ ├── gmock-nice-strict_test.cc │ │ ├── gmock-port_test.cc │ │ ├── gmock-spec-builders_test.cc │ │ ├── gmock_all_test.cc │ │ ├── gmock_ex_test.cc │ │ ├── gmock_leak_test.py │ │ ├── gmock_leak_test_.cc │ │ ├── gmock_link2_test.cc │ │ ├── gmock_link_test.cc │ │ ├── gmock_link_test.h │ │ ├── gmock_output_test.py │ │ ├── gmock_output_test_.cc │ │ ├── gmock_output_test_golden.txt │ │ ├── gmock_stress_test.cc │ │ ├── gmock_test.cc │ │ └── gmock_test_utils.py ├── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── build-aux │ │ └── .keep │ ├── cmake │ │ └── internal_utils.cmake │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure.ac │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ └── gtest.m4 │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── gtest-md.sln │ │ ├── gtest-md.vcproj │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_main-md.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_prod_test-md.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_unittest-md.vcproj │ │ └── gtest_unittest.vcproj │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ ├── pump.py │ │ ├── test │ │ │ └── Makefile │ │ ├── upload.py │ │ └── upload_gtest.py │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj ├── protobuf │ ├── CMakeLists.txt │ └── protobuf-3.0.0 │ │ ├── BUILD │ │ ├── CHANGES.txt │ │ ├── CONTRIBUTORS.txt │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── aclocal.m4 │ │ ├── ar-lib │ │ ├── autogen.sh │ │ ├── cmake │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── examples.cmake │ │ ├── extract_includes.bat.in │ │ ├── install.cmake │ │ ├── libprotobuf-lite.cmake │ │ ├── libprotobuf.cmake │ │ ├── libprotoc.cmake │ │ ├── protobuf-config-version.cmake.in │ │ ├── protobuf-config.cmake.in │ │ ├── protobuf-module.cmake.in │ │ ├── protobuf-options.cmake │ │ ├── protoc.cmake │ │ └── tests.cmake │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── conformance │ │ ├── ConformanceJava.java │ │ ├── ConformanceJavaLite.java │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── conformance.proto │ │ ├── conformance_cpp.cc │ │ ├── conformance_objc.m │ │ ├── conformance_python.py │ │ ├── conformance_ruby.rb │ │ ├── conformance_test.cc │ │ ├── conformance_test.h │ │ ├── conformance_test_runner.cc │ │ ├── failure_list_cpp.txt │ │ ├── failure_list_csharp.txt │ │ ├── failure_list_java.txt │ │ ├── failure_list_objc.txt │ │ ├── failure_list_python-post26.txt │ │ ├── failure_list_python.txt │ │ ├── failure_list_python_cpp.txt │ │ ├── failure_list_ruby.txt │ │ └── third_party │ │ │ └── jsoncpp │ │ │ ├── json.h │ │ │ └── jsoncpp.cpp │ │ ├── depcomp │ │ ├── editors │ │ ├── README.txt │ │ ├── proto.vim │ │ └── protobuf-mode.el │ │ ├── generate_descriptor_proto.sh │ │ ├── gmock.BUILD │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4 │ │ ├── ac_system_extensions.m4 │ │ ├── acx_check_suncc.m4 │ │ ├── acx_pthread.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── stl_hash.m4 │ │ ├── missing │ │ ├── protobuf-lite.pc.in │ │ ├── protobuf.bzl │ │ ├── protobuf.pc.in │ │ ├── six.BUILD │ │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.cc │ │ │ ├── any.h │ │ │ ├── any.pb.cc │ │ │ ├── any.pb.h │ │ │ ├── any.proto │ │ │ ├── any_test.cc │ │ │ ├── any_test.proto │ │ │ ├── api.pb.cc │ │ │ ├── api.pb.h │ │ │ ├── api.proto │ │ │ ├── arena.cc │ │ │ ├── arena.h │ │ │ ├── arena_test_util.cc │ │ │ ├── arena_test_util.h │ │ │ ├── arena_unittest.cc │ │ │ ├── arenastring.cc │ │ │ ├── arenastring.h │ │ │ ├── arenastring_unittest.cc │ │ │ ├── compiler │ │ │ ├── code_generator.cc │ │ │ ├── code_generator.h │ │ │ ├── command_line_interface.cc │ │ │ ├── command_line_interface.h │ │ │ ├── command_line_interface_unittest.cc │ │ │ ├── cpp │ │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ │ ├── cpp_enum.cc │ │ │ │ ├── cpp_enum.h │ │ │ │ ├── cpp_enum_field.cc │ │ │ │ ├── cpp_enum_field.h │ │ │ │ ├── cpp_extension.cc │ │ │ │ ├── cpp_extension.h │ │ │ │ ├── cpp_field.cc │ │ │ │ ├── cpp_field.h │ │ │ │ ├── cpp_file.cc │ │ │ │ ├── cpp_file.h │ │ │ │ ├── cpp_generator.cc │ │ │ │ ├── cpp_generator.h │ │ │ │ ├── cpp_helpers.cc │ │ │ │ ├── cpp_helpers.h │ │ │ │ ├── cpp_map_field.cc │ │ │ │ ├── cpp_map_field.h │ │ │ │ ├── cpp_message.cc │ │ │ │ ├── cpp_message.h │ │ │ │ ├── cpp_message_field.cc │ │ │ │ ├── cpp_message_field.h │ │ │ │ ├── cpp_options.h │ │ │ │ ├── cpp_plugin_unittest.cc │ │ │ │ ├── cpp_primitive_field.cc │ │ │ │ ├── cpp_primitive_field.h │ │ │ │ ├── cpp_service.cc │ │ │ │ ├── cpp_service.h │ │ │ │ ├── cpp_string_field.cc │ │ │ │ ├── cpp_string_field.h │ │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ │ ├── cpp_test_large_enum_value.proto │ │ │ │ ├── cpp_unittest.cc │ │ │ │ ├── cpp_unittest.h │ │ │ │ └── metadata_test.cc │ │ │ ├── csharp │ │ │ │ ├── csharp_doc_comment.cc │ │ │ │ ├── csharp_doc_comment.h │ │ │ │ ├── csharp_enum.cc │ │ │ │ ├── csharp_enum.h │ │ │ │ ├── csharp_enum_field.cc │ │ │ │ ├── csharp_enum_field.h │ │ │ │ ├── csharp_field_base.cc │ │ │ │ ├── csharp_field_base.h │ │ │ │ ├── csharp_generator.cc │ │ │ │ ├── csharp_generator.h │ │ │ │ ├── csharp_generator_unittest.cc │ │ │ │ ├── csharp_helpers.cc │ │ │ │ ├── csharp_helpers.h │ │ │ │ ├── csharp_map_field.cc │ │ │ │ ├── csharp_map_field.h │ │ │ │ ├── csharp_message.cc │ │ │ │ ├── csharp_message.h │ │ │ │ ├── csharp_message_field.cc │ │ │ │ ├── csharp_message_field.h │ │ │ │ ├── csharp_names.h │ │ │ │ ├── csharp_options.h │ │ │ │ ├── csharp_primitive_field.cc │ │ │ │ ├── csharp_primitive_field.h │ │ │ │ ├── csharp_reflection_class.cc │ │ │ │ ├── csharp_reflection_class.h │ │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ │ ├── csharp_repeated_enum_field.h │ │ │ │ ├── csharp_repeated_message_field.cc │ │ │ │ ├── csharp_repeated_message_field.h │ │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ │ ├── csharp_source_generator_base.cc │ │ │ │ ├── csharp_source_generator_base.h │ │ │ │ ├── csharp_wrapper_field.cc │ │ │ │ └── csharp_wrapper_field.h │ │ │ ├── importer.cc │ │ │ ├── importer.h │ │ │ ├── importer_unittest.cc │ │ │ ├── java │ │ │ │ ├── java_context.cc │ │ │ │ ├── java_context.h │ │ │ │ ├── java_doc_comment.cc │ │ │ │ ├── java_doc_comment.h │ │ │ │ ├── java_doc_comment_unittest.cc │ │ │ │ ├── java_enum.cc │ │ │ │ ├── java_enum.h │ │ │ │ ├── java_enum_field.cc │ │ │ │ ├── java_enum_field.h │ │ │ │ ├── java_enum_field_lite.cc │ │ │ │ ├── java_enum_field_lite.h │ │ │ │ ├── java_enum_lite.cc │ │ │ │ ├── java_enum_lite.h │ │ │ │ ├── java_extension.cc │ │ │ │ ├── java_extension.h │ │ │ │ ├── java_extension_lite.cc │ │ │ │ ├── java_extension_lite.h │ │ │ │ ├── java_field.cc │ │ │ │ ├── java_field.h │ │ │ │ ├── java_file.cc │ │ │ │ ├── java_file.h │ │ │ │ ├── java_generator.cc │ │ │ │ ├── java_generator.h │ │ │ │ ├── java_generator_factory.cc │ │ │ │ ├── java_generator_factory.h │ │ │ │ ├── java_helpers.cc │ │ │ │ ├── java_helpers.h │ │ │ │ ├── java_lazy_message_field.cc │ │ │ │ ├── java_lazy_message_field.h │ │ │ │ ├── java_lazy_message_field_lite.cc │ │ │ │ ├── java_lazy_message_field_lite.h │ │ │ │ ├── java_map_field.cc │ │ │ │ ├── java_map_field.h │ │ │ │ ├── java_map_field_lite.cc │ │ │ │ ├── java_map_field_lite.h │ │ │ │ ├── java_message.cc │ │ │ │ ├── java_message.h │ │ │ │ ├── java_message_builder.cc │ │ │ │ ├── java_message_builder.h │ │ │ │ ├── java_message_builder_lite.cc │ │ │ │ ├── java_message_builder_lite.h │ │ │ │ ├── java_message_field.cc │ │ │ │ ├── java_message_field.h │ │ │ │ ├── java_message_field_lite.cc │ │ │ │ ├── java_message_field_lite.h │ │ │ │ ├── java_message_lite.cc │ │ │ │ ├── java_message_lite.h │ │ │ │ ├── java_name_resolver.cc │ │ │ │ ├── java_name_resolver.h │ │ │ │ ├── java_names.h │ │ │ │ ├── java_options.h │ │ │ │ ├── java_plugin_unittest.cc │ │ │ │ ├── java_primitive_field.cc │ │ │ │ ├── java_primitive_field.h │ │ │ │ ├── java_primitive_field_lite.cc │ │ │ │ ├── java_primitive_field_lite.h │ │ │ │ ├── java_service.cc │ │ │ │ ├── java_service.h │ │ │ │ ├── java_shared_code_generator.cc │ │ │ │ ├── java_shared_code_generator.h │ │ │ │ ├── java_string_field.cc │ │ │ │ ├── java_string_field.h │ │ │ │ ├── java_string_field_lite.cc │ │ │ │ └── java_string_field_lite.h │ │ │ ├── javanano │ │ │ │ ├── javanano_enum.cc │ │ │ │ ├── javanano_enum.h │ │ │ │ ├── javanano_enum_field.cc │ │ │ │ ├── javanano_enum_field.h │ │ │ │ ├── javanano_extension.cc │ │ │ │ ├── javanano_extension.h │ │ │ │ ├── javanano_field.cc │ │ │ │ ├── javanano_field.h │ │ │ │ ├── javanano_file.cc │ │ │ │ ├── javanano_file.h │ │ │ │ ├── javanano_generator.cc │ │ │ │ ├── javanano_generator.h │ │ │ │ ├── javanano_helpers.cc │ │ │ │ ├── javanano_helpers.h │ │ │ │ ├── javanano_map_field.cc │ │ │ │ ├── javanano_map_field.h │ │ │ │ ├── javanano_message.cc │ │ │ │ ├── javanano_message.h │ │ │ │ ├── javanano_message_field.cc │ │ │ │ ├── javanano_message_field.h │ │ │ │ ├── javanano_params.h │ │ │ │ ├── javanano_primitive_field.cc │ │ │ │ └── javanano_primitive_field.h │ │ │ ├── js │ │ │ │ ├── js_generator.cc │ │ │ │ └── js_generator.h │ │ │ ├── main.cc │ │ │ ├── mock_code_generator.cc │ │ │ ├── mock_code_generator.h │ │ │ ├── objectivec │ │ │ │ ├── objectivec_enum.cc │ │ │ │ ├── objectivec_enum.h │ │ │ │ ├── objectivec_enum_field.cc │ │ │ │ ├── objectivec_enum_field.h │ │ │ │ ├── objectivec_extension.cc │ │ │ │ ├── objectivec_extension.h │ │ │ │ ├── objectivec_field.cc │ │ │ │ ├── objectivec_field.h │ │ │ │ ├── objectivec_file.cc │ │ │ │ ├── objectivec_file.h │ │ │ │ ├── objectivec_generator.cc │ │ │ │ ├── objectivec_generator.h │ │ │ │ ├── objectivec_helpers.cc │ │ │ │ ├── objectivec_helpers.h │ │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ │ ├── objectivec_map_field.cc │ │ │ │ ├── objectivec_map_field.h │ │ │ │ ├── objectivec_message.cc │ │ │ │ ├── objectivec_message.h │ │ │ │ ├── objectivec_message_field.cc │ │ │ │ ├── objectivec_message_field.h │ │ │ │ ├── objectivec_oneof.cc │ │ │ │ ├── objectivec_oneof.h │ │ │ │ ├── objectivec_primitive_field.cc │ │ │ │ └── objectivec_primitive_field.h │ │ │ ├── package_info.h │ │ │ ├── parser.cc │ │ │ ├── parser.h │ │ │ ├── parser_unittest.cc │ │ │ ├── plugin.cc │ │ │ ├── plugin.h │ │ │ ├── plugin.pb.cc │ │ │ ├── plugin.pb.h │ │ │ ├── plugin.proto │ │ │ ├── python │ │ │ │ ├── python_generator.cc │ │ │ │ ├── python_generator.h │ │ │ │ └── python_plugin_unittest.cc │ │ │ ├── ruby │ │ │ │ ├── ruby_generated_code.proto │ │ │ │ ├── ruby_generated_code_pb.rb │ │ │ │ ├── ruby_generator.cc │ │ │ │ ├── ruby_generator.h │ │ │ │ └── ruby_generator_unittest.cc │ │ │ ├── subprocess.cc │ │ │ ├── subprocess.h │ │ │ ├── test_plugin.cc │ │ │ ├── zip_output_unittest.sh │ │ │ ├── zip_writer.cc │ │ │ └── zip_writer.h │ │ │ ├── descriptor.cc │ │ │ ├── descriptor.h │ │ │ ├── descriptor.pb.cc │ │ │ ├── descriptor.pb.h │ │ │ ├── descriptor.proto │ │ │ ├── descriptor_database.cc │ │ │ ├── descriptor_database.h │ │ │ ├── descriptor_database_unittest.cc │ │ │ ├── descriptor_unittest.cc │ │ │ ├── drop_unknown_fields_test.cc │ │ │ ├── duration.pb.cc │ │ │ ├── duration.pb.h │ │ │ ├── duration.proto │ │ │ ├── dynamic_message.cc │ │ │ ├── dynamic_message.h │ │ │ ├── dynamic_message_unittest.cc │ │ │ ├── empty.pb.cc │ │ │ ├── empty.pb.h │ │ │ ├── empty.proto │ │ │ ├── extension_set.cc │ │ │ ├── extension_set.h │ │ │ ├── extension_set_heavy.cc │ │ │ ├── extension_set_unittest.cc │ │ │ ├── field_mask.pb.cc │ │ │ ├── field_mask.pb.h │ │ │ ├── field_mask.proto │ │ │ ├── generated_enum_reflection.h │ │ │ ├── generated_enum_util.h │ │ │ ├── generated_message_reflection.cc │ │ │ ├── generated_message_reflection.h │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ ├── generated_message_util.cc │ │ │ ├── generated_message_util.h │ │ │ ├── io │ │ │ ├── coded_stream.cc │ │ │ ├── coded_stream.h │ │ │ ├── coded_stream_inl.h │ │ │ ├── coded_stream_unittest.cc │ │ │ ├── gzip_stream.cc │ │ │ ├── gzip_stream.h │ │ │ ├── gzip_stream_unittest.sh │ │ │ ├── package_info.h │ │ │ ├── printer.cc │ │ │ ├── printer.h │ │ │ ├── printer_unittest.cc │ │ │ ├── strtod.cc │ │ │ ├── strtod.h │ │ │ ├── tokenizer.cc │ │ │ ├── tokenizer.h │ │ │ ├── tokenizer_unittest.cc │ │ │ ├── zero_copy_stream.cc │ │ │ ├── zero_copy_stream.h │ │ │ ├── zero_copy_stream_impl.cc │ │ │ ├── zero_copy_stream_impl.h │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ └── zero_copy_stream_unittest.cc │ │ │ ├── lite_arena_unittest.cc │ │ │ ├── lite_unittest.cc │ │ │ ├── map.h │ │ │ ├── map_entry.h │ │ │ ├── map_entry_lite.h │ │ │ ├── map_field.cc │ │ │ ├── map_field.h │ │ │ ├── map_field_inl.h │ │ │ ├── map_field_lite.h │ │ │ ├── map_field_test.cc │ │ │ ├── map_lite_test_util.cc │ │ │ ├── map_lite_test_util.h │ │ │ ├── map_lite_unittest.proto │ │ │ ├── map_proto2_unittest.proto │ │ │ ├── map_test.cc │ │ │ ├── map_test_util.cc │ │ │ ├── map_test_util.h │ │ │ ├── map_test_util_impl.h │ │ │ ├── map_type_handler.h │ │ │ ├── map_unittest.proto │ │ │ ├── message.cc │ │ │ ├── message.h │ │ │ ├── message_lite.cc │ │ │ ├── message_lite.h │ │ │ ├── message_unittest.cc │ │ │ ├── metadata.h │ │ │ ├── no_field_presence_test.cc │ │ │ ├── package_info.h │ │ │ ├── preserve_unknown_enum_test.cc │ │ │ ├── proto3_arena_lite_unittest.cc │ │ │ ├── proto3_arena_unittest.cc │ │ │ ├── proto3_lite_unittest.cc │ │ │ ├── reflection.h │ │ │ ├── reflection_internal.h │ │ │ ├── reflection_ops.cc │ │ │ ├── reflection_ops.h │ │ │ ├── reflection_ops_unittest.cc │ │ │ ├── repeated_field.cc │ │ │ ├── repeated_field.h │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ ├── repeated_field_unittest.cc │ │ │ ├── service.cc │ │ │ ├── service.h │ │ │ ├── source_context.pb.cc │ │ │ ├── source_context.pb.h │ │ │ ├── source_context.proto │ │ │ ├── struct.pb.cc │ │ │ ├── struct.pb.h │ │ │ ├── struct.proto │ │ │ ├── stubs │ │ │ ├── atomic_sequence_num.h │ │ │ ├── atomicops.h │ │ │ ├── atomicops_internals_arm64_gcc.h │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ ├── atomicops_internals_arm_qnx.h │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ ├── atomicops_internals_generic_gcc.h │ │ │ ├── atomicops_internals_macosx.h │ │ │ ├── atomicops_internals_mips_gcc.h │ │ │ ├── atomicops_internals_pnacl.h │ │ │ ├── atomicops_internals_power.h │ │ │ ├── atomicops_internals_ppc_gcc.h │ │ │ ├── atomicops_internals_solaris.h │ │ │ ├── atomicops_internals_tsan.h │ │ │ ├── atomicops_internals_x86_gcc.cc │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ ├── atomicops_internals_x86_msvc.cc │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ ├── bytestream.cc │ │ │ ├── bytestream.h │ │ │ ├── bytestream_unittest.cc │ │ │ ├── callback.h │ │ │ ├── casts.h │ │ │ ├── common.cc │ │ │ ├── common.h │ │ │ ├── common_unittest.cc │ │ │ ├── fastmem.h │ │ │ ├── hash.h │ │ │ ├── int128.cc │ │ │ ├── int128.h │ │ │ ├── int128_unittest.cc │ │ │ ├── logging.h │ │ │ ├── macros.h │ │ │ ├── map_util.h │ │ │ ├── mathlimits.cc │ │ │ ├── mathlimits.h │ │ │ ├── mathutil.h │ │ │ ├── mutex.h │ │ │ ├── once.cc │ │ │ ├── once.h │ │ │ ├── once_unittest.cc │ │ │ ├── platform_macros.h │ │ │ ├── port.h │ │ │ ├── scoped_ptr.h │ │ │ ├── shared_ptr.h │ │ │ ├── singleton.h │ │ │ ├── status.cc │ │ │ ├── status.h │ │ │ ├── status_macros.h │ │ │ ├── status_test.cc │ │ │ ├── statusor.cc │ │ │ ├── statusor.h │ │ │ ├── statusor_test.cc │ │ │ ├── stl_util.h │ │ │ ├── stringpiece.cc │ │ │ ├── stringpiece.h │ │ │ ├── stringpiece_unittest.cc │ │ │ ├── stringprintf.cc │ │ │ ├── stringprintf.h │ │ │ ├── stringprintf_unittest.cc │ │ │ ├── structurally_valid.cc │ │ │ ├── structurally_valid_unittest.cc │ │ │ ├── strutil.cc │ │ │ ├── strutil.h │ │ │ ├── strutil_unittest.cc │ │ │ ├── substitute.cc │ │ │ ├── substitute.h │ │ │ ├── template_util.h │ │ │ ├── template_util_unittest.cc │ │ │ ├── time.cc │ │ │ ├── time.h │ │ │ ├── time_test.cc │ │ │ ├── type_traits.h │ │ │ └── type_traits_unittest.cc │ │ │ ├── test_util.cc │ │ │ ├── test_util.h │ │ │ ├── test_util_lite.cc │ │ │ ├── test_util_lite.h │ │ │ ├── testdata │ │ │ ├── bad_utf8_string │ │ │ ├── golden_message │ │ │ ├── golden_message_maps │ │ │ ├── golden_message_oneof_implemented │ │ │ ├── golden_message_proto3 │ │ │ ├── golden_packed_fields_message │ │ │ ├── map_test_data.txt │ │ │ ├── text_format_unittest_data.txt │ │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ │ ├── text_format_unittest_data_pointy.txt │ │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ │ ├── text_format_unittest_extensions_data.txt │ │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ │ ├── testing │ │ │ ├── file.cc │ │ │ ├── file.h │ │ │ ├── googletest.cc │ │ │ ├── googletest.h │ │ │ ├── zcgunzip.cc │ │ │ └── zcgzip.cc │ │ │ ├── text_format.cc │ │ │ ├── text_format.h │ │ │ ├── text_format_unittest.cc │ │ │ ├── timestamp.pb.cc │ │ │ ├── timestamp.pb.h │ │ │ ├── timestamp.proto │ │ │ ├── type.pb.cc │ │ │ ├── type.pb.h │ │ │ ├── type.proto │ │ │ ├── unittest.proto │ │ │ ├── unittest_arena.proto │ │ │ ├── unittest_custom_options.proto │ │ │ ├── unittest_drop_unknown_fields.proto │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ ├── unittest_empty.proto │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ ├── unittest_import.proto │ │ │ ├── unittest_import_lite.proto │ │ │ ├── unittest_import_public.proto │ │ │ ├── unittest_import_public_lite.proto │ │ │ ├── unittest_lite.proto │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ ├── unittest_mset.proto │ │ │ ├── unittest_mset_wire_format.proto │ │ │ ├── unittest_no_arena.proto │ │ │ ├── unittest_no_arena_import.proto │ │ │ ├── unittest_no_arena_lite.proto │ │ │ ├── unittest_no_field_presence.proto │ │ │ ├── unittest_no_generic_services.proto │ │ │ ├── unittest_optimize_for.proto │ │ │ ├── unittest_preserve_unknown_enum.proto │ │ │ ├── unittest_preserve_unknown_enum2.proto │ │ │ ├── unittest_proto3_arena.proto │ │ │ ├── unittest_proto3_arena_lite.proto │ │ │ ├── unittest_proto3_lite.proto │ │ │ ├── unittest_well_known_types.proto │ │ │ ├── unknown_field_set.cc │ │ │ ├── unknown_field_set.h │ │ │ ├── unknown_field_set_unittest.cc │ │ │ ├── util │ │ │ ├── field_comparator.cc │ │ │ ├── field_comparator.h │ │ │ ├── field_comparator_test.cc │ │ │ ├── field_mask_util.cc │ │ │ ├── field_mask_util.h │ │ │ ├── field_mask_util_test.cc │ │ │ ├── internal │ │ │ │ ├── constants.h │ │ │ │ ├── datapiece.cc │ │ │ │ ├── datapiece.h │ │ │ │ ├── default_value_objectwriter.cc │ │ │ │ ├── default_value_objectwriter.h │ │ │ │ ├── default_value_objectwriter_test.cc │ │ │ │ ├── error_listener.cc │ │ │ │ ├── error_listener.h │ │ │ │ ├── expecting_objectwriter.h │ │ │ │ ├── field_mask_utility.cc │ │ │ │ ├── field_mask_utility.h │ │ │ │ ├── json_escaping.cc │ │ │ │ ├── json_escaping.h │ │ │ │ ├── json_objectwriter.cc │ │ │ │ ├── json_objectwriter.h │ │ │ │ ├── json_objectwriter_test.cc │ │ │ │ ├── json_stream_parser.cc │ │ │ │ ├── json_stream_parser.h │ │ │ │ ├── json_stream_parser_test.cc │ │ │ │ ├── location_tracker.h │ │ │ │ ├── mock_error_listener.h │ │ │ │ ├── object_location_tracker.h │ │ │ │ ├── object_source.h │ │ │ │ ├── object_writer.cc │ │ │ │ ├── object_writer.h │ │ │ │ ├── proto_writer.cc │ │ │ │ ├── proto_writer.h │ │ │ │ ├── protostream_objectsource.cc │ │ │ │ ├── protostream_objectsource.h │ │ │ │ ├── protostream_objectsource_test.cc │ │ │ │ ├── protostream_objectwriter.cc │ │ │ │ ├── protostream_objectwriter.h │ │ │ │ ├── protostream_objectwriter_test.cc │ │ │ │ ├── structured_objectwriter.h │ │ │ │ ├── testdata │ │ │ │ │ ├── anys.proto │ │ │ │ │ ├── books.proto │ │ │ │ │ ├── default_value.proto │ │ │ │ │ ├── default_value_test.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── maps.proto │ │ │ │ │ ├── oneofs.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ └── timestamp_duration.proto │ │ │ │ ├── type_info.cc │ │ │ │ ├── type_info.h │ │ │ │ ├── type_info_test_helper.cc │ │ │ │ ├── type_info_test_helper.h │ │ │ │ ├── utility.cc │ │ │ │ └── utility.h │ │ │ ├── json_format_proto3.proto │ │ │ ├── json_util.cc │ │ │ ├── json_util.h │ │ │ ├── json_util_test.cc │ │ │ ├── message_differencer.cc │ │ │ ├── message_differencer.h │ │ │ ├── message_differencer_unittest.cc │ │ │ ├── message_differencer_unittest.proto │ │ │ ├── time_util.cc │ │ │ ├── time_util.h │ │ │ ├── time_util_test.cc │ │ │ ├── type_resolver.h │ │ │ ├── type_resolver_util.cc │ │ │ ├── type_resolver_util.h │ │ │ └── type_resolver_util_test.cc │ │ │ ├── well_known_types_unittest.cc │ │ │ ├── wire_format.cc │ │ │ ├── wire_format.h │ │ │ ├── wire_format_lite.cc │ │ │ ├── wire_format_lite.h │ │ │ ├── wire_format_lite_inl.h │ │ │ ├── wire_format_unittest.cc │ │ │ ├── wrappers.pb.cc │ │ │ ├── wrappers.pb.h │ │ │ └── wrappers.proto │ │ ├── test-driver │ │ ├── update_file_lists.sh │ │ └── util │ │ └── python │ │ └── BUILD ├── rapidjson │ ├── .gitattributes │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── CMakeModules │ │ └── FindGTestSrc.cmake │ ├── RapidJSON.pc.in │ ├── RapidJSONConfig.cmake.in │ ├── RapidJSONConfigVersion.cmake.in │ ├── appveyor.yml │ ├── bin │ │ ├── data │ │ │ ├── glossary.json │ │ │ ├── menu.json │ │ │ ├── readme.txt │ │ │ ├── sample.json │ │ │ ├── webapp.json │ │ │ └── widget.json │ │ ├── encodings │ │ │ ├── utf16be.json │ │ │ ├── utf16bebom.json │ │ │ ├── utf16le.json │ │ │ ├── utf16lebom.json │ │ │ ├── utf32be.json │ │ │ ├── utf32bebom.json │ │ │ ├── utf32le.json │ │ │ ├── utf32lebom.json │ │ │ ├── utf8.json │ │ │ └── utf8bom.json │ │ └── types │ │ │ ├── booleans.json │ │ │ ├── floats.json │ │ │ ├── guids.json │ │ │ ├── integers.json │ │ │ ├── mixed.json │ │ │ ├── nulls.json │ │ │ ├── paragraphs.json │ │ │ └── readme.txt │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── Doxyfile.zh-cn.in │ │ ├── diagram │ │ │ ├── architecture.dot │ │ │ ├── architecture.png │ │ │ ├── insituparsing.dot │ │ │ ├── insituparsing.png │ │ │ ├── iterative-parser-states-diagram.dot │ │ │ ├── iterative-parser-states-diagram.png │ │ │ ├── makefile │ │ │ ├── move1.dot │ │ │ ├── move1.png │ │ │ ├── move2.dot │ │ │ ├── move2.png │ │ │ ├── move3.dot │ │ │ ├── move3.png │ │ │ ├── normalparsing.dot │ │ │ ├── normalparsing.png │ │ │ ├── simpledom.dot │ │ │ ├── simpledom.png │ │ │ ├── tutorial.dot │ │ │ ├── tutorial.png │ │ │ ├── utilityclass.dot │ │ │ └── utilityclass.png │ │ ├── dom.md │ │ ├── dom.zh-cn.md │ │ ├── encoding.md │ │ ├── encoding.zh-cn.md │ │ ├── faq.md │ │ ├── faq.zh-cn.md │ │ ├── features.md │ │ ├── features.zh-cn.md │ │ ├── internals.md │ │ ├── logo │ │ │ ├── rapidjson.png │ │ │ └── rapidjson.svg │ │ ├── misc │ │ │ ├── DoxygenLayout.xml │ │ │ ├── doxygenextra.css │ │ │ ├── footer.html │ │ │ └── header.html │ │ ├── npm.md │ │ ├── performance.md │ │ ├── performance.zh-cn.md │ │ ├── pointer.md │ │ ├── pointer.zh-cn.md │ │ ├── sax.md │ │ ├── sax.zh-cn.md │ │ ├── schema.md │ │ ├── schema.zh-cn.md │ │ ├── stream.md │ │ ├── stream.zh-cn.md │ │ ├── tutorial.md │ │ └── tutorial.zh-cn.md │ ├── docker │ │ └── debian │ │ │ └── Dockerfile │ ├── example │ │ ├── CMakeLists.txt │ │ ├── capitalize │ │ │ └── capitalize.cpp │ │ ├── condense │ │ │ └── condense.cpp │ │ ├── filterkey │ │ │ └── filterkey.cpp │ │ ├── filterkeydom │ │ │ └── filterkeydom.cpp │ │ ├── jsonx │ │ │ └── jsonx.cpp │ │ ├── messagereader │ │ │ └── messagereader.cpp │ │ ├── parsebyparts │ │ │ └── parsebyparts.cpp │ │ ├── pretty │ │ │ └── pretty.cpp │ │ ├── prettyauto │ │ │ └── prettyauto.cpp │ │ ├── schemavalidator │ │ │ └── schemavalidator.cpp │ │ ├── serialize │ │ │ └── serialize.cpp │ │ ├── simpledom │ │ │ └── simpledom.cpp │ │ ├── simplereader │ │ │ └── simplereader.cpp │ │ ├── simplewriter │ │ │ └── simplewriter.cpp │ │ └── tutorial │ │ │ └── tutorial.cpp │ ├── include │ │ └── rapidjson │ │ │ ├── allocators.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ ├── include_dirs.js │ ├── library.json │ ├── license.txt │ ├── license_readme-oracle.txt │ ├── package.json │ ├── rapidjson.autopkg │ ├── readme.md │ ├── readme.zh-cn.md │ ├── test │ │ ├── CMakeLists.txt │ │ ├── perftest │ │ │ ├── CMakeLists.txt │ │ │ ├── misctest.cpp │ │ │ ├── perftest.cpp │ │ │ ├── perftest.h │ │ │ ├── platformtest.cpp │ │ │ ├── rapidjsontest.cpp │ │ │ └── schematest.cpp │ │ └── unittest │ │ │ ├── CMakeLists.txt │ │ │ ├── allocatorstest.cpp │ │ │ ├── bigintegertest.cpp │ │ │ ├── documenttest.cpp │ │ │ ├── dtoatest.cpp │ │ │ ├── encodedstreamtest.cpp │ │ │ ├── encodingstest.cpp │ │ │ ├── filestreamtest.cpp │ │ │ ├── fwdtest.cpp │ │ │ ├── istreamwrappertest.cpp │ │ │ ├── itoatest.cpp │ │ │ ├── jsoncheckertest.cpp │ │ │ ├── namespacetest.cpp │ │ │ ├── ostreamwrappertest.cpp │ │ │ ├── pointertest.cpp │ │ │ ├── prettywritertest.cpp │ │ │ ├── readertest.cpp │ │ │ ├── regextest.cpp │ │ │ ├── schematest.cpp │ │ │ ├── simdtest.cpp │ │ │ ├── strfunctest.cpp │ │ │ ├── stringbuffertest.cpp │ │ │ ├── strtodtest.cpp │ │ │ ├── unittest.cpp │ │ │ ├── unittest.h │ │ │ ├── valuetest.cpp │ │ │ └── writertest.cpp │ └── travis-doxygen.sh └── yassl │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── FLOSS-EXCEPTIONS │ ├── INSTALL │ ├── NEWS │ ├── README │ ├── certs │ ├── ca-cert.pem │ ├── ca-key.pem │ ├── client-cert.der │ ├── client-cert.pem │ ├── client-key.der │ ├── client-key.pem │ ├── client-keyEnc.pem │ ├── client-keyEnc3.pem │ ├── dh1024.dat │ ├── dsa-cert.pem │ ├── dsa1024.der │ ├── dsa1024.pem │ ├── server-cert.pem │ ├── server-key.pem │ ├── server-keyEnc.pem │ └── taoCert.txt │ ├── examples │ ├── client │ │ ├── client.cpp │ │ └── client.dsp │ ├── echoclient │ │ ├── echoclient.cpp │ │ ├── echoclient.dsp │ │ ├── input │ │ └── quit │ ├── echoserver │ │ ├── echoserver.cpp │ │ └── echoserver.dsp │ └── server │ │ ├── server.cpp │ │ └── server.dsp │ ├── include │ ├── buffer.hpp │ ├── cert_wrapper.hpp │ ├── crypto_wrapper.hpp │ ├── factory.hpp │ ├── handshake.hpp │ ├── lock.hpp │ ├── log.hpp │ ├── openssl │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── generate_prefix_files.pl │ │ ├── hmac.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── objects.h │ │ ├── opensslv.h │ │ ├── pem.h │ │ ├── pkcs12.h │ │ ├── prefix_crypto.h │ │ ├── prefix_ssl.h │ │ ├── rand.h │ │ ├── rsa.h │ │ ├── sha.h │ │ ├── ssl.h │ │ ├── transport_types.h │ │ ├── x509.h │ │ └── x509v3.h │ ├── socket_wrapper.hpp │ ├── timer.hpp │ ├── yassl.hpp │ ├── yassl_error.hpp │ ├── yassl_imp.hpp │ ├── yassl_int.hpp │ └── yassl_types.hpp │ ├── lib │ └── dummy │ ├── src │ ├── buffer.cpp │ ├── cert_wrapper.cpp │ ├── crypto_wrapper.cpp │ ├── dummy.cpp │ ├── handshake.cpp │ ├── lock.cpp │ ├── log.cpp │ ├── make.bat │ ├── socket_wrapper.cpp │ ├── ssl.cpp │ ├── template_instnt.cpp │ ├── timer.cpp │ ├── yassl.cpp │ ├── yassl_error.cpp │ ├── yassl_imp.cpp │ └── yassl_int.cpp │ ├── taocrypt │ ├── CMakeLists.txt │ ├── COPYING │ ├── INSTALL │ ├── README │ ├── benchmark │ │ ├── benchmark.cpp │ │ ├── benchmark.dsp │ │ ├── dh1024.der │ │ ├── dsa1024.der │ │ ├── make.bat │ │ └── rsa1024.der │ ├── certs │ │ └── dh1024.dat │ ├── include │ │ ├── aes.hpp │ │ ├── algebra.hpp │ │ ├── arc4.hpp │ │ ├── asn.hpp │ │ ├── block.hpp │ │ ├── blowfish.hpp │ │ ├── coding.hpp │ │ ├── des.hpp │ │ ├── dh.hpp │ │ ├── dsa.hpp │ │ ├── error.hpp │ │ ├── file.hpp │ │ ├── hash.hpp │ │ ├── hc128.hpp │ │ ├── hmac.hpp │ │ ├── integer.hpp │ │ ├── kernelc.hpp │ │ ├── md2.hpp │ │ ├── md4.hpp │ │ ├── md5.hpp │ │ ├── misc.hpp │ │ ├── modarith.hpp │ │ ├── modes.hpp │ │ ├── pwdbased.hpp │ │ ├── rabbit.hpp │ │ ├── random.hpp │ │ ├── ripemd.hpp │ │ ├── rsa.hpp │ │ ├── runtime.hpp │ │ ├── sha.hpp │ │ ├── twofish.hpp │ │ ├── type_traits.hpp │ │ └── types.hpp │ ├── mySTL │ │ ├── algorithm.hpp │ │ ├── helpers.hpp │ │ ├── list.hpp │ │ ├── memory.hpp │ │ ├── memory_array.hpp │ │ ├── pair.hpp │ │ ├── stdexcept.hpp │ │ └── vector.hpp │ ├── src │ │ ├── aes.cpp │ │ ├── aestables.cpp │ │ ├── algebra.cpp │ │ ├── arc4.cpp │ │ ├── asn.cpp │ │ ├── bftables.cpp │ │ ├── blowfish.cpp │ │ ├── coding.cpp │ │ ├── des.cpp │ │ ├── dh.cpp │ │ ├── dsa.cpp │ │ ├── file.cpp │ │ ├── hash.cpp │ │ ├── hc128.cpp │ │ ├── integer.cpp │ │ ├── make.bat │ │ ├── md2.cpp │ │ ├── md4.cpp │ │ ├── md5.cpp │ │ ├── misc.cpp │ │ ├── rabbit.cpp │ │ ├── random.cpp │ │ ├── ripemd.cpp │ │ ├── rsa.cpp │ │ ├── sha.cpp │ │ ├── template_instnt.cpp │ │ ├── tftables.cpp │ │ └── twofish.cpp │ ├── taocrypt.dsp │ ├── taocrypt.dsw │ ├── test.dsw │ └── test │ │ ├── make.bat │ │ ├── memory.cpp │ │ ├── test.cpp │ │ └── test.dsp │ ├── testsuite │ ├── cipher-test.sh │ ├── input │ ├── make.bat │ ├── quit │ ├── test.hpp │ ├── testsuite.cpp │ └── testsuite.dsp │ ├── yassl.dsp │ └── yassl.dsw ├── packaging ├── README_Debian.md ├── WiX │ ├── AdminBackground.jpg │ ├── AdminHeader.jpg │ ├── CMakeLists.txt │ ├── CPackWixConfig.cmake │ ├── MySQLRouter.ico │ ├── ca │ │ ├── CMakeLists.txt │ │ ├── CustomAction.cpp │ │ └── CustomAction.def │ ├── create_msi.cmake.in │ ├── custom_ui.wxs │ ├── extra.wxs.in │ ├── mysql_router.wxs.in │ ├── mysql_router_extra.wxs.in │ ├── mysqlrouter.conf.in │ └── versioninfo.rc.in ├── build_deb.sh ├── build_rpm.sh ├── deb-artful │ ├── changelog │ └── control ├── deb-bionic │ ├── changelog │ └── control ├── deb-common │ ├── compat │ ├── copyright │ ├── extra │ │ ├── apparmor-profile.in │ │ └── mysqlrouter.conf.in │ ├── mysql-router-dev.install │ ├── mysql-router-dev.lintian-overrides │ ├── mysql-router.install │ ├── mysql-router.lintian-overrides │ ├── mysql-router.mysqlrouter.init │ ├── mysql-router.postinst │ ├── mysql-router.postrm │ ├── mysql-router.preinst │ ├── mysql-router.prerm │ ├── rules │ └── source │ │ └── format ├── deb-jessie │ ├── changelog │ └── control ├── deb-stretch │ ├── changelog │ └── control ├── deb-trusty │ ├── changelog │ └── control ├── deb-vivid │ ├── changelog │ └── control ├── deb-wily │ ├── changelog │ └── control ├── deb-xenial │ ├── changelog │ └── control ├── deb-yakkety │ ├── changelog │ └── control ├── deb-zesty │ ├── changelog │ └── control └── rpm-oel │ ├── CMakeLists.txt │ ├── mysql-router.spec.in │ ├── mysqlrouter.conf.in │ ├── mysqlrouter.init │ ├── mysqlrouter.service │ └── mysqlrouter.tmpfiles.d ├── src ├── CMakeLists.txt ├── harness │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CPPLINT.cfg │ ├── Doxyfile.in │ ├── README.txt │ ├── data │ │ └── main.conf │ ├── include │ │ ├── common.h │ │ ├── dim.h │ │ ├── harness_assert.h │ │ ├── hostname_validator.h │ │ ├── keyring │ │ │ ├── keyring.h │ │ │ ├── keyring_file.h │ │ │ ├── keyring_manager.h │ │ │ └── keyring_memory.h │ │ ├── mysql │ │ │ └── harness │ │ │ │ ├── arg_handler.h │ │ │ │ ├── compiler_attributes.h │ │ │ │ ├── config_parser.h │ │ │ │ ├── filesystem.h │ │ │ │ ├── loader.h │ │ │ │ ├── loader_config.h │ │ │ │ ├── logging │ │ │ │ ├── handler.h │ │ │ │ ├── logger.h │ │ │ │ ├── logging.h │ │ │ │ └── registry.h │ │ │ │ ├── networking │ │ │ │ ├── ip_address.h │ │ │ │ ├── ipv4_address.h │ │ │ │ ├── ipv6_address.h │ │ │ │ └── resolver.h │ │ │ │ └── queue.h │ │ ├── mysql_router_thread.h │ │ ├── process_launcher.h │ │ ├── random_generator.h │ │ ├── socket_operations.h │ │ ├── tcp_address.h │ │ └── unique_ptr.h │ ├── internal │ │ ├── README.md │ │ ├── checks │ │ │ └── build_all.py │ │ ├── exclude-from-release.txt │ │ └── hooks │ │ │ ├── pre-commit │ │ │ ├── pre-receive │ │ │ └── update │ ├── plugin.h.in │ ├── shared │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── test │ │ │ │ └── helpers.h │ │ └── src │ │ │ └── test_helpers.cc │ ├── src │ │ ├── arg_handler.cc │ │ ├── common.cc │ │ ├── config_parser.cc │ │ ├── designator.cc │ │ ├── designator.h │ │ ├── dim.cc │ │ ├── exception.h │ │ ├── filesystem-posix.cc │ │ ├── filesystem-windows.cc │ │ ├── filesystem.cc │ │ ├── hostname_validator.cc │ │ ├── keyring │ │ │ ├── keyring_file.cc │ │ │ ├── keyring_manager.cc │ │ │ └── keyring_memory.cc │ │ ├── loader-posix.cc │ │ ├── loader-windows.cc │ │ ├── loader.cc │ │ ├── loader_config.cc │ │ ├── logging │ │ │ ├── handler.cc │ │ │ ├── logger.cc │ │ │ ├── logging.cc │ │ │ └── registry.cc │ │ ├── mysql_router_thread.cc │ │ ├── networking │ │ │ ├── ip_address.cc │ │ │ ├── ipv4_address.cc │ │ │ ├── ipv6_address.cc │ │ │ └── resolver.cc │ │ ├── process_launcher.cc │ │ ├── random_generator.cc │ │ ├── socket_operations.cc │ │ ├── tcp_address.cc │ │ ├── utilities-posix.cc │ │ ├── utilities-windows.cc │ │ ├── utilities.cc │ │ └── utilities.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── data │ │ ├── logger.cfg │ │ ├── logger.d │ │ │ ├── default.cfg │ │ │ ├── magic.cfg │ │ │ └── one.cfg │ │ ├── magic-alt.cfg │ │ ├── tests-bad-1.cfg │ │ ├── tests-bad-2.cfg │ │ ├── tests-bad-3.cfg │ │ ├── tests-good-1.cfg.in │ │ ├── tests-good-2.cfg.in │ │ └── tests-start-1.cfg.in │ │ ├── include │ │ ├── lifecycle.h │ │ └── magic.h │ │ ├── plugins │ │ ├── CMakeLists.txt │ │ ├── bad_one.cc │ │ ├── bad_two.cc │ │ ├── example.cc │ │ ├── lifecycle.cc │ │ ├── lifecycle2.cc │ │ ├── lifecycle3.cc │ │ └── magic.cc │ │ ├── test_bug22104451.cc │ │ ├── test_common.cc │ │ ├── test_config.cc │ │ ├── test_designator.cc │ │ ├── test_dim_and_unique_ptr.cc │ │ ├── test_filesystem.cc │ │ ├── test_hostname_validator.cc │ │ ├── test_ip_address.cc │ │ ├── test_iterator.cc │ │ ├── test_keyring.cc │ │ ├── test_keyring_manager.cc │ │ ├── test_loader.cc │ │ ├── test_loader_lifecycle.cc │ │ ├── test_logging.cc │ │ ├── test_mysql_router_thread.cc │ │ ├── test_queue.cc │ │ ├── test_random_generator.cc │ │ ├── test_resolver.cc │ │ └── test_utilities.cc ├── http │ ├── CMakeLists.txt │ ├── include │ │ └── mysqlrouter │ │ │ ├── http_client.h │ │ │ ├── http_client_export.h │ │ │ ├── http_common.h │ │ │ ├── http_common_export.h │ │ │ ├── http_server_component.h │ │ │ ├── http_server_export.h │ │ │ └── rest_client.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── http_client.cc │ │ ├── http_common.cc │ │ ├── http_request_impl.h │ │ ├── http_server_component.cc │ │ ├── http_server_plugin.cc │ │ ├── http_server_plugin.h │ │ ├── http_time.cc │ │ ├── posix_re.h │ │ ├── rest_cli.cc │ │ ├── rest_client.cc │ │ └── static_files.cc │ └── tests │ │ ├── CMakeLists.txt │ │ ├── test_posix_re.cc │ │ └── test_time.cc ├── keepalive │ ├── CMakeLists.txt │ ├── src │ │ └── keepalive.cc │ └── tests │ │ ├── CMakeLists.txt │ │ ├── data │ │ └── keepalive.cfg.in │ │ └── test_plugin_keepalive.cc ├── metadata_cache │ ├── CMakeLists.txt │ ├── include │ │ └── mysqlrouter │ │ │ └── metadata_cache.h │ ├── src │ │ ├── cache_api.cc │ │ ├── cluster_metadata.cc │ │ ├── cluster_metadata.h │ │ ├── group_replication_metadata.cc │ │ ├── group_replication_metadata.h │ │ ├── metadata.h │ │ ├── metadata_cache.cc │ │ ├── metadata_cache.h │ │ ├── metadata_cache_plugin.cc │ │ ├── metadata_factory.cc │ │ ├── metadata_factory.h │ │ ├── plugin_config.cc │ │ └── plugin_config.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── helper │ │ ├── mock_metadata.cc │ │ ├── mock_metadata.h │ │ └── mock_metadata_factory.cc │ │ ├── test_cache_plugin.cc │ │ ├── test_failover.cc │ │ ├── test_metadata.cc │ │ ├── test_metadata_cache.cc │ │ └── test_plugin_config.cc ├── mock_server │ ├── CMakeLists.txt │ ├── include │ │ └── mysqlrouter │ │ │ ├── mock_server_component.h │ │ │ ├── mock_server_export.h │ │ │ └── mock_server_global_scope.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── duk_module_shim.c │ │ ├── duk_module_shim.h │ │ ├── duk_node_fs.c │ │ ├── duk_node_fs.h │ │ ├── duktape_statement_reader.cc │ │ ├── duktape_statement_reader.h │ │ ├── json_schema_embedder.cc │ │ ├── json_statement_reader.cc │ │ ├── json_statement_reader.h │ │ ├── main.cc │ │ ├── mock_server_component.cc │ │ ├── mock_server_plugin.cc │ │ ├── mock_server_plugin.h │ │ ├── mysql_protocol_common.h │ │ ├── mysql_protocol_decoder.cc │ │ ├── mysql_protocol_decoder.h │ │ ├── mysql_protocol_encoder.cc │ │ ├── mysql_protocol_encoder.h │ │ ├── mysql_protocol_utils.cc │ │ ├── mysql_protocol_utils.h │ │ ├── mysql_server_mock.cc │ │ ├── mysql_server_mock.h │ │ ├── mysql_server_mock.md │ │ ├── mysql_server_mock_schema.h │ │ ├── mysql_server_mock_schema.js │ │ ├── rest_mock_server.cc │ │ └── statement_reader.h ├── mysql_protocol │ ├── CMakeLists.txt │ ├── include │ │ └── mysqlrouter │ │ │ ├── mysql_protocol.h │ │ │ └── mysql_protocol │ │ │ ├── base_packet.h │ │ │ ├── constants.h │ │ │ ├── error_packet.h │ │ │ └── handshake_packet.h │ ├── src │ │ ├── base_packet.cc │ │ ├── error_packet.cc │ │ └── handshake_packet.cc │ └── tests │ │ ├── CMakeLists.txt │ │ ├── test_base_packet.cc │ │ ├── test_constants.cc │ │ ├── test_error_packet.cc │ │ └── test_handshake_packet.cc ├── plugin_info │ ├── CMakeLists.txt │ ├── src │ │ ├── library_file.cc │ │ ├── library_file.h │ │ ├── main.cc │ │ ├── plugin.cc │ │ ├── plugin.h │ │ ├── plugin_info_app.cc │ │ └── plugin_info_app.h │ └── tests │ │ ├── CMakeLists.txt │ │ └── test_plugin_info_app.cc ├── router │ ├── CMakeLists.txt │ ├── include │ │ └── mysqlrouter │ │ │ ├── datatypes.h │ │ │ ├── keyring_info.h │ │ │ ├── log_filter.h │ │ │ ├── my_aes.h │ │ │ ├── my_aes_impl.h │ │ │ ├── mysql_session.h │ │ │ ├── plugin_config.h │ │ │ ├── sha1.h │ │ │ ├── uri.h │ │ │ ├── utils.h │ │ │ ├── utils_sqlstring.h │ │ │ └── windows │ │ │ └── password_vault.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cluster_metadata.cc │ │ ├── cluster_metadata.h │ │ ├── common │ │ │ ├── log_filter.cc │ │ │ ├── my_aes.cc │ │ │ ├── my_aes_openssl.cc │ │ │ ├── my_aes_yassl.cc │ │ │ ├── my_sha1.cc │ │ │ ├── mysql_session.cc │ │ │ └── utils_sqlstring.cc │ │ ├── config_files.cc │ │ ├── config_files.h │ │ ├── config_generator.cc │ │ ├── config_generator.h │ │ ├── keyring_info.cc │ │ ├── main.cc │ │ ├── plugin_config.cc │ │ ├── router_app.cc │ │ ├── router_app.h │ │ ├── uri.cc │ │ ├── utils.cc │ │ └── windows │ │ │ ├── main-windows.cc │ │ │ ├── main-windows.h │ │ │ ├── nt_servc.cc │ │ │ ├── nt_servc.h │ │ │ └── password_vault.cc │ └── tests │ │ ├── CMakeLists.txt │ │ ├── config_a.conf │ │ ├── config_b.conf │ │ ├── config_c.ini │ │ ├── issues │ │ ├── test_bug22074209.cc │ │ ├── test_bug22084430.cc │ │ ├── test_bug22572346.cc │ │ └── test_bug24909259.cc │ │ ├── mysqlrouter.conf.in │ │ ├── mysqlrouter_app.cc │ │ ├── mysqlrouter_consolelogger.conf.in │ │ ├── mysqlrouter_extra.conf.in │ │ ├── mysqlrouter_nologger.conf.in │ │ ├── mysqlrouter_utils.cc │ │ ├── parse_error.conf │ │ ├── router_arghandler.cc │ │ ├── test_cluster_metadata.cc │ │ ├── test_config_files.cc │ │ ├── test_config_generator.cc │ │ ├── test_configuration_errors.cc │ │ ├── test_console_output.cc │ │ ├── test_datatypes.cc │ │ ├── test_log_filter.cc │ │ ├── test_metadata_check.cc │ │ ├── test_mysql_session.cc │ │ ├── test_plugins_config.cc │ │ ├── test_uri.cc │ │ └── test_utils.cc ├── routing │ ├── CMakeLists.txt │ ├── include │ │ └── mysqlrouter │ │ │ └── routing.h │ ├── src │ │ ├── connection.cc │ │ ├── connection.h │ │ ├── connection_container.cc │ │ ├── connection_container.h │ │ ├── context.cc │ │ ├── context.h │ │ ├── dest_first_available.cc │ │ ├── dest_first_available.h │ │ ├── dest_metadata_cache.cc │ │ ├── dest_metadata_cache.h │ │ ├── dest_next_available.cc │ │ ├── dest_next_available.h │ │ ├── dest_round_robin.cc │ │ ├── dest_round_robin.h │ │ ├── destination.cc │ │ ├── destination.h │ │ ├── mysql_routing.cc │ │ ├── mysql_routing.h │ │ ├── mysql_routing_common.cc │ │ ├── mysql_routing_common.h │ │ ├── plugin_config.cc │ │ ├── plugin_config.h │ │ ├── protocol │ │ │ ├── base_protocol.h │ │ │ ├── classic_protocol.cc │ │ │ ├── classic_protocol.h │ │ │ ├── protocol.h │ │ │ ├── x_protocol.cc │ │ │ └── x_protocol.h │ │ ├── routing.cc │ │ ├── routing_plugin.cc │ │ ├── utils.cc │ │ └── utils.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── data │ │ └── 1route.conf.in │ │ ├── issues │ │ ├── test_bug21873666.cc │ │ ├── test_bug21962350.cc │ │ ├── test_bug22062859.cc │ │ └── test_bug22579989.cc │ │ ├── plugin │ │ └── test_plugin.cc │ │ ├── routing_mocks.h │ │ ├── test_block_clients.cc │ │ ├── test_classic_protocol.cc │ │ ├── test_config.cc │ │ ├── test_connection.cc │ │ ├── test_connection_container.cc │ │ ├── test_first_available.cc │ │ ├── test_metadata_cache_group.cc │ │ ├── test_next_available.cc │ │ ├── test_round_robin.cc │ │ ├── test_routing.cc │ │ ├── test_setup_named_socket_service.cc │ │ ├── test_setup_tcp_service.cc │ │ └── test_x_protocol.cc ├── syslog │ ├── CMakeLists.txt │ └── src │ │ └── syslog.cc └── x_protocol │ ├── CMakeLists.txt │ ├── include │ └── mysqlrouter │ │ └── xprotocol.h │ └── proto │ ├── mysqlx.proto │ ├── mysqlx_connection.proto │ ├── mysqlx_crud.proto │ ├── mysqlx_datatypes.proto │ ├── mysqlx_expect.proto │ ├── mysqlx_expr.proto │ ├── mysqlx_notice.proto │ ├── mysqlx_resultset.proto │ ├── mysqlx_session.proto │ └── mysqlx_sql.proto └── tests ├── CMakeLists.txt ├── component ├── CMakeLists.txt ├── data │ ├── bootstrap.js │ ├── bootstrap_access_error_at_grant.js │ ├── bootstrap_account_host_multiple_patterns.js │ ├── bootstrap_account_host_pattern_too_long.js │ ├── bootstrap_big_data.js │ ├── bootstrap_exec_time_2_seconds.js │ ├── bootstrap_failover_at_crash.js │ ├── bootstrap_failover_at_grant.js │ ├── bootstrap_failover_reconfigure_ok.js │ ├── bootstrap_failover_reconfigure_ok_3_old_users.js │ ├── bootstrap_failover_super_read_only_1.js │ ├── bootstrap_failover_super_read_only_2.js │ ├── bootstrap_failover_super_read_only_dead_2nd_1.js │ ├── bootstrap_failover_super_read_only_delete_user.js │ ├── bootstrap_report_host.js │ ├── bootstrap_unsupported_schema_version.js │ ├── js_test_empty_file.js │ ├── js_test_nesting.js │ ├── js_test_parse_error.js │ ├── js_test_require.js │ ├── js_test_stmts_is_array.js │ ├── js_test_stmts_is_coroutine.js │ ├── js_test_stmts_is_empty.js │ ├── js_test_stmts_is_function.js │ ├── js_test_stmts_is_string.js │ ├── js_test_stmts_result_has_infinity.js │ ├── js_test_stmts_result_has_negative_int.js │ ├── js_test_stmts_result_has_repeat.js │ ├── local_modules │ │ ├── common_statements.js │ │ ├── gr_memberships.js │ │ └── itertools.js │ ├── metadata_1_node.js │ ├── metadata_1_node_repeat.js │ ├── metadata_3_nodes_first_not_accessible.js │ ├── metadata_3_secondaries.js │ ├── metadata_3_secondaries_failed_to_update.js │ ├── metadata_3_secondaries_pass.js │ ├── metadata_3_secondaries_primary_failover.js │ ├── metadata_3_secondaries_server_removed_from_cluster.js │ ├── metadata_4_secondaries_partitioning.js │ ├── my_port.js │ ├── rest_server_mock.js │ ├── simple-client.js │ └── test_modules │ │ ├── test-require-dir-with-indexjs │ │ └── index.js │ │ ├── test-require-dir-with-packagejson │ │ ├── foo.js │ │ └── package.json │ │ ├── test-require-direct.js │ │ ├── test-require-nesting-1.js │ │ ├── test-require-nesting-2.js │ │ ├── test-require-nesting-3.js │ │ ├── test-require-nesting-4.js │ │ └── test-require-nesting-5.js ├── test_bootstrap.cc ├── test_bootstrap_system_deployment.cc ├── test_component_test_framework.cc ├── test_config.cc ├── test_logging.cc ├── test_master_key_reader_writer.cc ├── test_metadata_ttl.cc ├── test_mock_server.cc ├── test_rest_mock_server.cc ├── test_routing.cc ├── test_routing_connection.cc ├── test_routing_strategy.cc └── test_user_option.cc ├── coverage.ignore ├── fuzzers ├── CMakeLists.txt ├── README.txt ├── corpus │ ├── fuzz_router_uri │ │ ├── uri-1 │ │ ├── uri-2 │ │ └── uri-3 │ └── fuzz_router_uri_tostring │ │ └── uri-ipv6-zoneid ├── fuzz_router_uri.cc └── fuzz_router_uri_tostring.cc ├── gcoverage.sh ├── helpers ├── cmd_exec-windows.cc ├── cmd_exec-windows.h ├── cmd_exec.cc ├── cmd_exec.h ├── gtest_consoleoutput.h ├── master_key_test_writer.cc ├── mysql_session_replayer.cc ├── mysql_session_replayer.h ├── router_component_test.cc ├── router_component_test.h ├── router_test_helpers.cc ├── router_test_helpers.h ├── script_generator.cc ├── script_generator.h ├── tcp_port_pool.cc └── tcp_port_pool.h ├── legal ├── test_legal.cc └── test_project_name.cc └── tools └── gtest_cxx.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/README.txt -------------------------------------------------------------------------------- /cmake/Coverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/Coverage.cmake -------------------------------------------------------------------------------- /cmake/FindGMock.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/FindGMock.cmake -------------------------------------------------------------------------------- /cmake/FindLibEvent2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/FindLibEvent2.cmake -------------------------------------------------------------------------------- /cmake/FindMySQL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/FindMySQL.cmake -------------------------------------------------------------------------------- /cmake/HarnessTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/HarnessTesting.cmake -------------------------------------------------------------------------------- /cmake/Plugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/Plugin.cmake -------------------------------------------------------------------------------- /cmake/TextUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/TextUtils.cmake -------------------------------------------------------------------------------- /cmake/cmake_parse_arguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/cmake_parse_arguments.cmake -------------------------------------------------------------------------------- /cmake/compile_flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/compile_flags.cmake -------------------------------------------------------------------------------- /cmake/compiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/compiler.cmake -------------------------------------------------------------------------------- /cmake/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/configure.cmake -------------------------------------------------------------------------------- /cmake/docs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/docs.cmake -------------------------------------------------------------------------------- /cmake/gmocktest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/gmocktest.cmake -------------------------------------------------------------------------------- /cmake/install_layout.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/install_layout.cmake -------------------------------------------------------------------------------- /cmake/libutils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/libutils.cmake -------------------------------------------------------------------------------- /cmake/mysqlx_protobuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/mysqlx_protobuf.cmake -------------------------------------------------------------------------------- /cmake/packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/packaging.cmake -------------------------------------------------------------------------------- /cmake/platform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/platform.cmake -------------------------------------------------------------------------------- /cmake/protobuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/protobuf.cmake -------------------------------------------------------------------------------- /cmake/settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/settings.cmake -------------------------------------------------------------------------------- /cmake/ssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/ssl.cmake -------------------------------------------------------------------------------- /cmake/testing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/testing.cmake -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/cmake/version.cmake -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/config.h.in -------------------------------------------------------------------------------- /doc/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/doc/doxygen.cfg.in -------------------------------------------------------------------------------- /doc/router_doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/doc/router_doxygen.css -------------------------------------------------------------------------------- /doc/router_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/doc/router_footer.html -------------------------------------------------------------------------------- /doc/router_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/doc/router_header.html -------------------------------------------------------------------------------- /doc/sample_mysqlrouter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/doc/sample_mysqlrouter.conf -------------------------------------------------------------------------------- /ext/RAPIDJSON-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/RAPIDJSON-README -------------------------------------------------------------------------------- /ext/duktape/duktape-2.1.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/duktape/duktape-2.1.0/LICENSE.txt -------------------------------------------------------------------------------- /ext/duktape/duktape-2.1.0/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/duktape/duktape-2.1.0/README.rst -------------------------------------------------------------------------------- /ext/duktape/duktape-2.1.0/licenses/lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/duktape/duktape-2.1.0/licenses/lua.txt -------------------------------------------------------------------------------- /ext/duktape/duktape-2.1.0/src/duk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/duktape/duktape-2.1.0/src/duk_config.h -------------------------------------------------------------------------------- /ext/duktape/duktape-2.1.0/src/duktape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/duktape/duktape-2.1.0/src/duktape.c -------------------------------------------------------------------------------- /ext/duktape/duktape-2.1.0/src/duktape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/duktape/duktape-2.1.0/src/duktape.h -------------------------------------------------------------------------------- /ext/gmock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/CHANGES -------------------------------------------------------------------------------- /ext/gmock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/CMakeLists.txt -------------------------------------------------------------------------------- /ext/gmock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/CONTRIBUTORS -------------------------------------------------------------------------------- /ext/gmock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/LICENSE -------------------------------------------------------------------------------- /ext/gmock/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/Makefile.am -------------------------------------------------------------------------------- /ext/gmock/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/README -------------------------------------------------------------------------------- /ext/gmock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/gmock/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/configure.ac -------------------------------------------------------------------------------- /ext/gmock/include/gmock/gmock-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/include/gmock/gmock-actions.h -------------------------------------------------------------------------------- /ext/gmock/include/gmock/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/include/gmock/gmock-matchers.h -------------------------------------------------------------------------------- /ext/gmock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/include/gmock/gmock.h -------------------------------------------------------------------------------- /ext/gmock/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/make/Makefile -------------------------------------------------------------------------------- /ext/gmock/msvc/2005/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2005/gmock.sln -------------------------------------------------------------------------------- /ext/gmock/msvc/2005/gmock.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2005/gmock.vcproj -------------------------------------------------------------------------------- /ext/gmock/msvc/2005/gmock_config.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2005/gmock_config.vsprops -------------------------------------------------------------------------------- /ext/gmock/msvc/2005/gmock_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2005/gmock_main.vcproj -------------------------------------------------------------------------------- /ext/gmock/msvc/2005/gmock_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2005/gmock_test.vcproj -------------------------------------------------------------------------------- /ext/gmock/msvc/2010/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2010/gmock.sln -------------------------------------------------------------------------------- /ext/gmock/msvc/2010/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2010/gmock.vcxproj -------------------------------------------------------------------------------- /ext/gmock/msvc/2010/gmock_config.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2010/gmock_config.props -------------------------------------------------------------------------------- /ext/gmock/msvc/2010/gmock_main.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2010/gmock_main.vcxproj -------------------------------------------------------------------------------- /ext/gmock/msvc/2010/gmock_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/msvc/2010/gmock_test.vcxproj -------------------------------------------------------------------------------- /ext/gmock/scripts/fuse_gmock_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/fuse_gmock_files.py -------------------------------------------------------------------------------- /ext/gmock/scripts/generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/generator/LICENSE -------------------------------------------------------------------------------- /ext/gmock/scripts/generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/generator/README -------------------------------------------------------------------------------- /ext/gmock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/gmock/scripts/generator/cpp/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/generator/cpp/ast.py -------------------------------------------------------------------------------- /ext/gmock/scripts/generator/cpp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/generator/cpp/utils.py -------------------------------------------------------------------------------- /ext/gmock/scripts/generator/gmock_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/generator/gmock_gen.py -------------------------------------------------------------------------------- /ext/gmock/scripts/gmock-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/gmock-config.in -------------------------------------------------------------------------------- /ext/gmock/scripts/gmock_doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/gmock_doctor.py -------------------------------------------------------------------------------- /ext/gmock/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/upload.py -------------------------------------------------------------------------------- /ext/gmock/scripts/upload_gmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/scripts/upload_gmock.py -------------------------------------------------------------------------------- /ext/gmock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/src/gmock-all.cc -------------------------------------------------------------------------------- /ext/gmock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /ext/gmock/src/gmock-internal-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/src/gmock-internal-utils.cc -------------------------------------------------------------------------------- /ext/gmock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /ext/gmock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /ext/gmock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/src/gmock.cc -------------------------------------------------------------------------------- /ext/gmock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/src/gmock_main.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock-actions_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock-cardinalities_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock-cardinalities_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock-matchers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock-matchers_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock-more-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock-more-actions_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock-nice-strict_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock-nice-strict_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock-port_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock-spec-builders_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock-spec-builders_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_all_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_ex_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_leak_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_leak_test.py -------------------------------------------------------------------------------- /ext/gmock/test/gmock_leak_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_leak_test_.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_link2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_link2_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_link_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_link_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_link_test.h -------------------------------------------------------------------------------- /ext/gmock/test/gmock_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_output_test.py -------------------------------------------------------------------------------- /ext/gmock/test/gmock_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_output_test_.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_stress_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_test.cc -------------------------------------------------------------------------------- /ext/gmock/test/gmock_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gmock/test/gmock_test_utils.py -------------------------------------------------------------------------------- /ext/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/CHANGES -------------------------------------------------------------------------------- /ext/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /ext/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /ext/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/LICENSE -------------------------------------------------------------------------------- /ext/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/Makefile.am -------------------------------------------------------------------------------- /ext/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/README -------------------------------------------------------------------------------- /ext/gtest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /ext/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /ext/gtest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /ext/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /ext/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /ext/gtest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /ext/gtest/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /ext/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/configure.ac -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /ext/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /ext/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /ext/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /ext/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/make/Makefile -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /ext/gtest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /ext/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /ext/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample1.h -------------------------------------------------------------------------------- /ext/gtest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample2.h -------------------------------------------------------------------------------- /ext/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /ext/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample4.h -------------------------------------------------------------------------------- /ext/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /ext/gtest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /ext/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /ext/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/scripts/pump.py -------------------------------------------------------------------------------- /ext/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /ext/gtest/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/scripts/upload.py -------------------------------------------------------------------------------- /ext/gtest/scripts/upload_gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/scripts/upload_gtest.py -------------------------------------------------------------------------------- /ext/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /ext/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /ext/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /ext/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /ext/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /ext/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /ext/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /ext/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /ext/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest.cc -------------------------------------------------------------------------------- /ext/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /ext/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /ext/gtest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_color_test.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_output_test.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /ext/gtest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /ext/gtest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /ext/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/production.cc -------------------------------------------------------------------------------- /ext/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/test/production.h -------------------------------------------------------------------------------- /ext/gtest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /ext/gtest/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /ext/gtest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /ext/gtest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /ext/gtest/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/gtest/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /ext/protobuf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/CMakeLists.txt -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/BUILD -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/CHANGES.txt -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/LICENSE -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/Makefile.am -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/Makefile.in -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/README.md -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/WORKSPACE -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/aclocal.m4 -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/ar-lib -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/autogen.sh -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/compile -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/config.guess -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/config.h.in -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/config.sub -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/configure -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/configure.ac -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/depcomp -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/gmock.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/gmock.BUILD -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/install-sh -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/ltmain.sh -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/m4/libtool.m4 -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/m4/stl_hash.m4 -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/missing -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/protobuf.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/protobuf.bzl -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/protobuf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/protobuf.pc.in -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/six.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/six.BUILD -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/src/README.md -------------------------------------------------------------------------------- /ext/protobuf/protobuf-3.0.0/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/protobuf/protobuf-3.0.0/test-driver -------------------------------------------------------------------------------- /ext/rapidjson/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/.gitattributes -------------------------------------------------------------------------------- /ext/rapidjson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/.gitignore -------------------------------------------------------------------------------- /ext/rapidjson/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/.gitmodules -------------------------------------------------------------------------------- /ext/rapidjson/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/.travis.yml -------------------------------------------------------------------------------- /ext/rapidjson/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/CHANGELOG.md -------------------------------------------------------------------------------- /ext/rapidjson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/CMakeLists.txt -------------------------------------------------------------------------------- /ext/rapidjson/RapidJSON.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/RapidJSON.pc.in -------------------------------------------------------------------------------- /ext/rapidjson/RapidJSONConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/RapidJSONConfig.cmake.in -------------------------------------------------------------------------------- /ext/rapidjson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/appveyor.yml -------------------------------------------------------------------------------- /ext/rapidjson/bin/data/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/data/glossary.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/data/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/data/menu.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/data/readme.txt -------------------------------------------------------------------------------- /ext/rapidjson/bin/data/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/data/sample.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/data/webapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/data/webapp.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/data/widget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/data/widget.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/encodings/utf16be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/encodings/utf16be.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/encodings/utf16le.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/encodings/utf16le.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/encodings/utf32be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/encodings/utf32be.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/encodings/utf32le.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/encodings/utf32le.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/encodings/utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/encodings/utf8.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/encodings/utf8bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/encodings/utf8bom.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/types/booleans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/types/booleans.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/types/floats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/types/floats.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/types/guids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/types/guids.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/types/integers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/types/integers.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/types/mixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/types/mixed.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/types/nulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/types/nulls.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/types/paragraphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/types/paragraphs.json -------------------------------------------------------------------------------- /ext/rapidjson/bin/types/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/bin/types/readme.txt -------------------------------------------------------------------------------- /ext/rapidjson/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/CMakeLists.txt -------------------------------------------------------------------------------- /ext/rapidjson/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/Doxyfile.in -------------------------------------------------------------------------------- /ext/rapidjson/doc/Doxyfile.zh-cn.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/Doxyfile.zh-cn.in -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/architecture.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/architecture.dot -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/architecture.png -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/makefile -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/move1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/move1.dot -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/move1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/move1.png -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/move2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/move2.dot -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/move2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/move2.png -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/move3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/move3.dot -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/move3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/move3.png -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/simpledom.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/simpledom.dot -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/simpledom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/simpledom.png -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/tutorial.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/tutorial.dot -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/tutorial.png -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/utilityclass.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/utilityclass.dot -------------------------------------------------------------------------------- /ext/rapidjson/doc/diagram/utilityclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/diagram/utilityclass.png -------------------------------------------------------------------------------- /ext/rapidjson/doc/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/dom.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/dom.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/dom.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/encoding.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/encoding.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/encoding.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/faq.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/faq.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/faq.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/features.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/features.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/features.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/internals.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/logo/rapidjson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/logo/rapidjson.png -------------------------------------------------------------------------------- /ext/rapidjson/doc/logo/rapidjson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/logo/rapidjson.svg -------------------------------------------------------------------------------- /ext/rapidjson/doc/misc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/misc/DoxygenLayout.xml -------------------------------------------------------------------------------- /ext/rapidjson/doc/misc/doxygenextra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/misc/doxygenextra.css -------------------------------------------------------------------------------- /ext/rapidjson/doc/misc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/misc/footer.html -------------------------------------------------------------------------------- /ext/rapidjson/doc/misc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/misc/header.html -------------------------------------------------------------------------------- /ext/rapidjson/doc/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/npm.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/performance.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/performance.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/performance.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/pointer.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/pointer.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/pointer.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/sax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/sax.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/sax.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/sax.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/schema.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/schema.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/schema.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/stream.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/stream.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/stream.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/tutorial.md -------------------------------------------------------------------------------- /ext/rapidjson/doc/tutorial.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/doc/tutorial.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/docker/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/docker/debian/Dockerfile -------------------------------------------------------------------------------- /ext/rapidjson/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/example/CMakeLists.txt -------------------------------------------------------------------------------- /ext/rapidjson/example/jsonx/jsonx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/example/jsonx/jsonx.cpp -------------------------------------------------------------------------------- /ext/rapidjson/example/pretty/pretty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/example/pretty/pretty.cpp -------------------------------------------------------------------------------- /ext/rapidjson/include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include/rapidjson/document.h -------------------------------------------------------------------------------- /ext/rapidjson/include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /ext/rapidjson/include/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include/rapidjson/fwd.h -------------------------------------------------------------------------------- /ext/rapidjson/include/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include/rapidjson/pointer.h -------------------------------------------------------------------------------- /ext/rapidjson/include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include/rapidjson/reader.h -------------------------------------------------------------------------------- /ext/rapidjson/include/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include/rapidjson/schema.h -------------------------------------------------------------------------------- /ext/rapidjson/include/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include/rapidjson/stream.h -------------------------------------------------------------------------------- /ext/rapidjson/include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include/rapidjson/writer.h -------------------------------------------------------------------------------- /ext/rapidjson/include_dirs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/include_dirs.js -------------------------------------------------------------------------------- /ext/rapidjson/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/library.json -------------------------------------------------------------------------------- /ext/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/license.txt -------------------------------------------------------------------------------- /ext/rapidjson/license_readme-oracle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/license_readme-oracle.txt -------------------------------------------------------------------------------- /ext/rapidjson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/package.json -------------------------------------------------------------------------------- /ext/rapidjson/rapidjson.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/rapidjson.autopkg -------------------------------------------------------------------------------- /ext/rapidjson/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/readme.md -------------------------------------------------------------------------------- /ext/rapidjson/readme.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/readme.zh-cn.md -------------------------------------------------------------------------------- /ext/rapidjson/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/CMakeLists.txt -------------------------------------------------------------------------------- /ext/rapidjson/test/perftest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/perftest/CMakeLists.txt -------------------------------------------------------------------------------- /ext/rapidjson/test/perftest/misctest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/perftest/misctest.cpp -------------------------------------------------------------------------------- /ext/rapidjson/test/perftest/perftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/perftest/perftest.cpp -------------------------------------------------------------------------------- /ext/rapidjson/test/perftest/perftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/perftest/perftest.h -------------------------------------------------------------------------------- /ext/rapidjson/test/perftest/schematest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/perftest/schematest.cpp -------------------------------------------------------------------------------- /ext/rapidjson/test/unittest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/unittest/CMakeLists.txt -------------------------------------------------------------------------------- /ext/rapidjson/test/unittest/dtoatest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/unittest/dtoatest.cpp -------------------------------------------------------------------------------- /ext/rapidjson/test/unittest/fwdtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/unittest/fwdtest.cpp -------------------------------------------------------------------------------- /ext/rapidjson/test/unittest/itoatest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/unittest/itoatest.cpp -------------------------------------------------------------------------------- /ext/rapidjson/test/unittest/unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/test/unittest/unittest.h -------------------------------------------------------------------------------- /ext/rapidjson/travis-doxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/rapidjson/travis-doxygen.sh -------------------------------------------------------------------------------- /ext/yassl/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/yassl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/CMakeLists.txt -------------------------------------------------------------------------------- /ext/yassl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/COPYING -------------------------------------------------------------------------------- /ext/yassl/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/yassl/FLOSS-EXCEPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/FLOSS-EXCEPTIONS -------------------------------------------------------------------------------- /ext/yassl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/INSTALL -------------------------------------------------------------------------------- /ext/yassl/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/yassl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/README -------------------------------------------------------------------------------- /ext/yassl/certs/ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/ca-cert.pem -------------------------------------------------------------------------------- /ext/yassl/certs/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/ca-key.pem -------------------------------------------------------------------------------- /ext/yassl/certs/client-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/client-cert.der -------------------------------------------------------------------------------- /ext/yassl/certs/client-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/client-cert.pem -------------------------------------------------------------------------------- /ext/yassl/certs/client-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/client-key.der -------------------------------------------------------------------------------- /ext/yassl/certs/client-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/client-key.pem -------------------------------------------------------------------------------- /ext/yassl/certs/client-keyEnc.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/client-keyEnc.pem -------------------------------------------------------------------------------- /ext/yassl/certs/client-keyEnc3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/client-keyEnc3.pem -------------------------------------------------------------------------------- /ext/yassl/certs/dh1024.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/dh1024.dat -------------------------------------------------------------------------------- /ext/yassl/certs/dsa-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/dsa-cert.pem -------------------------------------------------------------------------------- /ext/yassl/certs/dsa1024.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/dsa1024.der -------------------------------------------------------------------------------- /ext/yassl/certs/dsa1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/dsa1024.pem -------------------------------------------------------------------------------- /ext/yassl/certs/server-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/server-cert.pem -------------------------------------------------------------------------------- /ext/yassl/certs/server-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/server-key.pem -------------------------------------------------------------------------------- /ext/yassl/certs/server-keyEnc.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/server-keyEnc.pem -------------------------------------------------------------------------------- /ext/yassl/certs/taoCert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/certs/taoCert.txt -------------------------------------------------------------------------------- /ext/yassl/examples/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/examples/client/client.cpp -------------------------------------------------------------------------------- /ext/yassl/examples/client/client.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/examples/client/client.dsp -------------------------------------------------------------------------------- /ext/yassl/examples/echoclient/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/examples/echoclient/input -------------------------------------------------------------------------------- /ext/yassl/examples/echoclient/quit: -------------------------------------------------------------------------------- 1 | quit 2 | 3 | -------------------------------------------------------------------------------- /ext/yassl/examples/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/examples/server/server.cpp -------------------------------------------------------------------------------- /ext/yassl/examples/server/server.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/examples/server/server.dsp -------------------------------------------------------------------------------- /ext/yassl/include/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/buffer.hpp -------------------------------------------------------------------------------- /ext/yassl/include/cert_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/cert_wrapper.hpp -------------------------------------------------------------------------------- /ext/yassl/include/crypto_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/crypto_wrapper.hpp -------------------------------------------------------------------------------- /ext/yassl/include/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/factory.hpp -------------------------------------------------------------------------------- /ext/yassl/include/handshake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/handshake.hpp -------------------------------------------------------------------------------- /ext/yassl/include/lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/lock.hpp -------------------------------------------------------------------------------- /ext/yassl/include/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/log.hpp -------------------------------------------------------------------------------- /ext/yassl/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/crypto.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/des.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/des_old.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/engine.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/err.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/evp.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/hmac.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/lhash.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/md4.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/md5.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/objects.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/opensslv.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/pem.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/prefix_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/prefix_ssl.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/rand.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/rsa.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/sha.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/ssl.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/x509.h -------------------------------------------------------------------------------- /ext/yassl/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/openssl/x509v3.h -------------------------------------------------------------------------------- /ext/yassl/include/socket_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/socket_wrapper.hpp -------------------------------------------------------------------------------- /ext/yassl/include/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/timer.hpp -------------------------------------------------------------------------------- /ext/yassl/include/yassl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/yassl.hpp -------------------------------------------------------------------------------- /ext/yassl/include/yassl_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/yassl_error.hpp -------------------------------------------------------------------------------- /ext/yassl/include/yassl_imp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/yassl_imp.hpp -------------------------------------------------------------------------------- /ext/yassl/include/yassl_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/yassl_int.hpp -------------------------------------------------------------------------------- /ext/yassl/include/yassl_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/include/yassl_types.hpp -------------------------------------------------------------------------------- /ext/yassl/lib/dummy: -------------------------------------------------------------------------------- 1 | // this is a dummy file 2 | -------------------------------------------------------------------------------- /ext/yassl/src/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/buffer.cpp -------------------------------------------------------------------------------- /ext/yassl/src/cert_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/cert_wrapper.cpp -------------------------------------------------------------------------------- /ext/yassl/src/crypto_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/crypto_wrapper.cpp -------------------------------------------------------------------------------- /ext/yassl/src/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/dummy.cpp -------------------------------------------------------------------------------- /ext/yassl/src/handshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/handshake.cpp -------------------------------------------------------------------------------- /ext/yassl/src/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/lock.cpp -------------------------------------------------------------------------------- /ext/yassl/src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/log.cpp -------------------------------------------------------------------------------- /ext/yassl/src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/make.bat -------------------------------------------------------------------------------- /ext/yassl/src/socket_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/socket_wrapper.cpp -------------------------------------------------------------------------------- /ext/yassl/src/ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/ssl.cpp -------------------------------------------------------------------------------- /ext/yassl/src/template_instnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/template_instnt.cpp -------------------------------------------------------------------------------- /ext/yassl/src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/timer.cpp -------------------------------------------------------------------------------- /ext/yassl/src/yassl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/yassl.cpp -------------------------------------------------------------------------------- /ext/yassl/src/yassl_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/yassl_error.cpp -------------------------------------------------------------------------------- /ext/yassl/src/yassl_imp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/yassl_imp.cpp -------------------------------------------------------------------------------- /ext/yassl/src/yassl_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/src/yassl_int.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/CMakeLists.txt -------------------------------------------------------------------------------- /ext/yassl/taocrypt/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/COPYING -------------------------------------------------------------------------------- /ext/yassl/taocrypt/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/INSTALL -------------------------------------------------------------------------------- /ext/yassl/taocrypt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/README -------------------------------------------------------------------------------- /ext/yassl/taocrypt/benchmark/dh1024.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/benchmark/dh1024.der -------------------------------------------------------------------------------- /ext/yassl/taocrypt/benchmark/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/benchmark/make.bat -------------------------------------------------------------------------------- /ext/yassl/taocrypt/certs/dh1024.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/certs/dh1024.dat -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/aes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/aes.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/algebra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/algebra.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/arc4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/arc4.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/asn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/asn.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/block.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/blowfish.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/blowfish.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/coding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/coding.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/des.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/des.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/dh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/dh.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/dsa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/dsa.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/error.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/file.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/hash.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/hc128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/hc128.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/hmac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/hmac.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/integer.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/kernelc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/kernelc.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/md2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/md2.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/md4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/md4.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/md5.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/misc.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/modarith.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/modarith.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/modes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/modes.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/pwdbased.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/pwdbased.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/rabbit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/rabbit.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/random.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/ripemd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/ripemd.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/rsa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/rsa.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/runtime.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/sha.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/sha.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/twofish.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/twofish.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/include/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/include/types.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/mySTL/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/mySTL/algorithm.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/mySTL/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/mySTL/helpers.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/mySTL/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/mySTL/list.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/mySTL/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/mySTL/memory.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/mySTL/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/mySTL/pair.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/mySTL/stdexcept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/mySTL/stdexcept.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/mySTL/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/mySTL/vector.hpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/aes.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/aestables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/aestables.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/algebra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/algebra.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/arc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/arc4.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/asn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/asn.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/bftables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/bftables.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/blowfish.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/coding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/coding.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/des.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/dh.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/dsa.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/file.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/hash.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/hc128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/hc128.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/integer.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/make.bat -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/md2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/md2.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/md4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/md4.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/md5.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/misc.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/rabbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/rabbit.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/random.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/ripemd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/ripemd.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/rsa.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/sha.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/tftables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/tftables.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/src/twofish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/src/twofish.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/taocrypt.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/taocrypt.dsp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/taocrypt.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/taocrypt.dsw -------------------------------------------------------------------------------- /ext/yassl/taocrypt/test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/test.dsw -------------------------------------------------------------------------------- /ext/yassl/taocrypt/test/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/test/make.bat -------------------------------------------------------------------------------- /ext/yassl/taocrypt/test/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/test/memory.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/test/test.cpp -------------------------------------------------------------------------------- /ext/yassl/taocrypt/test/test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/taocrypt/test/test.dsp -------------------------------------------------------------------------------- /ext/yassl/testsuite/cipher-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/testsuite/cipher-test.sh -------------------------------------------------------------------------------- /ext/yassl/testsuite/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/testsuite/input -------------------------------------------------------------------------------- /ext/yassl/testsuite/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/testsuite/make.bat -------------------------------------------------------------------------------- /ext/yassl/testsuite/quit: -------------------------------------------------------------------------------- 1 | quit 2 | 3 | -------------------------------------------------------------------------------- /ext/yassl/testsuite/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/testsuite/test.hpp -------------------------------------------------------------------------------- /ext/yassl/testsuite/testsuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/testsuite/testsuite.cpp -------------------------------------------------------------------------------- /ext/yassl/testsuite/testsuite.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/testsuite/testsuite.dsp -------------------------------------------------------------------------------- /ext/yassl/yassl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/yassl.dsp -------------------------------------------------------------------------------- /ext/yassl/yassl.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/ext/yassl/yassl.dsw -------------------------------------------------------------------------------- /packaging/README_Debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/README_Debian.md -------------------------------------------------------------------------------- /packaging/WiX/AdminBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/AdminBackground.jpg -------------------------------------------------------------------------------- /packaging/WiX/AdminHeader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/AdminHeader.jpg -------------------------------------------------------------------------------- /packaging/WiX/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/CMakeLists.txt -------------------------------------------------------------------------------- /packaging/WiX/CPackWixConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/CPackWixConfig.cmake -------------------------------------------------------------------------------- /packaging/WiX/MySQLRouter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/MySQLRouter.ico -------------------------------------------------------------------------------- /packaging/WiX/ca/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/ca/CMakeLists.txt -------------------------------------------------------------------------------- /packaging/WiX/ca/CustomAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/ca/CustomAction.cpp -------------------------------------------------------------------------------- /packaging/WiX/ca/CustomAction.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/ca/CustomAction.def -------------------------------------------------------------------------------- /packaging/WiX/create_msi.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/create_msi.cmake.in -------------------------------------------------------------------------------- /packaging/WiX/custom_ui.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/custom_ui.wxs -------------------------------------------------------------------------------- /packaging/WiX/extra.wxs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/extra.wxs.in -------------------------------------------------------------------------------- /packaging/WiX/mysql_router.wxs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/mysql_router.wxs.in -------------------------------------------------------------------------------- /packaging/WiX/mysql_router_extra.wxs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/mysql_router_extra.wxs.in -------------------------------------------------------------------------------- /packaging/WiX/mysqlrouter.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/mysqlrouter.conf.in -------------------------------------------------------------------------------- /packaging/WiX/versioninfo.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/WiX/versioninfo.rc.in -------------------------------------------------------------------------------- /packaging/build_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/build_deb.sh -------------------------------------------------------------------------------- /packaging/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/build_rpm.sh -------------------------------------------------------------------------------- /packaging/deb-artful/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-artful/changelog -------------------------------------------------------------------------------- /packaging/deb-artful/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-artful/control -------------------------------------------------------------------------------- /packaging/deb-bionic/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-bionic/changelog -------------------------------------------------------------------------------- /packaging/deb-bionic/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-bionic/control -------------------------------------------------------------------------------- /packaging/deb-common/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packaging/deb-common/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-common/copyright -------------------------------------------------------------------------------- /packaging/deb-common/mysql-router.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-common/mysql-router.prerm -------------------------------------------------------------------------------- /packaging/deb-common/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-common/rules -------------------------------------------------------------------------------- /packaging/deb-common/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packaging/deb-jessie/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-jessie/changelog -------------------------------------------------------------------------------- /packaging/deb-jessie/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-jessie/control -------------------------------------------------------------------------------- /packaging/deb-stretch/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-stretch/changelog -------------------------------------------------------------------------------- /packaging/deb-stretch/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-stretch/control -------------------------------------------------------------------------------- /packaging/deb-trusty/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-trusty/changelog -------------------------------------------------------------------------------- /packaging/deb-trusty/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-trusty/control -------------------------------------------------------------------------------- /packaging/deb-vivid/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-vivid/changelog -------------------------------------------------------------------------------- /packaging/deb-vivid/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-vivid/control -------------------------------------------------------------------------------- /packaging/deb-wily/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-wily/changelog -------------------------------------------------------------------------------- /packaging/deb-wily/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-wily/control -------------------------------------------------------------------------------- /packaging/deb-xenial/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-xenial/changelog -------------------------------------------------------------------------------- /packaging/deb-xenial/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-xenial/control -------------------------------------------------------------------------------- /packaging/deb-yakkety/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-yakkety/changelog -------------------------------------------------------------------------------- /packaging/deb-yakkety/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-yakkety/control -------------------------------------------------------------------------------- /packaging/deb-zesty/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-zesty/changelog -------------------------------------------------------------------------------- /packaging/deb-zesty/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/deb-zesty/control -------------------------------------------------------------------------------- /packaging/rpm-oel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/rpm-oel/CMakeLists.txt -------------------------------------------------------------------------------- /packaging/rpm-oel/mysql-router.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/rpm-oel/mysql-router.spec.in -------------------------------------------------------------------------------- /packaging/rpm-oel/mysqlrouter.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/rpm-oel/mysqlrouter.conf.in -------------------------------------------------------------------------------- /packaging/rpm-oel/mysqlrouter.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/rpm-oel/mysqlrouter.init -------------------------------------------------------------------------------- /packaging/rpm-oel/mysqlrouter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/packaging/rpm-oel/mysqlrouter.service -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/harness/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/.gitignore -------------------------------------------------------------------------------- /src/harness/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/CMakeLists.txt -------------------------------------------------------------------------------- /src/harness/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/CPPLINT.cfg -------------------------------------------------------------------------------- /src/harness/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/Doxyfile.in -------------------------------------------------------------------------------- /src/harness/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/README.txt -------------------------------------------------------------------------------- /src/harness/data/main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/data/main.conf -------------------------------------------------------------------------------- /src/harness/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/common.h -------------------------------------------------------------------------------- /src/harness/include/dim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/dim.h -------------------------------------------------------------------------------- /src/harness/include/harness_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/harness_assert.h -------------------------------------------------------------------------------- /src/harness/include/keyring/keyring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/keyring/keyring.h -------------------------------------------------------------------------------- /src/harness/include/process_launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/process_launcher.h -------------------------------------------------------------------------------- /src/harness/include/random_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/random_generator.h -------------------------------------------------------------------------------- /src/harness/include/socket_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/socket_operations.h -------------------------------------------------------------------------------- /src/harness/include/tcp_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/tcp_address.h -------------------------------------------------------------------------------- /src/harness/include/unique_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/include/unique_ptr.h -------------------------------------------------------------------------------- /src/harness/internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/internal/README.md -------------------------------------------------------------------------------- /src/harness/internal/exclude-from-release.txt: -------------------------------------------------------------------------------- 1 | CPPLINT.cfg 2 | /internal/ 3 | -------------------------------------------------------------------------------- /src/harness/internal/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/internal/hooks/pre-commit -------------------------------------------------------------------------------- /src/harness/internal/hooks/pre-receive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/internal/hooks/pre-receive -------------------------------------------------------------------------------- /src/harness/internal/hooks/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/internal/hooks/update -------------------------------------------------------------------------------- /src/harness/plugin.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/plugin.h.in -------------------------------------------------------------------------------- /src/harness/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/shared/CMakeLists.txt -------------------------------------------------------------------------------- /src/harness/shared/src/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/shared/src/test_helpers.cc -------------------------------------------------------------------------------- /src/harness/src/arg_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/arg_handler.cc -------------------------------------------------------------------------------- /src/harness/src/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/common.cc -------------------------------------------------------------------------------- /src/harness/src/config_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/config_parser.cc -------------------------------------------------------------------------------- /src/harness/src/designator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/designator.cc -------------------------------------------------------------------------------- /src/harness/src/designator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/designator.h -------------------------------------------------------------------------------- /src/harness/src/dim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/dim.cc -------------------------------------------------------------------------------- /src/harness/src/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/exception.h -------------------------------------------------------------------------------- /src/harness/src/filesystem-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/filesystem-posix.cc -------------------------------------------------------------------------------- /src/harness/src/filesystem-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/filesystem-windows.cc -------------------------------------------------------------------------------- /src/harness/src/filesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/filesystem.cc -------------------------------------------------------------------------------- /src/harness/src/hostname_validator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/hostname_validator.cc -------------------------------------------------------------------------------- /src/harness/src/keyring/keyring_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/keyring/keyring_file.cc -------------------------------------------------------------------------------- /src/harness/src/loader-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/loader-posix.cc -------------------------------------------------------------------------------- /src/harness/src/loader-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/loader-windows.cc -------------------------------------------------------------------------------- /src/harness/src/loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/loader.cc -------------------------------------------------------------------------------- /src/harness/src/loader_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/loader_config.cc -------------------------------------------------------------------------------- /src/harness/src/logging/handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/logging/handler.cc -------------------------------------------------------------------------------- /src/harness/src/logging/logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/logging/logger.cc -------------------------------------------------------------------------------- /src/harness/src/logging/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/logging/logging.cc -------------------------------------------------------------------------------- /src/harness/src/logging/registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/logging/registry.cc -------------------------------------------------------------------------------- /src/harness/src/mysql_router_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/mysql_router_thread.cc -------------------------------------------------------------------------------- /src/harness/src/networking/resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/networking/resolver.cc -------------------------------------------------------------------------------- /src/harness/src/process_launcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/process_launcher.cc -------------------------------------------------------------------------------- /src/harness/src/random_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/random_generator.cc -------------------------------------------------------------------------------- /src/harness/src/socket_operations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/socket_operations.cc -------------------------------------------------------------------------------- /src/harness/src/tcp_address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/tcp_address.cc -------------------------------------------------------------------------------- /src/harness/src/utilities-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/utilities-posix.cc -------------------------------------------------------------------------------- /src/harness/src/utilities-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/utilities-windows.cc -------------------------------------------------------------------------------- /src/harness/src/utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/utilities.cc -------------------------------------------------------------------------------- /src/harness/src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/src/utilities.h -------------------------------------------------------------------------------- /src/harness/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/harness/tests/data/logger.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/data/logger.cfg -------------------------------------------------------------------------------- /src/harness/tests/data/logger.d/one.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/data/logger.d/one.cfg -------------------------------------------------------------------------------- /src/harness/tests/data/magic-alt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/data/magic-alt.cfg -------------------------------------------------------------------------------- /src/harness/tests/data/tests-bad-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/data/tests-bad-1.cfg -------------------------------------------------------------------------------- /src/harness/tests/data/tests-bad-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/data/tests-bad-2.cfg -------------------------------------------------------------------------------- /src/harness/tests/data/tests-bad-3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/data/tests-bad-3.cfg -------------------------------------------------------------------------------- /src/harness/tests/include/lifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/include/lifecycle.h -------------------------------------------------------------------------------- /src/harness/tests/include/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/include/magic.h -------------------------------------------------------------------------------- /src/harness/tests/plugins/bad_one.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/plugins/bad_one.cc -------------------------------------------------------------------------------- /src/harness/tests/plugins/bad_two.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/plugins/bad_two.cc -------------------------------------------------------------------------------- /src/harness/tests/plugins/example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/plugins/example.cc -------------------------------------------------------------------------------- /src/harness/tests/plugins/lifecycle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/plugins/lifecycle.cc -------------------------------------------------------------------------------- /src/harness/tests/plugins/lifecycle2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/plugins/lifecycle2.cc -------------------------------------------------------------------------------- /src/harness/tests/plugins/lifecycle3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/plugins/lifecycle3.cc -------------------------------------------------------------------------------- /src/harness/tests/plugins/magic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/plugins/magic.cc -------------------------------------------------------------------------------- /src/harness/tests/test_bug22104451.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_bug22104451.cc -------------------------------------------------------------------------------- /src/harness/tests/test_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_common.cc -------------------------------------------------------------------------------- /src/harness/tests/test_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_config.cc -------------------------------------------------------------------------------- /src/harness/tests/test_designator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_designator.cc -------------------------------------------------------------------------------- /src/harness/tests/test_filesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_filesystem.cc -------------------------------------------------------------------------------- /src/harness/tests/test_ip_address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_ip_address.cc -------------------------------------------------------------------------------- /src/harness/tests/test_iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_iterator.cc -------------------------------------------------------------------------------- /src/harness/tests/test_keyring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_keyring.cc -------------------------------------------------------------------------------- /src/harness/tests/test_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_loader.cc -------------------------------------------------------------------------------- /src/harness/tests/test_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_logging.cc -------------------------------------------------------------------------------- /src/harness/tests/test_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_queue.cc -------------------------------------------------------------------------------- /src/harness/tests/test_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_resolver.cc -------------------------------------------------------------------------------- /src/harness/tests/test_utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/harness/tests/test_utilities.cc -------------------------------------------------------------------------------- /src/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/CMakeLists.txt -------------------------------------------------------------------------------- /src/http/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/http/src/http_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/http_client.cc -------------------------------------------------------------------------------- /src/http/src/http_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/http_common.cc -------------------------------------------------------------------------------- /src/http/src/http_request_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/http_request_impl.h -------------------------------------------------------------------------------- /src/http/src/http_server_component.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/http_server_component.cc -------------------------------------------------------------------------------- /src/http/src/http_server_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/http_server_plugin.cc -------------------------------------------------------------------------------- /src/http/src/http_server_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/http_server_plugin.h -------------------------------------------------------------------------------- /src/http/src/http_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/http_time.cc -------------------------------------------------------------------------------- /src/http/src/posix_re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/posix_re.h -------------------------------------------------------------------------------- /src/http/src/rest_cli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/rest_cli.cc -------------------------------------------------------------------------------- /src/http/src/rest_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/rest_client.cc -------------------------------------------------------------------------------- /src/http/src/static_files.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/src/static_files.cc -------------------------------------------------------------------------------- /src/http/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/http/tests/test_posix_re.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/tests/test_posix_re.cc -------------------------------------------------------------------------------- /src/http/tests/test_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/http/tests/test_time.cc -------------------------------------------------------------------------------- /src/keepalive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/keepalive/CMakeLists.txt -------------------------------------------------------------------------------- /src/keepalive/src/keepalive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/keepalive/src/keepalive.cc -------------------------------------------------------------------------------- /src/keepalive/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/keepalive/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/metadata_cache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/metadata_cache/CMakeLists.txt -------------------------------------------------------------------------------- /src/metadata_cache/src/cache_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/metadata_cache/src/cache_api.cc -------------------------------------------------------------------------------- /src/metadata_cache/src/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/metadata_cache/src/metadata.h -------------------------------------------------------------------------------- /src/metadata_cache/src/metadata_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/metadata_cache/src/metadata_cache.h -------------------------------------------------------------------------------- /src/metadata_cache/src/plugin_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/metadata_cache/src/plugin_config.cc -------------------------------------------------------------------------------- /src/metadata_cache/src/plugin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/metadata_cache/src/plugin_config.h -------------------------------------------------------------------------------- /src/metadata_cache/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/metadata_cache/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/mock_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/CMakeLists.txt -------------------------------------------------------------------------------- /src/mock_server/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/mock_server/src/duk_module_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/duk_module_shim.c -------------------------------------------------------------------------------- /src/mock_server/src/duk_module_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/duk_module_shim.h -------------------------------------------------------------------------------- /src/mock_server/src/duk_node_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/duk_node_fs.c -------------------------------------------------------------------------------- /src/mock_server/src/duk_node_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/duk_node_fs.h -------------------------------------------------------------------------------- /src/mock_server/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/main.cc -------------------------------------------------------------------------------- /src/mock_server/src/mysql_server_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/mysql_server_mock.h -------------------------------------------------------------------------------- /src/mock_server/src/rest_mock_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/rest_mock_server.cc -------------------------------------------------------------------------------- /src/mock_server/src/statement_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mock_server/src/statement_reader.h -------------------------------------------------------------------------------- /src/mysql_protocol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mysql_protocol/CMakeLists.txt -------------------------------------------------------------------------------- /src/mysql_protocol/src/base_packet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mysql_protocol/src/base_packet.cc -------------------------------------------------------------------------------- /src/mysql_protocol/src/error_packet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mysql_protocol/src/error_packet.cc -------------------------------------------------------------------------------- /src/mysql_protocol/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/mysql_protocol/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugin_info/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugin_info/src/library_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/src/library_file.cc -------------------------------------------------------------------------------- /src/plugin_info/src/library_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/src/library_file.h -------------------------------------------------------------------------------- /src/plugin_info/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/src/main.cc -------------------------------------------------------------------------------- /src/plugin_info/src/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/src/plugin.cc -------------------------------------------------------------------------------- /src/plugin_info/src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/src/plugin.h -------------------------------------------------------------------------------- /src/plugin_info/src/plugin_info_app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/src/plugin_info_app.cc -------------------------------------------------------------------------------- /src/plugin_info/src/plugin_info_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/src/plugin_info_app.h -------------------------------------------------------------------------------- /src/plugin_info/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/plugin_info/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/router/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/CMakeLists.txt -------------------------------------------------------------------------------- /src/router/include/mysqlrouter/my_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/include/mysqlrouter/my_aes.h -------------------------------------------------------------------------------- /src/router/include/mysqlrouter/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/include/mysqlrouter/sha1.h -------------------------------------------------------------------------------- /src/router/include/mysqlrouter/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/include/mysqlrouter/uri.h -------------------------------------------------------------------------------- /src/router/include/mysqlrouter/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/include/mysqlrouter/utils.h -------------------------------------------------------------------------------- /src/router/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/router/src/cluster_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/cluster_metadata.cc -------------------------------------------------------------------------------- /src/router/src/cluster_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/cluster_metadata.h -------------------------------------------------------------------------------- /src/router/src/common/log_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/common/log_filter.cc -------------------------------------------------------------------------------- /src/router/src/common/my_aes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/common/my_aes.cc -------------------------------------------------------------------------------- /src/router/src/common/my_aes_openssl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/common/my_aes_openssl.cc -------------------------------------------------------------------------------- /src/router/src/common/my_aes_yassl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/common/my_aes_yassl.cc -------------------------------------------------------------------------------- /src/router/src/common/my_sha1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/common/my_sha1.cc -------------------------------------------------------------------------------- /src/router/src/common/mysql_session.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/common/mysql_session.cc -------------------------------------------------------------------------------- /src/router/src/config_files.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/config_files.cc -------------------------------------------------------------------------------- /src/router/src/config_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/config_files.h -------------------------------------------------------------------------------- /src/router/src/config_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/config_generator.cc -------------------------------------------------------------------------------- /src/router/src/config_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/config_generator.h -------------------------------------------------------------------------------- /src/router/src/keyring_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/keyring_info.cc -------------------------------------------------------------------------------- /src/router/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/main.cc -------------------------------------------------------------------------------- /src/router/src/plugin_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/plugin_config.cc -------------------------------------------------------------------------------- /src/router/src/router_app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/router_app.cc -------------------------------------------------------------------------------- /src/router/src/router_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/router_app.h -------------------------------------------------------------------------------- /src/router/src/uri.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/uri.cc -------------------------------------------------------------------------------- /src/router/src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/utils.cc -------------------------------------------------------------------------------- /src/router/src/windows/main-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/windows/main-windows.cc -------------------------------------------------------------------------------- /src/router/src/windows/main-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/windows/main-windows.h -------------------------------------------------------------------------------- /src/router/src/windows/nt_servc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/windows/nt_servc.cc -------------------------------------------------------------------------------- /src/router/src/windows/nt_servc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/src/windows/nt_servc.h -------------------------------------------------------------------------------- /src/router/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/router/tests/config_a.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/config_a.conf -------------------------------------------------------------------------------- /src/router/tests/config_b.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/config_b.conf -------------------------------------------------------------------------------- /src/router/tests/config_c.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/config_c.ini -------------------------------------------------------------------------------- /src/router/tests/mysqlrouter.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/mysqlrouter.conf.in -------------------------------------------------------------------------------- /src/router/tests/mysqlrouter_app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/mysqlrouter_app.cc -------------------------------------------------------------------------------- /src/router/tests/mysqlrouter_extra.conf.in: -------------------------------------------------------------------------------- 1 | [magic] 2 | foo = bar 3 | -------------------------------------------------------------------------------- /src/router/tests/mysqlrouter_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/mysqlrouter_utils.cc -------------------------------------------------------------------------------- /src/router/tests/parse_error.conf: -------------------------------------------------------------------------------- 1 | [config_a 2 | error = "Malformed section header.." -------------------------------------------------------------------------------- /src/router/tests/router_arghandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/router_arghandler.cc -------------------------------------------------------------------------------- /src/router/tests/test_config_files.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_config_files.cc -------------------------------------------------------------------------------- /src/router/tests/test_console_output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_console_output.cc -------------------------------------------------------------------------------- /src/router/tests/test_datatypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_datatypes.cc -------------------------------------------------------------------------------- /src/router/tests/test_log_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_log_filter.cc -------------------------------------------------------------------------------- /src/router/tests/test_metadata_check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_metadata_check.cc -------------------------------------------------------------------------------- /src/router/tests/test_mysql_session.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_mysql_session.cc -------------------------------------------------------------------------------- /src/router/tests/test_plugins_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_plugins_config.cc -------------------------------------------------------------------------------- /src/router/tests/test_uri.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_uri.cc -------------------------------------------------------------------------------- /src/router/tests/test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/router/tests/test_utils.cc -------------------------------------------------------------------------------- /src/routing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/CMakeLists.txt -------------------------------------------------------------------------------- /src/routing/src/connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/connection.cc -------------------------------------------------------------------------------- /src/routing/src/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/connection.h -------------------------------------------------------------------------------- /src/routing/src/connection_container.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/connection_container.cc -------------------------------------------------------------------------------- /src/routing/src/connection_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/connection_container.h -------------------------------------------------------------------------------- /src/routing/src/context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/context.cc -------------------------------------------------------------------------------- /src/routing/src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/context.h -------------------------------------------------------------------------------- /src/routing/src/dest_first_available.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/dest_first_available.cc -------------------------------------------------------------------------------- /src/routing/src/dest_first_available.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/dest_first_available.h -------------------------------------------------------------------------------- /src/routing/src/dest_metadata_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/dest_metadata_cache.cc -------------------------------------------------------------------------------- /src/routing/src/dest_metadata_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/dest_metadata_cache.h -------------------------------------------------------------------------------- /src/routing/src/dest_next_available.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/dest_next_available.cc -------------------------------------------------------------------------------- /src/routing/src/dest_next_available.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/dest_next_available.h -------------------------------------------------------------------------------- /src/routing/src/dest_round_robin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/dest_round_robin.cc -------------------------------------------------------------------------------- /src/routing/src/dest_round_robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/dest_round_robin.h -------------------------------------------------------------------------------- /src/routing/src/destination.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/destination.cc -------------------------------------------------------------------------------- /src/routing/src/destination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/destination.h -------------------------------------------------------------------------------- /src/routing/src/mysql_routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/mysql_routing.cc -------------------------------------------------------------------------------- /src/routing/src/mysql_routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/mysql_routing.h -------------------------------------------------------------------------------- /src/routing/src/mysql_routing_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/mysql_routing_common.cc -------------------------------------------------------------------------------- /src/routing/src/mysql_routing_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/mysql_routing_common.h -------------------------------------------------------------------------------- /src/routing/src/plugin_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/plugin_config.cc -------------------------------------------------------------------------------- /src/routing/src/plugin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/plugin_config.h -------------------------------------------------------------------------------- /src/routing/src/protocol/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/protocol/protocol.h -------------------------------------------------------------------------------- /src/routing/src/protocol/x_protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/protocol/x_protocol.cc -------------------------------------------------------------------------------- /src/routing/src/protocol/x_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/protocol/x_protocol.h -------------------------------------------------------------------------------- /src/routing/src/routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/routing.cc -------------------------------------------------------------------------------- /src/routing/src/routing_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/routing_plugin.cc -------------------------------------------------------------------------------- /src/routing/src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/utils.cc -------------------------------------------------------------------------------- /src/routing/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/src/utils.h -------------------------------------------------------------------------------- /src/routing/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/routing/tests/data/1route.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/data/1route.conf.in -------------------------------------------------------------------------------- /src/routing/tests/plugin/test_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/plugin/test_plugin.cc -------------------------------------------------------------------------------- /src/routing/tests/routing_mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/routing_mocks.h -------------------------------------------------------------------------------- /src/routing/tests/test_block_clients.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/test_block_clients.cc -------------------------------------------------------------------------------- /src/routing/tests/test_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/test_config.cc -------------------------------------------------------------------------------- /src/routing/tests/test_connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/test_connection.cc -------------------------------------------------------------------------------- /src/routing/tests/test_round_robin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/test_round_robin.cc -------------------------------------------------------------------------------- /src/routing/tests/test_routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/test_routing.cc -------------------------------------------------------------------------------- /src/routing/tests/test_x_protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/routing/tests/test_x_protocol.cc -------------------------------------------------------------------------------- /src/syslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/syslog/CMakeLists.txt -------------------------------------------------------------------------------- /src/syslog/src/syslog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/syslog/src/syslog.cc -------------------------------------------------------------------------------- /src/x_protocol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/x_protocol/CMakeLists.txt -------------------------------------------------------------------------------- /src/x_protocol/proto/mysqlx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/x_protocol/proto/mysqlx.proto -------------------------------------------------------------------------------- /src/x_protocol/proto/mysqlx_crud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/x_protocol/proto/mysqlx_crud.proto -------------------------------------------------------------------------------- /src/x_protocol/proto/mysqlx_expr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/x_protocol/proto/mysqlx_expr.proto -------------------------------------------------------------------------------- /src/x_protocol/proto/mysqlx_sql.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/src/x_protocol/proto/mysqlx_sql.proto -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/component/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/CMakeLists.txt -------------------------------------------------------------------------------- /tests/component/data/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/data/bootstrap.js -------------------------------------------------------------------------------- /tests/component/data/js_test_empty_file.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/component/data/js_test_nesting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/data/js_test_nesting.js -------------------------------------------------------------------------------- /tests/component/data/js_test_parse_error.js: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /tests/component/data/js_test_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/data/js_test_require.js -------------------------------------------------------------------------------- /tests/component/data/js_test_stmts_is_empty.js: -------------------------------------------------------------------------------- 1 | ({ 2 | stmts: [] 3 | }) 4 | -------------------------------------------------------------------------------- /tests/component/data/metadata_1_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/data/metadata_1_node.js -------------------------------------------------------------------------------- /tests/component/data/my_port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/data/my_port.js -------------------------------------------------------------------------------- /tests/component/data/simple-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/data/simple-client.js -------------------------------------------------------------------------------- /tests/component/data/test_modules/test-require-dir-with-indexjs/index.js: -------------------------------------------------------------------------------- 1 | exports.me = "dir-with-index.js"; 2 | -------------------------------------------------------------------------------- /tests/component/data/test_modules/test-require-dir-with-packagejson/foo.js: -------------------------------------------------------------------------------- 1 | exports.me = "dir-with-package.json"; 2 | -------------------------------------------------------------------------------- /tests/component/data/test_modules/test-require-dir-with-packagejson/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "foo.js" 3 | } 4 | -------------------------------------------------------------------------------- /tests/component/data/test_modules/test-require-nesting-5.js: -------------------------------------------------------------------------------- 1 | // a parse-error 2 | 3 | [ 4 | -------------------------------------------------------------------------------- /tests/component/test_bootstrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/test_bootstrap.cc -------------------------------------------------------------------------------- /tests/component/test_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/test_config.cc -------------------------------------------------------------------------------- /tests/component/test_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/test_logging.cc -------------------------------------------------------------------------------- /tests/component/test_metadata_ttl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/test_metadata_ttl.cc -------------------------------------------------------------------------------- /tests/component/test_mock_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/test_mock_server.cc -------------------------------------------------------------------------------- /tests/component/test_routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/test_routing.cc -------------------------------------------------------------------------------- /tests/component/test_user_option.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/component/test_user_option.cc -------------------------------------------------------------------------------- /tests/coverage.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/coverage.ignore -------------------------------------------------------------------------------- /tests/fuzzers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/fuzzers/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fuzzers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/fuzzers/README.txt -------------------------------------------------------------------------------- /tests/fuzzers/corpus/fuzz_router_uri/uri-1: -------------------------------------------------------------------------------- 1 | ham://scott:tiger@spam.example.com:80 2 | -------------------------------------------------------------------------------- /tests/fuzzers/corpus/fuzz_router_uri/uri-3: -------------------------------------------------------------------------------- 1 | m+f://[::1%25foo]/f/?f=f&c=b#f 2 | -------------------------------------------------------------------------------- /tests/fuzzers/corpus/fuzz_router_uri_tostring/uri-ipv6-zoneid: -------------------------------------------------------------------------------- 1 | u://u:p@[::1%lo]:80/p/p?k=v&l=m#f 2 | -------------------------------------------------------------------------------- /tests/fuzzers/fuzz_router_uri.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/fuzzers/fuzz_router_uri.cc -------------------------------------------------------------------------------- /tests/gcoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/gcoverage.sh -------------------------------------------------------------------------------- /tests/helpers/cmd_exec-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/cmd_exec-windows.cc -------------------------------------------------------------------------------- /tests/helpers/cmd_exec-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/cmd_exec-windows.h -------------------------------------------------------------------------------- /tests/helpers/cmd_exec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/cmd_exec.cc -------------------------------------------------------------------------------- /tests/helpers/cmd_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/cmd_exec.h -------------------------------------------------------------------------------- /tests/helpers/gtest_consoleoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/gtest_consoleoutput.h -------------------------------------------------------------------------------- /tests/helpers/master_key_test_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/master_key_test_writer.cc -------------------------------------------------------------------------------- /tests/helpers/mysql_session_replayer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/mysql_session_replayer.cc -------------------------------------------------------------------------------- /tests/helpers/mysql_session_replayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/mysql_session_replayer.h -------------------------------------------------------------------------------- /tests/helpers/router_component_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/router_component_test.cc -------------------------------------------------------------------------------- /tests/helpers/router_component_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/router_component_test.h -------------------------------------------------------------------------------- /tests/helpers/router_test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/router_test_helpers.cc -------------------------------------------------------------------------------- /tests/helpers/router_test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/router_test_helpers.h -------------------------------------------------------------------------------- /tests/helpers/script_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/script_generator.cc -------------------------------------------------------------------------------- /tests/helpers/script_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/script_generator.h -------------------------------------------------------------------------------- /tests/helpers/tcp_port_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/tcp_port_pool.cc -------------------------------------------------------------------------------- /tests/helpers/tcp_port_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/helpers/tcp_port_pool.h -------------------------------------------------------------------------------- /tests/legal/test_legal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/legal/test_legal.cc -------------------------------------------------------------------------------- /tests/legal/test_project_name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/legal/test_project_name.cc -------------------------------------------------------------------------------- /tests/tools/gtest_cxx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-router/HEAD/tests/tools/gtest_cxx.cc --------------------------------------------------------------------------------