├── 3rd ├── protobuf-2.6.1 │ ├── CHANGES.txt │ ├── CONTRIBUTORS.txt │ ├── INSTALL.txt │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── aclocal.m4 │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── editors │ │ ├── README.txt │ │ ├── proto.vim │ │ └── protobuf-mode.el │ ├── examples │ │ ├── AddPerson.java │ │ ├── ListPeople.java │ │ ├── Makefile │ │ ├── README.txt │ │ ├── add_person.cc │ │ ├── add_person.py │ │ ├── addressbook.proto │ │ ├── list_people.cc │ │ └── list_people.py │ ├── generate_descriptor_proto.sh │ ├── gtest │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── build-aux │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ └── test-driver │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── configure │ │ ├── configure.ac │ │ ├── fused-src │ │ │ └── gtest │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest.h │ │ │ │ └── gtest_main.cc │ │ ├── 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 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.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 │ │ ├── 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_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 │ ├── install-sh │ ├── java │ │ ├── README.txt │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── AbstractMessage.java │ │ │ │ ├── AbstractMessageLite.java │ │ │ │ ├── AbstractParser.java │ │ │ │ ├── BlockingRpcChannel.java │ │ │ │ ├── BlockingService.java │ │ │ │ ├── BoundedByteString.java │ │ │ │ ├── ByteString.java │ │ │ │ ├── CodedInputStream.java │ │ │ │ ├── CodedOutputStream.java │ │ │ │ ├── Descriptors.java │ │ │ │ ├── DynamicMessage.java │ │ │ │ ├── Extension.java │ │ │ │ ├── ExtensionRegistry.java │ │ │ │ ├── ExtensionRegistryLite.java │ │ │ │ ├── FieldSet.java │ │ │ │ ├── GeneratedMessage.java │ │ │ │ ├── GeneratedMessageLite.java │ │ │ │ ├── Internal.java │ │ │ │ ├── InvalidProtocolBufferException.java │ │ │ │ ├── LazyField.java │ │ │ │ ├── LazyFieldLite.java │ │ │ │ ├── LazyStringArrayList.java │ │ │ │ ├── LazyStringList.java │ │ │ │ ├── LiteralByteString.java │ │ │ │ ├── Message.java │ │ │ │ ├── MessageLite.java │ │ │ │ ├── MessageLiteOrBuilder.java │ │ │ │ ├── MessageOrBuilder.java │ │ │ │ ├── MessageReflection.java │ │ │ │ ├── Parser.java │ │ │ │ ├── ProtocolMessageEnum.java │ │ │ │ ├── ProtocolStringList.java │ │ │ │ ├── RepeatedFieldBuilder.java │ │ │ │ ├── RopeByteString.java │ │ │ │ ├── RpcCallback.java │ │ │ │ ├── RpcChannel.java │ │ │ │ ├── RpcController.java │ │ │ │ ├── RpcUtil.java │ │ │ │ ├── Service.java │ │ │ │ ├── ServiceException.java │ │ │ │ ├── SingleFieldBuilder.java │ │ │ │ ├── SmallSortedMap.java │ │ │ │ ├── TextFormat.java │ │ │ │ ├── UninitializedMessageException.java │ │ │ │ ├── UnknownFieldSet.java │ │ │ │ ├── UnmodifiableLazyStringList.java │ │ │ │ ├── Utf8.java │ │ │ │ └── WireFormat.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── AbstractMessageTest.java │ │ │ ├── BoundedByteStringTest.java │ │ │ ├── ByteStringTest.java │ │ │ ├── CheckUtf8Test.java │ │ │ ├── CodedInputStreamTest.java │ │ │ ├── CodedOutputStreamTest.java │ │ │ ├── DeprecatedFieldTest.java │ │ │ ├── DescriptorsTest.java │ │ │ ├── DynamicMessageTest.java │ │ │ ├── ForceFieldBuildersPreRun.java │ │ │ ├── GeneratedMessageTest.java │ │ │ ├── IsValidUtf8Test.java │ │ │ ├── IsValidUtf8TestUtil.java │ │ │ ├── LazyFieldLiteTest.java │ │ │ ├── LazyFieldTest.java │ │ │ ├── LazyMessageLiteTest.java │ │ │ ├── LazyStringArrayListTest.java │ │ │ ├── LazyStringEndToEndTest.java │ │ │ ├── LiteEqualsAndHashTest.java │ │ │ ├── LiteTest.java │ │ │ ├── LiteralByteStringTest.java │ │ │ ├── MessageTest.java │ │ │ ├── NestedBuildersTest.java │ │ │ ├── ParserTest.java │ │ │ ├── RepeatedFieldBuilderTest.java │ │ │ ├── RopeByteStringSubstringTest.java │ │ │ ├── RopeByteStringTest.java │ │ │ ├── ServiceTest.java │ │ │ ├── SingleFieldBuilderTest.java │ │ │ ├── SmallSortedMapTest.java │ │ │ ├── TestBadIdentifiers.java │ │ │ ├── TestUtil.java │ │ │ ├── TextFormatTest.java │ │ │ ├── UnknownFieldSetTest.java │ │ │ ├── UnmodifiableLazyStringListTest.java │ │ │ ├── WireFormatTest.java │ │ │ ├── lazy_fields_lite.proto │ │ │ ├── lite_equals_and_hash.proto │ │ │ ├── multiple_files_test.proto │ │ │ ├── nested_builders_test.proto │ │ │ ├── nested_extension.proto │ │ │ ├── nested_extension_lite.proto │ │ │ ├── non_nested_extension.proto │ │ │ ├── non_nested_extension_lite.proto │ │ │ ├── outer_class_name_test.proto │ │ │ ├── outer_class_name_test2.proto │ │ │ ├── outer_class_name_test3.proto │ │ │ ├── test_bad_identifiers.proto │ │ │ ├── test_check_utf8.proto │ │ │ ├── test_check_utf8_size.proto │ │ │ └── test_custom_options.proto │ ├── 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.pc.in │ ├── python │ │ ├── README.txt │ │ ├── ez_setup.py │ │ ├── google │ │ │ ├── __init__.py │ │ │ └── protobuf │ │ │ │ ├── __init__.py │ │ │ │ ├── descriptor.py │ │ │ │ ├── descriptor_database.py │ │ │ │ ├── descriptor_pool.py │ │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── api_implementation.cc │ │ │ │ ├── api_implementation.py │ │ │ │ ├── api_implementation_default_test.py │ │ │ │ ├── containers.py │ │ │ │ ├── cpp_message.py │ │ │ │ ├── decoder.py │ │ │ │ ├── descriptor_database_test.py │ │ │ │ ├── descriptor_pool_test.py │ │ │ │ ├── descriptor_pool_test1.proto │ │ │ │ ├── descriptor_pool_test2.proto │ │ │ │ ├── descriptor_python_test.py │ │ │ │ ├── descriptor_test.py │ │ │ │ ├── encoder.py │ │ │ │ ├── enum_type_wrapper.py │ │ │ │ ├── factory_test1.proto │ │ │ │ ├── factory_test2.proto │ │ │ │ ├── generator_test.py │ │ │ │ ├── message_factory_python_test.py │ │ │ │ ├── message_factory_test.py │ │ │ │ ├── message_listener.py │ │ │ │ ├── message_python_test.py │ │ │ │ ├── message_test.py │ │ │ │ ├── missing_enum_values.proto │ │ │ │ ├── more_extensions.proto │ │ │ │ ├── more_extensions_dynamic.proto │ │ │ │ ├── more_messages.proto │ │ │ │ ├── python_message.py │ │ │ │ ├── reflection_test.py │ │ │ │ ├── service_reflection_test.py │ │ │ │ ├── symbol_database_test.py │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ ├── test_util.py │ │ │ │ ├── text_encoding_test.py │ │ │ │ ├── text_format_test.py │ │ │ │ ├── type_checkers.py │ │ │ │ ├── unknown_fields_test.py │ │ │ │ ├── wire_format.py │ │ │ │ └── wire_format_test.py │ │ │ │ ├── message.py │ │ │ │ ├── message_factory.py │ │ │ │ ├── pyext │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── cpp_message.py │ │ │ │ ├── descriptor.cc │ │ │ │ ├── descriptor.h │ │ │ │ ├── descriptor_cpp2_test.py │ │ │ │ ├── extension_dict.cc │ │ │ │ ├── extension_dict.h │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_factory_cpp2_test.py │ │ │ │ ├── proto2_api_test.proto │ │ │ │ ├── python.proto │ │ │ │ ├── python_protobuf.h │ │ │ │ ├── reflection_cpp2_generated_test.py │ │ │ │ ├── repeated_composite_container.cc │ │ │ │ ├── repeated_composite_container.h │ │ │ │ ├── repeated_scalar_container.cc │ │ │ │ ├── repeated_scalar_container.h │ │ │ │ └── scoped_pyobject_ptr.h │ │ │ │ ├── reflection.py │ │ │ │ ├── service.py │ │ │ │ ├── service_reflection.py │ │ │ │ ├── symbol_database.py │ │ │ │ ├── text_encoding.py │ │ │ │ └── text_format.py │ │ ├── mox.py │ │ ├── setup.py │ │ └── stubout.py │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── 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_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_unittest.cc │ │ │ │ │ └── cpp_unittest.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_extension.cc │ │ │ │ │ ├── java_extension.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_message.cc │ │ │ │ │ ├── java_message.h │ │ │ │ │ ├── java_message_field.cc │ │ │ │ │ ├── java_message_field.h │ │ │ │ │ ├── java_name_resolver.cc │ │ │ │ │ ├── java_name_resolver.h │ │ │ │ │ ├── java_plugin_unittest.cc │ │ │ │ │ ├── java_primitive_field.cc │ │ │ │ │ ├── java_primitive_field.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 │ │ │ │ ├── main.cc │ │ │ │ ├── mock_code_generator.cc │ │ │ │ ├── mock_code_generator.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 │ │ │ │ ├── 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 │ │ │ │ ├── dynamic_message.cc │ │ │ │ ├── dynamic_message.h │ │ │ │ ├── dynamic_message_unittest.cc │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── extension_set_heavy.cc │ │ │ │ ├── extension_set_unittest.cc │ │ │ │ ├── generated_enum_reflection.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_unittest.cc │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── message_unittest.cc │ │ │ │ ├── package_info.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 │ │ │ │ ├── stubs │ │ │ │ ├── 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_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 │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── common_unittest.cc │ │ │ │ ├── hash.h │ │ │ │ ├── map_util.h │ │ │ │ ├── once.cc │ │ │ │ ├── once.h │ │ │ │ ├── once_unittest.cc │ │ │ │ ├── platform_macros.h │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── stl_util.h │ │ │ │ ├── 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 │ │ │ │ ├── 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_oneof_implemented │ │ │ │ ├── golden_packed_fields_message │ │ │ │ ├── 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 │ │ │ │ ├── unittest.proto │ │ │ │ ├── unittest_custom_options.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_no_generic_services.proto │ │ │ │ ├── unittest_optimize_for.proto │ │ │ │ ├── unknown_field_set.cc │ │ │ │ ├── unknown_field_set.h │ │ │ │ ├── unknown_field_set_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 │ │ └── solaris │ │ │ └── libstdc++.la │ ├── test-driver │ └── vsprojects │ │ ├── config.h │ │ ├── convert2008to2005.sh │ │ ├── extract_includes.bat │ │ ├── libprotobuf-lite.vcproj │ │ ├── libprotobuf.vcproj │ │ ├── libprotoc.vcproj │ │ ├── lite-test.vcproj │ │ ├── protobuf.sln │ │ ├── protoc.vcproj │ │ ├── readme.txt │ │ ├── test_plugin.vcproj │ │ └── tests.vcproj ├── redis-stable.tar.gz └── valgrind-3.10.1.tar.bz2 ├── AccSvr ├── AccSvrConfig.cpp ├── AccSvrConfig.hpp ├── AccountSvr.cpp ├── AccountSvr.h ├── Makefile ├── config │ └── accountSvr.xml ├── include │ ├── ACCSessionHandler.hpp │ ├── CACCSHandlerFunc.hpp │ └── MessageDef.hpp ├── main.cpp ├── session │ ├── AccsvrSession.cpp │ ├── AccsvrSession.h │ ├── ClientSession.cpp │ ├── ClientSession.h │ ├── DBSession.cpp │ ├── DBSession.h │ ├── GatewaySession.cpp │ ├── GatewaySession.h │ ├── LogicSession.cpp │ ├── LogicSession.h │ ├── StrictClient.cpp │ └── StrictClient.h └── src │ ├── ACCSessionHandler.cpp │ └── CACCSHandlerFunc.cpp ├── DBSvr ├── DBSvr.cpp ├── DBSvr.h ├── DBSvrConfig.cpp ├── DBSvrConfig.hpp ├── Makefile ├── Makefile_bak ├── config │ └── DBSvr.xml ├── include │ ├── CDBSHandlerFunc.hpp │ ├── DBSessionHandler.hpp │ └── MessageDef.hpp ├── main.cpp ├── main.cpp_bak ├── session │ ├── AccsvrSession.cpp │ ├── AccsvrSession.h │ ├── ClientSession.cpp │ ├── ClientSession.h │ ├── DBSession.cpp │ ├── DBSession.h │ ├── GatewaySession.cpp │ ├── GatewaySession.h │ ├── LogicSession.cpp │ ├── LogicSession.h │ ├── StrictClient.cpp │ └── StrictClient.h ├── src │ ├── CDBSHandlerFunc.cpp │ └── DBSessionHandler.cpp └── testsql.sql ├── Factory ├── BaseFactory.cpp ├── BaseFactory.h ├── CHandleContext.cpp └── CHandleContext.hpp ├── GatewaySvr ├── GatewaySvr.cpp ├── GatewaySvr.h ├── GatewaySvrConfig.cpp ├── GatewaySvrConfig.hpp ├── Makefile ├── config │ └── gatewaySvr.xml ├── gprof2dot.py ├── include │ ├── CGWSHandlerFunc.hpp │ ├── GWSessionHandler.hpp │ └── MessageDef.hpp ├── main.cpp ├── session │ ├── AccsvrSession.cpp │ ├── AccsvrSession.h │ ├── ClientSession.cpp │ ├── ClientSession.h │ ├── DBSession.cpp │ ├── DBSession.h │ ├── GatewaySession.cpp │ ├── GatewaySession.h │ ├── LogicSession.cpp │ ├── LogicSession.h │ ├── StrictClient.cpp │ └── StrictClient.h └── src │ ├── CGWSHandlerFunc.cpp │ └── GWSessionHandler.cpp ├── LogicSvr ├── Logic │ ├── Actor.cpp │ ├── Actor.h │ ├── Player.cpp │ └── Player.h ├── LogicSvr.cpp ├── LogicSvr.h ├── LogicSvrConfig.cpp ├── LogicSvrConfig.hpp ├── Makefile ├── Makefile_bak ├── config │ └── LogicSvr.xml ├── include │ ├── CLogicSHandlerFunc.hpp │ ├── LogicSessionHandler.hpp │ └── MessageDef.hpp ├── main.cpp ├── main.cpp_bak ├── session │ ├── AccsvrSession.cpp │ ├── AccsvrSession.h │ ├── ClientSession.cpp │ ├── ClientSession.h │ ├── DBSession.cpp │ ├── DBSession.h │ ├── GatewaySession.cpp │ ├── GatewaySession.h │ ├── LogicSession.cpp │ ├── LogicSession.h │ ├── StrictClient.cpp │ └── StrictClient.h ├── src │ ├── CLogicSHandlerFunc.cpp │ └── LogicSessionHandler.cpp └── testsql.sql ├── README.md ├── Test ├── include │ └── TestAccess.h └── src │ └── TestAccess.cpp ├── Thread ├── BaseThread.cpp ├── BaseThread.h ├── CThreadPool.cpp ├── CThreadPool.h ├── Mutex.cpp ├── Mutex.h ├── ThreadBase.cpp └── ThreadBase.h ├── UnlimitSvr.cbp ├── UnlimitSvr.depend ├── UnlimitSvr.layout ├── ValgrindOut.xml ├── common ├── CPkgBuf.cpp ├── CPkgBuf.hpp ├── CPkgBufFactory.cpp ├── CPkgBufFactory.hpp ├── CPkgBufManager.cpp ├── CPkgBufManager.hpp ├── ICPkgBuf.cpp ├── ICPkgBuf.hpp ├── SIDGenerator.cpp └── SIDGenerator.hpp ├── database ├── CDBInstFactory.cpp ├── CDBInstFactory.hpp ├── CDBInstMgr.cpp ├── CDBInstMgr.hpp ├── CQuery.cpp ├── CQuery.hpp ├── CResult.cpp ├── CResult.hpp ├── CSqlConn.cpp ├── CSqlConn.hpp └── testsql.sql ├── include ├── CBuffQueue.hpp ├── CConfigBase.hpp ├── CFileUtils.hpp ├── CIoBuff.hpp ├── CIoThread.hpp ├── CIoThread.hpp_bak ├── CPackageFetch.hpp ├── CRecvBuf.hpp ├── CSendBuf.hpp ├── CSendThread.hpp ├── CServerBase.hpp ├── ConfigStruct.hpp ├── EpollServer.hpp ├── PackageHandler.hpp ├── ServerInclude.hpp ├── Singleton.h ├── acctTimeTool.hpp ├── baseHeader.h ├── log4z.h ├── packHeader.hpp ├── packageStruct.hpp ├── queue.hpp ├── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── stringbuffer.h │ └── writer.h ├── tinystr.h ├── tinyxml.h └── tinyxmlparser.cpp ├── luasrc ├── LuaEngine │ ├── CLuaEngine.cpp │ ├── CLuaEngine.hpp │ ├── CLuaRegFuncConf.cpp │ ├── CLuaRegFuncConf.hpp │ ├── CLuaRegNameConf.cpp │ ├── CLuaRegNameConf.hpp │ ├── CLuaScriptRegister.cpp │ ├── CLuaScriptRegister.hpp │ ├── Makefile │ ├── Test.cpp │ ├── Test.hpp │ ├── Test.lua │ └── testMain.cpp ├── Makefile ├── fun.cpp ├── fun.lua ├── luaTest.c ├── luaTest.lua ├── luaTestMain.cpp ├── lua_call_c.cpp ├── lua_call_c.lua ├── lua_call_so.c ├── lua_call_so.lua ├── lua_userdata.cpp ├── lua_userdata.lua └── lua_userdata_main.cpp ├── make ├── network ├── include │ ├── Acceptor.h │ ├── CommonList.h │ ├── Connector.h │ ├── IoHandler.h │ ├── NetWorkObject.h │ ├── Session.h │ ├── Session_bak.h │ └── threadCallBack.h └── src │ ├── Acceptor.cpp │ ├── Connector.cpp │ ├── IoHandler.cpp │ ├── NetWorkObject.cpp │ ├── Session.cpp │ ├── Session_bak.cpp │ └── threadCallBack.cpp ├── protocol ├── proto │ ├── protoc.sh │ └── testMsg.proto ├── testMsg.pb.cc └── testMsg.pb.h ├── src ├── CBufferQueue.cpp ├── CFileUtils.cpp ├── CIoBuff.cpp ├── CIoThread.cpp ├── CPackageFetch.cpp ├── CRecvBuf.cpp ├── CSendBuf.cpp ├── CSendThread.cpp ├── EpollServer.cpp ├── PackageHandler.cpp ├── Singleton.cpp ├── acctTimeTool.cpp ├── log4z.cpp ├── packHeader.cpp ├── packageStruct.cpp ├── tinystr.cpp ├── tinyxml.cpp ├── tinyxmlerror.cpp └── tinyxmlparser.cpp └── testclient ├── Makefile ├── TestClient.cpp ├── TestClient.h ├── config └── gatewaySvr.xml ├── include ├── CTCHandlerFunc.hpp ├── MessageDef.hpp └── TCSessionHandler.hpp ├── main.cpp ├── session ├── AccsvrSession.cpp ├── AccsvrSession.h ├── ClientSession.cpp ├── ClientSession.h ├── DBSession.cpp ├── DBSession.h ├── GatewaySession.cpp ├── GatewaySession.h ├── LogicSession.cpp ├── LogicSession.h ├── StrictClient.cpp └── StrictClient.h └── src ├── CTCHandlerFunc.cpp └── TCSessionHandler.cpp /3rd/protobuf-2.6.1/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/CHANGES.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/INSTALL.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/LICENSE -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/Makefile.am -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/Makefile.in -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/README.md -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/aclocal.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/autogen.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/compile -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/config.guess -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/config.h.in -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/config.sub -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/configure -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/configure.ac -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/depcomp -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/editors/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/editors/README.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/editors/proto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/editors/proto.vim -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/editors/protobuf-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/editors/protobuf-mode.el -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/AddPerson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/AddPerson.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/ListPeople.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/ListPeople.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/Makefile -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/README.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/add_person.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/add_person.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/add_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/add_person.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/addressbook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/addressbook.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/list_people.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/list_people.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/examples/list_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/examples/list_people.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/generate_descriptor_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/generate_descriptor_proto.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/CHANGES -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/LICENSE -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/Makefile.am -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/Makefile.in -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/README -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/aclocal.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/compile -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/config.guess -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/config.h.in -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/config.sub -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/depcomp -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/install-sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/ltmain.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/missing -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/build-aux/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/build-aux/test-driver -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/configure -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/configure.ac -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/m4/libtool.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/m4/ltoptions.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/m4/ltsugar.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/m4/ltversion.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/make/Makefile -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample1.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample2.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample4.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/scripts/pump.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_color_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_output_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/production.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/test/production.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/gtest/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/gtest/xcode/gtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/install-sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/README.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/pom.xml -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/ByteString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/ByteString.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Descriptors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Descriptors.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Extension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Extension.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/FieldSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/FieldSet.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Internal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Internal.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/LazyField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/LazyField.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Message.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/MessageLite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/MessageLite.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Parser.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/RpcCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/RpcCallback.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/RpcChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/RpcChannel.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/RpcUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/RpcUtil.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Service.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/TextFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/TextFormat.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Utf8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/Utf8.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/WireFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/main/java/com/google/protobuf/WireFormat.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/LiteTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/LiteTest.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/MessageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/MessageTest.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/ParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/ParserTest.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/ServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/ServiceTest.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/java/src/test/java/com/google/protobuf/TestUtil.java -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/ltmain.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/ac_system_extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/ac_system_extensions.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/acx_check_suncc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/acx_check_suncc.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/libtool.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/ltoptions.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/ltsugar.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/ltversion.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/m4/stl_hash.m4 -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/missing -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/protobuf-lite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/protobuf-lite.pc.in -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/protobuf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/protobuf.pc.in -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/README.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/ez_setup.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/__init__.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/descriptor.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/descriptor_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/descriptor_database.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/descriptor_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/descriptor_pool.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/api_implementation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/api_implementation.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/api_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/api_implementation.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/containers.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/cpp_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/cpp_message.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/decoder.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/descriptor_pool_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/descriptor_pool_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/descriptor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/descriptor_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/encoder.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/enum_type_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/enum_type_wrapper.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/factory_test1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/factory_test1.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/factory_test2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/factory_test2.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/generator_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/message_factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/message_factory_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/message_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/message_listener.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/message_python_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/message_python_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/message_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/message_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/more_extensions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/more_extensions.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/more_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/more_messages.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/python_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/python_message.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/reflection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/reflection_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/symbol_database_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/symbol_database_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/test_util.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/text_encoding_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/text_encoding_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/text_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/text_format_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/type_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/type_checkers.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/unknown_fields_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/unknown_fields_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/wire_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/wire_format.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/internal/wire_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/internal/wire_format_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/message.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/message_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/message_factory.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/README -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/cpp_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/cpp_message.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/descriptor.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/descriptor.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/descriptor_cpp2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/descriptor_cpp2_test.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/extension_dict.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/extension_dict.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/extension_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/extension_dict.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/message.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/message.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/proto2_api_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/proto2_api_test.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/python.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/python.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/python_protobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/python_protobuf.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/pyext/scoped_pyobject_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/pyext/scoped_pyobject_ptr.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/reflection.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/service.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/service_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/service_reflection.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/symbol_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/symbol_database.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/text_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/text_encoding.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/google/protobuf/text_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/google/protobuf/text_format.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/mox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/mox.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/setup.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/python/stubout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/python/stubout.py -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/Makefile.am -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/Makefile.in -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/code_generator.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/command_line_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/command_line_interface.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/command_line_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/command_line_interface.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_enum.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_enum.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_enum_field.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_enum_field.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_extension.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_extension.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_field.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_field.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_file.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_file.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_generator.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_generator.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_helpers.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_helpers.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_message.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_message.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_message_field.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_message_field.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_options.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_service.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_service.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_string_field.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_string_field.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/cpp/cpp_unittest.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/importer.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/importer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/importer_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_context.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_context.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_doc_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_doc_comment.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_enum.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_enum.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_enum_field.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_enum_field.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_extension.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_extension.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_field.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_field.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_file.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_file.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_generator.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_generator.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_helpers.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_helpers.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_message.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_message.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_service.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/java/java_service.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/main.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/mock_code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/mock_code_generator.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/mock_code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/mock_code_generator.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/package_info.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/parser_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/parser_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.pb.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/subprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/subprocess.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/subprocess.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/test_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/test_plugin.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/zip_output_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/zip_output_unittest.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/zip_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/zip_writer.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/compiler/zip_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/compiler/zip_writer.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor_database.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor_database_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor_database_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/descriptor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/descriptor_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/dynamic_message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/dynamic_message_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/extension_set_heavy.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/extension_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/extension_set_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/generated_enum_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/generated_enum_reflection.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/generated_message_reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/generated_message_reflection.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/generated_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/generated_message_util.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/coded_stream_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/coded_stream_inl.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/coded_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/coded_stream_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/gzip_stream_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/gzip_stream_unittest.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/package_info.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/printer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/printer_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/strtod.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/tokenizer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/tokenizer_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_impl.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_impl_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_impl_lite.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/io/zero_copy_stream_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/lite_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/message.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/message.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/message_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/package_info.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/reflection_ops_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/reflection_ops_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/repeated_field_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/repeated_field_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/service.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/service.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/atomicops.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/atomicops_internals_tsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/atomicops_internals_tsan.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/common_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/common_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/map_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/map_util.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/once_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/once_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/platform_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/platform_macros.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/shared_ptr.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/stringprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/stringprintf.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/stringprintf.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/stringprintf_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/stringprintf_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/structurally_valid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/structurally_valid.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/strutil_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/strutil_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/substitute.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/template_util.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/template_util_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/template_util_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/type_traits.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/stubs/type_traits_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/stubs/type_traits_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/test_util.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/test_util_lite.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/test_util_lite.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/testdata/bad_utf8_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/testdata/bad_utf8_string -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/testdata/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/testdata/golden_message -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/testing/googletest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/testing/googletest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/testing/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/testing/googletest.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/testing/zcgunzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/testing/zcgunzip.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/testing/zcgzip.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/text_format.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/text_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/text_format_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest_custom_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest_custom_options.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest_import_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest_import_lite.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest_import_public.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest_import_public.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unittest_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unittest_optimize_for.proto -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unknown_field_set.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/unknown_field_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/unknown_field_set_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/wire_format_lite.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/google/protobuf/wire_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/google/protobuf/wire_format_unittest.cc -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/src/solaris/libstdc++.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/src/solaris/libstdc++.la -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/test-driver -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/config.h -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/convert2008to2005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/convert2008to2005.sh -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/extract_includes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/extract_includes.bat -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/libprotobuf-lite.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/libprotobuf-lite.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/libprotobuf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/libprotobuf.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/libprotoc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/libprotoc.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/lite-test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/lite-test.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/protobuf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/protobuf.sln -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/protoc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/protoc.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/readme.txt -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/test_plugin.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/test_plugin.vcproj -------------------------------------------------------------------------------- /3rd/protobuf-2.6.1/vsprojects/tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/protobuf-2.6.1/vsprojects/tests.vcproj -------------------------------------------------------------------------------- /3rd/redis-stable.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/redis-stable.tar.gz -------------------------------------------------------------------------------- /3rd/valgrind-3.10.1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/3rd/valgrind-3.10.1.tar.bz2 -------------------------------------------------------------------------------- /AccSvr/AccSvrConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/AccSvrConfig.cpp -------------------------------------------------------------------------------- /AccSvr/AccSvrConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/AccSvrConfig.hpp -------------------------------------------------------------------------------- /AccSvr/AccountSvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/AccountSvr.cpp -------------------------------------------------------------------------------- /AccSvr/AccountSvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/AccountSvr.h -------------------------------------------------------------------------------- /AccSvr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/Makefile -------------------------------------------------------------------------------- /AccSvr/config/accountSvr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/config/accountSvr.xml -------------------------------------------------------------------------------- /AccSvr/include/ACCSessionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/include/ACCSessionHandler.hpp -------------------------------------------------------------------------------- /AccSvr/include/CACCSHandlerFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/include/CACCSHandlerFunc.hpp -------------------------------------------------------------------------------- /AccSvr/include/MessageDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/include/MessageDef.hpp -------------------------------------------------------------------------------- /AccSvr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/main.cpp -------------------------------------------------------------------------------- /AccSvr/session/AccsvrSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/AccsvrSession.cpp -------------------------------------------------------------------------------- /AccSvr/session/AccsvrSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/AccsvrSession.h -------------------------------------------------------------------------------- /AccSvr/session/ClientSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/ClientSession.cpp -------------------------------------------------------------------------------- /AccSvr/session/ClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/ClientSession.h -------------------------------------------------------------------------------- /AccSvr/session/DBSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/DBSession.cpp -------------------------------------------------------------------------------- /AccSvr/session/DBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/DBSession.h -------------------------------------------------------------------------------- /AccSvr/session/GatewaySession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/GatewaySession.cpp -------------------------------------------------------------------------------- /AccSvr/session/GatewaySession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/GatewaySession.h -------------------------------------------------------------------------------- /AccSvr/session/LogicSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/LogicSession.cpp -------------------------------------------------------------------------------- /AccSvr/session/LogicSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/LogicSession.h -------------------------------------------------------------------------------- /AccSvr/session/StrictClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/StrictClient.cpp -------------------------------------------------------------------------------- /AccSvr/session/StrictClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/session/StrictClient.h -------------------------------------------------------------------------------- /AccSvr/src/ACCSessionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/src/ACCSessionHandler.cpp -------------------------------------------------------------------------------- /AccSvr/src/CACCSHandlerFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/AccSvr/src/CACCSHandlerFunc.cpp -------------------------------------------------------------------------------- /DBSvr/DBSvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/DBSvr.cpp -------------------------------------------------------------------------------- /DBSvr/DBSvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/DBSvr.h -------------------------------------------------------------------------------- /DBSvr/DBSvrConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/DBSvrConfig.cpp -------------------------------------------------------------------------------- /DBSvr/DBSvrConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/DBSvrConfig.hpp -------------------------------------------------------------------------------- /DBSvr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/Makefile -------------------------------------------------------------------------------- /DBSvr/Makefile_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/Makefile_bak -------------------------------------------------------------------------------- /DBSvr/config/DBSvr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/config/DBSvr.xml -------------------------------------------------------------------------------- /DBSvr/include/CDBSHandlerFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/include/CDBSHandlerFunc.hpp -------------------------------------------------------------------------------- /DBSvr/include/DBSessionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/include/DBSessionHandler.hpp -------------------------------------------------------------------------------- /DBSvr/include/MessageDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/include/MessageDef.hpp -------------------------------------------------------------------------------- /DBSvr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/main.cpp -------------------------------------------------------------------------------- /DBSvr/main.cpp_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/main.cpp_bak -------------------------------------------------------------------------------- /DBSvr/session/AccsvrSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/AccsvrSession.cpp -------------------------------------------------------------------------------- /DBSvr/session/AccsvrSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/AccsvrSession.h -------------------------------------------------------------------------------- /DBSvr/session/ClientSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/ClientSession.cpp -------------------------------------------------------------------------------- /DBSvr/session/ClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/ClientSession.h -------------------------------------------------------------------------------- /DBSvr/session/DBSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/DBSession.cpp -------------------------------------------------------------------------------- /DBSvr/session/DBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/DBSession.h -------------------------------------------------------------------------------- /DBSvr/session/GatewaySession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/GatewaySession.cpp -------------------------------------------------------------------------------- /DBSvr/session/GatewaySession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/GatewaySession.h -------------------------------------------------------------------------------- /DBSvr/session/LogicSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/LogicSession.cpp -------------------------------------------------------------------------------- /DBSvr/session/LogicSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/LogicSession.h -------------------------------------------------------------------------------- /DBSvr/session/StrictClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/StrictClient.cpp -------------------------------------------------------------------------------- /DBSvr/session/StrictClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/session/StrictClient.h -------------------------------------------------------------------------------- /DBSvr/src/CDBSHandlerFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/src/CDBSHandlerFunc.cpp -------------------------------------------------------------------------------- /DBSvr/src/DBSessionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/src/DBSessionHandler.cpp -------------------------------------------------------------------------------- /DBSvr/testsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/DBSvr/testsql.sql -------------------------------------------------------------------------------- /Factory/BaseFactory.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Factory/BaseFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Factory/BaseFactory.h -------------------------------------------------------------------------------- /Factory/CHandleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Factory/CHandleContext.cpp -------------------------------------------------------------------------------- /Factory/CHandleContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Factory/CHandleContext.hpp -------------------------------------------------------------------------------- /GatewaySvr/GatewaySvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/GatewaySvr.cpp -------------------------------------------------------------------------------- /GatewaySvr/GatewaySvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/GatewaySvr.h -------------------------------------------------------------------------------- /GatewaySvr/GatewaySvrConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/GatewaySvrConfig.cpp -------------------------------------------------------------------------------- /GatewaySvr/GatewaySvrConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/GatewaySvrConfig.hpp -------------------------------------------------------------------------------- /GatewaySvr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/Makefile -------------------------------------------------------------------------------- /GatewaySvr/config/gatewaySvr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/config/gatewaySvr.xml -------------------------------------------------------------------------------- /GatewaySvr/gprof2dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/gprof2dot.py -------------------------------------------------------------------------------- /GatewaySvr/include/CGWSHandlerFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/include/CGWSHandlerFunc.hpp -------------------------------------------------------------------------------- /GatewaySvr/include/GWSessionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/include/GWSessionHandler.hpp -------------------------------------------------------------------------------- /GatewaySvr/include/MessageDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/include/MessageDef.hpp -------------------------------------------------------------------------------- /GatewaySvr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/main.cpp -------------------------------------------------------------------------------- /GatewaySvr/session/AccsvrSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/AccsvrSession.cpp -------------------------------------------------------------------------------- /GatewaySvr/session/AccsvrSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/AccsvrSession.h -------------------------------------------------------------------------------- /GatewaySvr/session/ClientSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/ClientSession.cpp -------------------------------------------------------------------------------- /GatewaySvr/session/ClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/ClientSession.h -------------------------------------------------------------------------------- /GatewaySvr/session/DBSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/DBSession.cpp -------------------------------------------------------------------------------- /GatewaySvr/session/DBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/DBSession.h -------------------------------------------------------------------------------- /GatewaySvr/session/GatewaySession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/GatewaySession.cpp -------------------------------------------------------------------------------- /GatewaySvr/session/GatewaySession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/GatewaySession.h -------------------------------------------------------------------------------- /GatewaySvr/session/LogicSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/LogicSession.cpp -------------------------------------------------------------------------------- /GatewaySvr/session/LogicSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/LogicSession.h -------------------------------------------------------------------------------- /GatewaySvr/session/StrictClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/StrictClient.cpp -------------------------------------------------------------------------------- /GatewaySvr/session/StrictClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/session/StrictClient.h -------------------------------------------------------------------------------- /GatewaySvr/src/CGWSHandlerFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/src/CGWSHandlerFunc.cpp -------------------------------------------------------------------------------- /GatewaySvr/src/GWSessionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/GatewaySvr/src/GWSessionHandler.cpp -------------------------------------------------------------------------------- /LogicSvr/Logic/Actor.cpp: -------------------------------------------------------------------------------- 1 | #include "Actor.h" 2 | 3 | -------------------------------------------------------------------------------- /LogicSvr/Logic/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/Logic/Actor.h -------------------------------------------------------------------------------- /LogicSvr/Logic/Player.cpp: -------------------------------------------------------------------------------- 1 | #include "Player.h" 2 | -------------------------------------------------------------------------------- /LogicSvr/Logic/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/Logic/Player.h -------------------------------------------------------------------------------- /LogicSvr/LogicSvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/LogicSvr.cpp -------------------------------------------------------------------------------- /LogicSvr/LogicSvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/LogicSvr.h -------------------------------------------------------------------------------- /LogicSvr/LogicSvrConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/LogicSvrConfig.cpp -------------------------------------------------------------------------------- /LogicSvr/LogicSvrConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/LogicSvrConfig.hpp -------------------------------------------------------------------------------- /LogicSvr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/Makefile -------------------------------------------------------------------------------- /LogicSvr/Makefile_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/Makefile_bak -------------------------------------------------------------------------------- /LogicSvr/config/LogicSvr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/config/LogicSvr.xml -------------------------------------------------------------------------------- /LogicSvr/include/CLogicSHandlerFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/include/CLogicSHandlerFunc.hpp -------------------------------------------------------------------------------- /LogicSvr/include/LogicSessionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/include/LogicSessionHandler.hpp -------------------------------------------------------------------------------- /LogicSvr/include/MessageDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/include/MessageDef.hpp -------------------------------------------------------------------------------- /LogicSvr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/main.cpp -------------------------------------------------------------------------------- /LogicSvr/main.cpp_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/main.cpp_bak -------------------------------------------------------------------------------- /LogicSvr/session/AccsvrSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/AccsvrSession.cpp -------------------------------------------------------------------------------- /LogicSvr/session/AccsvrSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/AccsvrSession.h -------------------------------------------------------------------------------- /LogicSvr/session/ClientSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/ClientSession.cpp -------------------------------------------------------------------------------- /LogicSvr/session/ClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/ClientSession.h -------------------------------------------------------------------------------- /LogicSvr/session/DBSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/DBSession.cpp -------------------------------------------------------------------------------- /LogicSvr/session/DBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/DBSession.h -------------------------------------------------------------------------------- /LogicSvr/session/GatewaySession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/GatewaySession.cpp -------------------------------------------------------------------------------- /LogicSvr/session/GatewaySession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/GatewaySession.h -------------------------------------------------------------------------------- /LogicSvr/session/LogicSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/LogicSession.cpp -------------------------------------------------------------------------------- /LogicSvr/session/LogicSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/LogicSession.h -------------------------------------------------------------------------------- /LogicSvr/session/StrictClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/StrictClient.cpp -------------------------------------------------------------------------------- /LogicSvr/session/StrictClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/session/StrictClient.h -------------------------------------------------------------------------------- /LogicSvr/src/CLogicSHandlerFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/src/CLogicSHandlerFunc.cpp -------------------------------------------------------------------------------- /LogicSvr/src/LogicSessionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/src/LogicSessionHandler.cpp -------------------------------------------------------------------------------- /LogicSvr/testsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/LogicSvr/testsql.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/README.md -------------------------------------------------------------------------------- /Test/include/TestAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Test/include/TestAccess.h -------------------------------------------------------------------------------- /Test/src/TestAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Test/src/TestAccess.cpp -------------------------------------------------------------------------------- /Thread/BaseThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Thread/BaseThread.cpp -------------------------------------------------------------------------------- /Thread/BaseThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Thread/BaseThread.h -------------------------------------------------------------------------------- /Thread/CThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Thread/CThreadPool.cpp -------------------------------------------------------------------------------- /Thread/CThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Thread/CThreadPool.h -------------------------------------------------------------------------------- /Thread/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Thread/Mutex.cpp -------------------------------------------------------------------------------- /Thread/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Thread/Mutex.h -------------------------------------------------------------------------------- /Thread/ThreadBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Thread/ThreadBase.cpp -------------------------------------------------------------------------------- /Thread/ThreadBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/Thread/ThreadBase.h -------------------------------------------------------------------------------- /UnlimitSvr.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/UnlimitSvr.cbp -------------------------------------------------------------------------------- /UnlimitSvr.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/UnlimitSvr.depend -------------------------------------------------------------------------------- /UnlimitSvr.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/UnlimitSvr.layout -------------------------------------------------------------------------------- /ValgrindOut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/ValgrindOut.xml -------------------------------------------------------------------------------- /common/CPkgBuf.cpp: -------------------------------------------------------------------------------- 1 | #include "CPkgBuf.hpp" 2 | 3 | -------------------------------------------------------------------------------- /common/CPkgBuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/common/CPkgBuf.hpp -------------------------------------------------------------------------------- /common/CPkgBufFactory.cpp: -------------------------------------------------------------------------------- 1 | #include "CPkgBufFactory.hpp" 2 | -------------------------------------------------------------------------------- /common/CPkgBufFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/common/CPkgBufFactory.hpp -------------------------------------------------------------------------------- /common/CPkgBufManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/common/CPkgBufManager.cpp -------------------------------------------------------------------------------- /common/CPkgBufManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/common/CPkgBufManager.hpp -------------------------------------------------------------------------------- /common/ICPkgBuf.cpp: -------------------------------------------------------------------------------- 1 | #include "ICPkgBuf.hpp" 2 | 3 | -------------------------------------------------------------------------------- /common/ICPkgBuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/common/ICPkgBuf.hpp -------------------------------------------------------------------------------- /common/SIDGenerator.cpp: -------------------------------------------------------------------------------- 1 | #include "SIDGenerator.hpp" 2 | -------------------------------------------------------------------------------- /common/SIDGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/common/SIDGenerator.hpp -------------------------------------------------------------------------------- /database/CDBInstFactory.cpp: -------------------------------------------------------------------------------- 1 | #include "CDBInstFactory.hpp" 2 | 3 | -------------------------------------------------------------------------------- /database/CDBInstFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/CDBInstFactory.hpp -------------------------------------------------------------------------------- /database/CDBInstMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/CDBInstMgr.cpp -------------------------------------------------------------------------------- /database/CDBInstMgr.hpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/CQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/CQuery.cpp -------------------------------------------------------------------------------- /database/CQuery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/CQuery.hpp -------------------------------------------------------------------------------- /database/CResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/CResult.cpp -------------------------------------------------------------------------------- /database/CResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/CResult.hpp -------------------------------------------------------------------------------- /database/CSqlConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/CSqlConn.cpp -------------------------------------------------------------------------------- /database/CSqlConn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/CSqlConn.hpp -------------------------------------------------------------------------------- /database/testsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/database/testsql.sql -------------------------------------------------------------------------------- /include/CBuffQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CBuffQueue.hpp -------------------------------------------------------------------------------- /include/CConfigBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CConfigBase.hpp -------------------------------------------------------------------------------- /include/CFileUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CFileUtils.hpp -------------------------------------------------------------------------------- /include/CIoBuff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CIoBuff.hpp -------------------------------------------------------------------------------- /include/CIoThread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CIoThread.hpp -------------------------------------------------------------------------------- /include/CIoThread.hpp_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CIoThread.hpp_bak -------------------------------------------------------------------------------- /include/CPackageFetch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CPackageFetch.hpp -------------------------------------------------------------------------------- /include/CRecvBuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CRecvBuf.hpp -------------------------------------------------------------------------------- /include/CSendBuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CSendBuf.hpp -------------------------------------------------------------------------------- /include/CSendThread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CSendThread.hpp -------------------------------------------------------------------------------- /include/CServerBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/CServerBase.hpp -------------------------------------------------------------------------------- /include/ConfigStruct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/ConfigStruct.hpp -------------------------------------------------------------------------------- /include/EpollServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/EpollServer.hpp -------------------------------------------------------------------------------- /include/PackageHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/PackageHandler.hpp -------------------------------------------------------------------------------- /include/ServerInclude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/ServerInclude.hpp -------------------------------------------------------------------------------- /include/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/Singleton.h -------------------------------------------------------------------------------- /include/acctTimeTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/acctTimeTool.hpp -------------------------------------------------------------------------------- /include/baseHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/baseHeader.h -------------------------------------------------------------------------------- /include/log4z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/log4z.h -------------------------------------------------------------------------------- /include/packHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/packHeader.hpp -------------------------------------------------------------------------------- /include/packageStruct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/packageStruct.hpp -------------------------------------------------------------------------------- /include/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/queue.hpp -------------------------------------------------------------------------------- /include/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/allocators.h -------------------------------------------------------------------------------- /include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/document.h -------------------------------------------------------------------------------- /include/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /include/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/encodings.h -------------------------------------------------------------------------------- /include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /include/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/error/error.h -------------------------------------------------------------------------------- /include/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /include/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /include/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /include/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /include/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /include/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /include/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /include/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /include/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /include/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /include/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /include/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /include/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /include/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /include/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/memorystream.h -------------------------------------------------------------------------------- /include/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /include/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /include/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/pointer.h -------------------------------------------------------------------------------- /include/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /include/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/reader.h -------------------------------------------------------------------------------- /include/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/rapidjson/writer.h -------------------------------------------------------------------------------- /include/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/tinystr.h -------------------------------------------------------------------------------- /include/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/tinyxml.h -------------------------------------------------------------------------------- /include/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/include/tinyxmlparser.cpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/CLuaEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/CLuaEngine.cpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/CLuaEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/CLuaEngine.hpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/CLuaRegFuncConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/CLuaRegFuncConf.cpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/CLuaRegFuncConf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/CLuaRegFuncConf.hpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/CLuaRegNameConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/CLuaRegNameConf.cpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/CLuaRegNameConf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/CLuaRegNameConf.hpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/CLuaScriptRegister.cpp: -------------------------------------------------------------------------------- 1 | #include "CLuaScriptRegister.hpp" 2 | -------------------------------------------------------------------------------- /luasrc/LuaEngine/CLuaScriptRegister.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/CLuaScriptRegister.hpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/Makefile -------------------------------------------------------------------------------- /luasrc/LuaEngine/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/Test.cpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/Test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/Test.hpp -------------------------------------------------------------------------------- /luasrc/LuaEngine/Test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/Test.lua -------------------------------------------------------------------------------- /luasrc/LuaEngine/testMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/LuaEngine/testMain.cpp -------------------------------------------------------------------------------- /luasrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/Makefile -------------------------------------------------------------------------------- /luasrc/fun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/fun.cpp -------------------------------------------------------------------------------- /luasrc/fun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/fun.lua -------------------------------------------------------------------------------- /luasrc/luaTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/luaTest.c -------------------------------------------------------------------------------- /luasrc/luaTest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/luaTest.lua -------------------------------------------------------------------------------- /luasrc/luaTestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/luaTestMain.cpp -------------------------------------------------------------------------------- /luasrc/lua_call_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/lua_call_c.cpp -------------------------------------------------------------------------------- /luasrc/lua_call_c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/lua_call_c.lua -------------------------------------------------------------------------------- /luasrc/lua_call_so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/lua_call_so.c -------------------------------------------------------------------------------- /luasrc/lua_call_so.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/lua_call_so.lua -------------------------------------------------------------------------------- /luasrc/lua_userdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/lua_userdata.cpp -------------------------------------------------------------------------------- /luasrc/lua_userdata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/lua_userdata.lua -------------------------------------------------------------------------------- /luasrc/lua_userdata_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/luasrc/lua_userdata_main.cpp -------------------------------------------------------------------------------- /make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/make -------------------------------------------------------------------------------- /network/include/Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/include/Acceptor.h -------------------------------------------------------------------------------- /network/include/CommonList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/include/CommonList.h -------------------------------------------------------------------------------- /network/include/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/include/Connector.h -------------------------------------------------------------------------------- /network/include/IoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/include/IoHandler.h -------------------------------------------------------------------------------- /network/include/NetWorkObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/include/NetWorkObject.h -------------------------------------------------------------------------------- /network/include/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/include/Session.h -------------------------------------------------------------------------------- /network/include/Session_bak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/include/Session_bak.h -------------------------------------------------------------------------------- /network/include/threadCallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/include/threadCallBack.h -------------------------------------------------------------------------------- /network/src/Acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/src/Acceptor.cpp -------------------------------------------------------------------------------- /network/src/Connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/src/Connector.cpp -------------------------------------------------------------------------------- /network/src/IoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/src/IoHandler.cpp -------------------------------------------------------------------------------- /network/src/NetWorkObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/src/NetWorkObject.cpp -------------------------------------------------------------------------------- /network/src/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/src/Session.cpp -------------------------------------------------------------------------------- /network/src/Session_bak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/src/Session_bak.cpp -------------------------------------------------------------------------------- /network/src/threadCallBack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/network/src/threadCallBack.cpp -------------------------------------------------------------------------------- /protocol/proto/protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/protocol/proto/protoc.sh -------------------------------------------------------------------------------- /protocol/proto/testMsg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/protocol/proto/testMsg.proto -------------------------------------------------------------------------------- /protocol/testMsg.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/protocol/testMsg.pb.cc -------------------------------------------------------------------------------- /protocol/testMsg.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/protocol/testMsg.pb.h -------------------------------------------------------------------------------- /src/CBufferQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/CBufferQueue.cpp -------------------------------------------------------------------------------- /src/CFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/CFileUtils.cpp -------------------------------------------------------------------------------- /src/CIoBuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/CIoBuff.cpp -------------------------------------------------------------------------------- /src/CIoThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/CIoThread.cpp -------------------------------------------------------------------------------- /src/CPackageFetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/CPackageFetch.cpp -------------------------------------------------------------------------------- /src/CRecvBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/CRecvBuf.cpp -------------------------------------------------------------------------------- /src/CSendBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/CSendBuf.cpp -------------------------------------------------------------------------------- /src/CSendThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/CSendThread.cpp -------------------------------------------------------------------------------- /src/EpollServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/EpollServer.cpp -------------------------------------------------------------------------------- /src/PackageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/PackageHandler.cpp -------------------------------------------------------------------------------- /src/Singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/Singleton.cpp -------------------------------------------------------------------------------- /src/acctTimeTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/acctTimeTool.cpp -------------------------------------------------------------------------------- /src/log4z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/log4z.cpp -------------------------------------------------------------------------------- /src/packHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/packHeader.cpp -------------------------------------------------------------------------------- /src/packageStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/packageStruct.cpp -------------------------------------------------------------------------------- /src/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/tinystr.cpp -------------------------------------------------------------------------------- /src/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/tinyxml.cpp -------------------------------------------------------------------------------- /src/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/tinyxmlerror.cpp -------------------------------------------------------------------------------- /src/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/src/tinyxmlparser.cpp -------------------------------------------------------------------------------- /testclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/Makefile -------------------------------------------------------------------------------- /testclient/TestClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/TestClient.cpp -------------------------------------------------------------------------------- /testclient/TestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/TestClient.h -------------------------------------------------------------------------------- /testclient/config/gatewaySvr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/config/gatewaySvr.xml -------------------------------------------------------------------------------- /testclient/include/CTCHandlerFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/include/CTCHandlerFunc.hpp -------------------------------------------------------------------------------- /testclient/include/MessageDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/include/MessageDef.hpp -------------------------------------------------------------------------------- /testclient/include/TCSessionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/include/TCSessionHandler.hpp -------------------------------------------------------------------------------- /testclient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/main.cpp -------------------------------------------------------------------------------- /testclient/session/AccsvrSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/AccsvrSession.cpp -------------------------------------------------------------------------------- /testclient/session/AccsvrSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/AccsvrSession.h -------------------------------------------------------------------------------- /testclient/session/ClientSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/ClientSession.cpp -------------------------------------------------------------------------------- /testclient/session/ClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/ClientSession.h -------------------------------------------------------------------------------- /testclient/session/DBSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/DBSession.cpp -------------------------------------------------------------------------------- /testclient/session/DBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/DBSession.h -------------------------------------------------------------------------------- /testclient/session/GatewaySession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/GatewaySession.cpp -------------------------------------------------------------------------------- /testclient/session/GatewaySession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/GatewaySession.h -------------------------------------------------------------------------------- /testclient/session/LogicSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/LogicSession.cpp -------------------------------------------------------------------------------- /testclient/session/LogicSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/LogicSession.h -------------------------------------------------------------------------------- /testclient/session/StrictClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/StrictClient.cpp -------------------------------------------------------------------------------- /testclient/session/StrictClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/session/StrictClient.h -------------------------------------------------------------------------------- /testclient/src/CTCHandlerFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/src/CTCHandlerFunc.cpp -------------------------------------------------------------------------------- /testclient/src/TCSessionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sguphil/server/HEAD/testclient/src/TCSessionHandler.cpp --------------------------------------------------------------------------------