├── .gitattributes ├── .gitignore ├── Example ├── Clean.bat ├── Comm │ ├── Comm.sln │ └── Comm │ │ ├── Comm.cpp │ │ ├── Comm.vcproj │ │ ├── Comm.vcxproj │ │ ├── Comm.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── File │ ├── File │ │ ├── File.sln │ │ ├── File.vcproj │ │ ├── File.vcxproj │ │ ├── File.vcxproj.filters │ │ ├── Impl │ │ │ └── FileImpl.h │ │ ├── TestFile.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── FileMonitor │ │ ├── FileMonitor.sln │ │ └── FileMonitor │ │ ├── FileMonitor.vcproj │ │ ├── FileMonitor.vcxproj │ │ ├── FileMonitor.vcxproj.filters │ │ ├── TestFileMonitor.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── Network │ ├── BlockEcho │ │ ├── BlockClient │ │ │ ├── BlockClient.cpp │ │ │ ├── BlockClient.vcproj │ │ │ ├── BlockClient.vcxproj │ │ │ ├── BlockClient.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── BlockEcho.sln │ │ └── BlockEcho │ │ │ ├── BlockEcho.cpp │ │ │ ├── BlockEcho.vcproj │ │ │ ├── BlockEcho.vcxproj │ │ │ ├── BlockEcho.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── Http │ │ ├── Http.sln │ │ └── Http │ │ │ ├── Connection.cpp │ │ │ ├── Connection.h │ │ │ ├── ConnectionMgr.cpp │ │ │ ├── ConnectionMgr.h │ │ │ ├── Header.h │ │ │ ├── Http.cpp │ │ │ ├── Http.vcproj │ │ │ ├── Http.vcxproj │ │ │ ├── Http.vcxproj.filters │ │ │ ├── MimeTypes.cpp │ │ │ ├── MimeTypes.h │ │ │ ├── Reply.cpp │ │ │ ├── Reply.h │ │ │ ├── Request.h │ │ │ ├── RequestHandler.cpp │ │ │ ├── RequestHandler.h │ │ │ ├── RequestParser.cpp │ │ │ ├── RequestParser.h │ │ │ ├── Server.cpp │ │ │ ├── Server.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── MaxConnection │ │ ├── MaxConnection.sln │ │ └── MaxConnection │ │ │ ├── MaxConnection.cpp │ │ │ ├── MaxConnection.vcproj │ │ │ ├── MaxConnection.vcxproj │ │ │ ├── MaxConnection.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── Netty │ │ └── Discard │ │ │ ├── Discard.sln │ │ │ ├── Discard │ │ │ ├── Discard.cpp │ │ │ ├── Discard.vcproj │ │ │ ├── Discard.vcxproj │ │ │ ├── Discard.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ │ └── DiscardCli │ │ │ ├── DiscardCli.cpp │ │ │ ├── DiscardCli.vcproj │ │ │ ├── DiscardCli.vcxproj │ │ │ ├── DiscardCli.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── ReactorNetwork │ │ ├── ReactorNetwork.sln │ │ └── ReactorNetwork │ │ │ ├── ReactorNetwork.cpp │ │ │ ├── ReactorNetwork.vcproj │ │ │ ├── SvrImpl.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── Roudtrip │ │ ├── Roudtrip.sln │ │ └── Roudtrip │ │ │ ├── Roudtrip.cpp │ │ │ ├── Roudtrip.vcproj │ │ │ ├── Roudtrip.vcxproj │ │ │ ├── Roudtrip.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── Sock4a │ │ ├── Sock4a.sln │ │ ├── Sock4a │ │ │ ├── Sock4a.cpp │ │ │ ├── Sock4a.vcproj │ │ │ ├── Sock4a.vcxproj │ │ │ ├── Sock4a.vcxproj.filters │ │ │ ├── Tunnel.hpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ └── sock4_client │ │ │ ├── sock4_client.cpp │ │ │ ├── sock4_client.vcproj │ │ │ ├── sock4_client.vcxproj │ │ │ ├── sock4_client.vcxproj.filters │ │ │ ├── socks4.hpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── Tcp │ │ ├── NetworkCli │ │ │ ├── ClientImpl │ │ │ │ └── ClientImpl.hpp │ │ │ ├── NetworkCli.cpp │ │ │ ├── NetworkCli.vcproj │ │ │ ├── NetworkCli.vcxproj │ │ │ ├── NetworkCli.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── NetworkSvr │ │ │ ├── Impl │ │ │ │ └── ServerImpl.h │ │ │ ├── TestNetwork.cpp │ │ │ ├── TestNetwork.vcproj │ │ │ ├── TestNetwork.vcxproj │ │ │ ├── TestNetwork.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ └── SimpleNetwork.sln │ ├── Twister │ │ ├── 01 │ │ │ ├── 01.cpp │ │ │ ├── 01.vcproj │ │ │ ├── 01.vcxproj │ │ │ ├── 01.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── 02 │ │ │ ├── 02.cpp │ │ │ ├── 02.vcproj │ │ │ ├── 02.vcxproj │ │ │ ├── 02.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── 03 │ │ │ ├── 03.cpp │ │ │ ├── 03.vcproj │ │ │ ├── 03.vcxproj │ │ │ ├── 03.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── 05 │ │ │ ├── 05.cpp │ │ │ ├── 05.vcproj │ │ │ ├── 05.vcxproj │ │ │ ├── 05.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ └── TWister.sln │ ├── Udp │ │ ├── Udp.sln │ │ └── Udp │ │ │ ├── Udp.cpp │ │ │ ├── Udp.vcproj │ │ │ ├── Udp.vcxproj │ │ │ ├── Udp.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ └── socket_attr │ │ ├── socket_attr.sln │ │ └── socket_attr │ │ ├── socket_attr.cpp │ │ ├── socket_attr.vcproj │ │ ├── socket_attr.vcxproj │ │ ├── socket_attr.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── Other │ └── Logger │ │ ├── Logger.sln │ │ └── Logger │ │ ├── Logger.cpp │ │ ├── Logger.vcproj │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── Pipe │ ├── Pipe.sln │ └── Pipe │ │ ├── Pipe.cpp │ │ ├── Pipe.vcproj │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h └── Timer │ ├── Timer.cpp │ ├── Timer.sln │ ├── Timer.vcproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── README.md ├── include ├── async_io │ ├── basic.hpp │ ├── file │ │ ├── basic_file.hpp │ │ ├── detail │ │ │ ├── file_change_callback.hpp │ │ │ └── file_change_notify_hook.hpp │ │ ├── file.cpp │ │ ├── file.hpp │ │ ├── file_monitor.cpp │ │ └── file_monitor.hpp │ ├── network.cpp │ ├── network.hpp │ ├── network │ │ ├── accept.cpp │ │ ├── accept.hpp │ │ ├── basic_acceptor.hpp │ │ ├── basic_datagram_socket.hpp │ │ ├── basic_stream_socket.hpp │ │ ├── connect.hpp │ │ ├── ip_address.cpp │ │ ├── ip_address.hpp │ │ ├── sock_init.hpp │ │ ├── socket.cpp │ │ ├── socket.hpp │ │ ├── socket_option.hpp │ │ ├── socket_provider.cpp │ │ ├── socket_provider.hpp │ │ ├── tcp.hpp │ │ └── udp.hpp │ ├── service │ │ ├── async_result.cpp │ │ ├── async_result.hpp │ │ ├── condition.hpp │ │ ├── dispatcher.cpp │ │ ├── dispatcher.hpp │ │ ├── exception.cpp │ │ ├── exception.hpp │ │ ├── iocp.hpp │ │ ├── multi_buffer.hpp │ │ ├── read.hpp │ │ ├── read_write_buffer.hpp │ │ └── write.hpp │ └── timer │ │ ├── impl │ │ ├── basic_timer.hpp │ │ ├── timer_impl.cpp │ │ ├── timer_impl.hpp │ │ └── timer_service.hpp │ │ └── timer.hpp ├── exception │ └── exception_base.hpp ├── extend_stl │ ├── allocator │ │ ├── allocators.hpp │ │ ├── container_allocator.hpp │ │ └── stack_allocator.hpp │ ├── container │ │ ├── assio_vector.hpp │ │ ├── blocking_queue.hpp │ │ ├── bounded_block_queue.hpp │ │ └── sync_container.hpp │ └── string │ │ └── algorithm.hpp ├── memory_pool │ ├── fixed_memory_pool.hpp │ ├── sgi_malloc_pool.hpp │ └── sgi_memory_pool.hpp ├── multi_thread │ ├── lock.hpp │ ├── system_thread_pool.hpp │ ├── thread.hpp │ ├── thread_pool │ │ ├── detail │ │ │ ├── impl.hpp │ │ │ └── thread.hpp │ │ ├── pool_adaptors.hpp │ │ ├── scheduler.hpp │ │ ├── size_controller.hpp │ │ ├── task_adaptor.hpp │ │ └── thread_pool.hpp │ └── tls.hpp ├── serialize │ ├── detail │ │ ├── buffer.hpp │ │ ├── container_dispatch.hpp │ │ ├── dispatch.hpp │ │ ├── serialize_in.hpp │ │ └── serialize_out.hpp │ └── serialize.hpp ├── third_party │ └── google │ │ ├── lib │ │ ├── libprotobuf.lib │ │ └── libprotobuf_d.lib │ │ └── protobuf │ │ ├── SEBS │ │ ├── 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_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 │ │ ├── importer.cc │ │ ├── importer.h │ │ ├── importer_unittest.cc │ │ ├── java │ │ │ ├── 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_helpers.cc │ │ │ ├── java_helpers.h │ │ │ ├── java_message.cc │ │ │ ├── java_message.h │ │ │ ├── java_message_field.cc │ │ │ ├── java_message_field.h │ │ │ ├── java_plugin_unittest.cc │ │ │ ├── java_primitive_field.cc │ │ │ ├── java_primitive_field.h │ │ │ ├── java_service.cc │ │ │ ├── java_service.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_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 │ │ ├── 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_unittest.cc │ │ ├── service.cc │ │ ├── service.h │ │ ├── stubs │ │ ├── common.cc │ │ ├── common.h │ │ ├── common_unittest.cc │ │ ├── hash.h │ │ ├── map-util.h │ │ ├── once.cc │ │ ├── once.h │ │ ├── once_unittest.cc │ │ ├── stl_util-inl.h │ │ ├── structurally_valid.cc │ │ ├── structurally_valid_unittest.cc │ │ ├── strutil.cc │ │ ├── strutil.h │ │ ├── strutil_unittest.cc │ │ ├── substitute.cc │ │ └── substitute.h │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── test_util_lite.cc │ │ ├── test_util_lite.h │ │ ├── testdata │ │ ├── golden_message │ │ └── golden_packed_fields_message │ │ ├── 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_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 ├── unicode │ ├── converters.hpp │ └── string.hpp ├── utility │ ├── circular_buffer.hpp │ ├── move_wrapper.hpp │ ├── object_pool.hpp │ ├── performance_counter.hpp │ └── select.hpp └── win32 │ └── network │ └── network_helper.hpp ├── lib ├── async_io.lib └── async_io_d.lib ├── performance └── pingpong │ ├── asio_pingpong │ ├── asio_pingpong.cpp │ ├── asio_pingpong.vcxproj │ ├── asio_pingpong.vcxproj.filters │ ├── client.hpp │ ├── handler_allocator.hpp │ ├── libboost_date_time-vc110-mt-s-1_54.lib │ ├── libboost_date_time-vc110-mt-sgd-1_54.lib │ ├── libboost_regex-vc110-mt-s-1_54.lib │ ├── libboost_regex-vc110-mt-sgd-1_54.lib │ ├── libboost_system-vc110-mt-s-1_54.lib │ ├── libboost_system-vc110-mt-sgd-1_54.lib │ ├── libboost_thread-vc110-mt-1_54.lib │ ├── server.hpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h │ ├── pingpong.sln │ └── pingpong │ ├── handler_allocator.hpp │ ├── pingping_cli.cpp │ ├── pingping_svr.cpp │ ├── pingpong.cpp │ ├── pingpong.vcxproj │ ├── pingpong.vcxproj.filters │ ├── pingpong_cli.hpp │ ├── pingpong_svr.hpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── src └── async_io │ ├── async_io.sln │ └── async_io │ ├── async_io.vcxproj │ └── async_io.vcxproj.filters └── test ├── handler_allocator_test ├── handler_allocator_test.sln └── handler_allocator_test │ ├── handler_allocator_test.cpp │ ├── handler_allocator_test.vcxproj │ ├── handler_allocator_test.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── read_write_test ├── move_buffer_test │ ├── move_buffer_test.cpp │ ├── move_buffer_test.vcxproj │ ├── move_buffer_test.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── read_write_test.sln └── read_write_test │ ├── My Amplifier XE Results - read_write_test │ ├── My Amplifier XE Results - read_write_test.amplxeproj │ └── r000hs │ │ ├── .norun │ │ ├── config │ │ ├── analysis_type.cfg │ │ ├── collection.cfg │ │ ├── context_values.cfg │ │ ├── runss.options │ │ ├── state.cfg │ │ ├── viewpoint.cfg │ │ └── viewpoint_processed.cfg │ │ ├── data.0 │ │ ├── 5812-6740.0-2152.0.th │ │ ├── 5812-6740.0-5920.0.th │ │ ├── 5812-6740.0-6416.0.th │ │ ├── 5812-6740.0.trace │ │ ├── 6740-3552.0-4416.0.th │ │ ├── 6740-3552.0.trace │ │ └── systemcollector-YU_YU.sc │ │ ├── r000hs.amplxe │ │ └── sqlite-db │ │ └── dicer.db │ ├── multi_msg_decoder.hpp │ ├── read_write_test.cpp │ ├── read_write_test.vcxproj │ ├── read_write_test.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── socket_pool_test └── socket_pool_test.sln ├── timing_wheel_test ├── timing_wheel_test.sln └── timing_wheel_test │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── timing_wheel_test.cpp │ ├── timing_wheel_test.vcxproj │ └── timing_wheel_test.vcxproj.filters └── vdisk_svr ├── vdisk_svr.sln └── vdisk_svr ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── vdisk_svr.cpp └── vdisk_svr.vcxproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/Clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Clean.bat -------------------------------------------------------------------------------- /Example/Comm/Comm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Comm/Comm.sln -------------------------------------------------------------------------------- /Example/Comm/Comm/Comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Comm/Comm/Comm.cpp -------------------------------------------------------------------------------- /Example/Comm/Comm/Comm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Comm/Comm/Comm.vcproj -------------------------------------------------------------------------------- /Example/Comm/Comm/Comm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Comm/Comm/Comm.vcxproj -------------------------------------------------------------------------------- /Example/Comm/Comm/Comm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Comm/Comm/Comm.vcxproj.filters -------------------------------------------------------------------------------- /Example/Comm/Comm/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Comm/Comm/stdafx.cpp -------------------------------------------------------------------------------- /Example/Comm/Comm/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Comm/Comm/stdafx.h -------------------------------------------------------------------------------- /Example/Comm/Comm/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Comm/Comm/targetver.h -------------------------------------------------------------------------------- /Example/File/File/File.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/File.sln -------------------------------------------------------------------------------- /Example/File/File/File.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/File.vcproj -------------------------------------------------------------------------------- /Example/File/File/File.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/File.vcxproj -------------------------------------------------------------------------------- /Example/File/File/File.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/File.vcxproj.filters -------------------------------------------------------------------------------- /Example/File/File/Impl/FileImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/Impl/FileImpl.h -------------------------------------------------------------------------------- /Example/File/File/TestFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/TestFile.cpp -------------------------------------------------------------------------------- /Example/File/File/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/stdafx.cpp -------------------------------------------------------------------------------- /Example/File/File/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/stdafx.h -------------------------------------------------------------------------------- /Example/File/File/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/File/targetver.h -------------------------------------------------------------------------------- /Example/File/FileMonitor/FileMonitor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/FileMonitor/FileMonitor.sln -------------------------------------------------------------------------------- /Example/File/FileMonitor/FileMonitor/FileMonitor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/FileMonitor/FileMonitor/FileMonitor.vcproj -------------------------------------------------------------------------------- /Example/File/FileMonitor/FileMonitor/FileMonitor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/FileMonitor/FileMonitor/FileMonitor.vcxproj -------------------------------------------------------------------------------- /Example/File/FileMonitor/FileMonitor/FileMonitor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/FileMonitor/FileMonitor/FileMonitor.vcxproj.filters -------------------------------------------------------------------------------- /Example/File/FileMonitor/FileMonitor/TestFileMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/FileMonitor/FileMonitor/TestFileMonitor.cpp -------------------------------------------------------------------------------- /Example/File/FileMonitor/FileMonitor/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/FileMonitor/FileMonitor/stdafx.cpp -------------------------------------------------------------------------------- /Example/File/FileMonitor/FileMonitor/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/FileMonitor/FileMonitor/stdafx.h -------------------------------------------------------------------------------- /Example/File/FileMonitor/FileMonitor/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/File/FileMonitor/FileMonitor/targetver.h -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockClient/BlockClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockClient/BlockClient.cpp -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockClient/BlockClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockClient/BlockClient.vcproj -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockClient/BlockClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockClient/BlockClient.vcxproj -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockClient/BlockClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockClient/BlockClient.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockClient/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockClient/stdafx.h -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockClient/targetver.h -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockEcho.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockEcho.sln -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockEcho/BlockEcho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockEcho/BlockEcho.cpp -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockEcho/BlockEcho.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockEcho/BlockEcho.vcproj -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockEcho/BlockEcho.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockEcho/BlockEcho.vcxproj -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockEcho/BlockEcho.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockEcho/BlockEcho.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockEcho/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockEcho/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockEcho/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockEcho/stdafx.h -------------------------------------------------------------------------------- /Example/Network/BlockEcho/BlockEcho/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/BlockEcho/BlockEcho/targetver.h -------------------------------------------------------------------------------- /Example/Network/Http/Http.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http.sln -------------------------------------------------------------------------------- /Example/Network/Http/Http/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Connection.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Connection.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/ConnectionMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/ConnectionMgr.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/ConnectionMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/ConnectionMgr.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Header.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/Http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Http.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/Http.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Http.vcproj -------------------------------------------------------------------------------- /Example/Network/Http/Http/Http.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Http.vcxproj -------------------------------------------------------------------------------- /Example/Network/Http/Http/Http.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Http.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Http/Http/MimeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/MimeTypes.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/MimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/MimeTypes.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/Reply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Reply.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/Reply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Reply.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Request.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/RequestHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/RequestHandler.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/RequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/RequestHandler.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/RequestParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/RequestParser.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/RequestParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/RequestParser.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Server.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/Server.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Http/Http/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Http/Http/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Http/Http/targetver.h -------------------------------------------------------------------------------- /Example/Network/MaxConnection/MaxConnection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/MaxConnection/MaxConnection.sln -------------------------------------------------------------------------------- /Example/Network/MaxConnection/MaxConnection/MaxConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/MaxConnection/MaxConnection/MaxConnection.cpp -------------------------------------------------------------------------------- /Example/Network/MaxConnection/MaxConnection/MaxConnection.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/MaxConnection/MaxConnection/MaxConnection.vcproj -------------------------------------------------------------------------------- /Example/Network/MaxConnection/MaxConnection/MaxConnection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/MaxConnection/MaxConnection/MaxConnection.vcxproj -------------------------------------------------------------------------------- /Example/Network/MaxConnection/MaxConnection/MaxConnection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/MaxConnection/MaxConnection/MaxConnection.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/MaxConnection/MaxConnection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/MaxConnection/MaxConnection/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/MaxConnection/MaxConnection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/MaxConnection/MaxConnection/stdafx.h -------------------------------------------------------------------------------- /Example/Network/MaxConnection/MaxConnection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/MaxConnection/MaxConnection/targetver.h -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/Discard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/Discard.sln -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/Discard/Discard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/Discard/Discard.cpp -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/Discard/Discard.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/Discard/Discard.vcproj -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/Discard/Discard.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/Discard/Discard.vcxproj -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/Discard/Discard.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/Discard/Discard.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/Discard/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/Discard/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/Discard/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/Discard/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/Discard/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/Discard/targetver.h -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/DiscardCli/DiscardCli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/DiscardCli/DiscardCli.cpp -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/DiscardCli/DiscardCli.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/DiscardCli/DiscardCli.vcproj -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/DiscardCli/DiscardCli.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/DiscardCli/DiscardCli.vcxproj -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/DiscardCli/DiscardCli.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/DiscardCli/DiscardCli.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/DiscardCli/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/DiscardCli/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/DiscardCli/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/DiscardCli/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Netty/Discard/DiscardCli/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Netty/Discard/DiscardCli/targetver.h -------------------------------------------------------------------------------- /Example/Network/ReactorNetwork/ReactorNetwork.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/ReactorNetwork/ReactorNetwork.sln -------------------------------------------------------------------------------- /Example/Network/ReactorNetwork/ReactorNetwork/ReactorNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/ReactorNetwork/ReactorNetwork/ReactorNetwork.cpp -------------------------------------------------------------------------------- /Example/Network/ReactorNetwork/ReactorNetwork/ReactorNetwork.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/ReactorNetwork/ReactorNetwork/ReactorNetwork.vcproj -------------------------------------------------------------------------------- /Example/Network/ReactorNetwork/ReactorNetwork/SvrImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/ReactorNetwork/ReactorNetwork/SvrImpl.h -------------------------------------------------------------------------------- /Example/Network/ReactorNetwork/ReactorNetwork/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/ReactorNetwork/ReactorNetwork/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/ReactorNetwork/ReactorNetwork/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/ReactorNetwork/ReactorNetwork/stdafx.h -------------------------------------------------------------------------------- /Example/Network/ReactorNetwork/ReactorNetwork/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/ReactorNetwork/ReactorNetwork/targetver.h -------------------------------------------------------------------------------- /Example/Network/Roudtrip/Roudtrip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Roudtrip/Roudtrip.sln -------------------------------------------------------------------------------- /Example/Network/Roudtrip/Roudtrip/Roudtrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Roudtrip/Roudtrip/Roudtrip.cpp -------------------------------------------------------------------------------- /Example/Network/Roudtrip/Roudtrip/Roudtrip.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Roudtrip/Roudtrip/Roudtrip.vcproj -------------------------------------------------------------------------------- /Example/Network/Roudtrip/Roudtrip/Roudtrip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Roudtrip/Roudtrip/Roudtrip.vcxproj -------------------------------------------------------------------------------- /Example/Network/Roudtrip/Roudtrip/Roudtrip.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Roudtrip/Roudtrip/Roudtrip.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Roudtrip/Roudtrip/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Roudtrip/Roudtrip/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Roudtrip/Roudtrip/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Roudtrip/Roudtrip/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Roudtrip/Roudtrip/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Roudtrip/Roudtrip/targetver.h -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a.sln -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a/Sock4a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a/Sock4a.cpp -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a/Sock4a.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a/Sock4a.vcproj -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a/Sock4a.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a/Sock4a.vcxproj -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a/Sock4a.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a/Sock4a.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a/Tunnel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a/Tunnel.hpp -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Sock4a/Sock4a/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/Sock4a/targetver.h -------------------------------------------------------------------------------- /Example/Network/Sock4a/sock4_client/sock4_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/sock4_client/sock4_client.cpp -------------------------------------------------------------------------------- /Example/Network/Sock4a/sock4_client/sock4_client.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/sock4_client/sock4_client.vcproj -------------------------------------------------------------------------------- /Example/Network/Sock4a/sock4_client/sock4_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/sock4_client/sock4_client.vcxproj -------------------------------------------------------------------------------- /Example/Network/Sock4a/sock4_client/sock4_client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/sock4_client/sock4_client.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Sock4a/sock4_client/socks4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/sock4_client/socks4.hpp -------------------------------------------------------------------------------- /Example/Network/Sock4a/sock4_client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/sock4_client/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Sock4a/sock4_client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/sock4_client/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Sock4a/sock4_client/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Sock4a/sock4_client/targetver.h -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkCli/ClientImpl/ClientImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkCli/ClientImpl/ClientImpl.hpp -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkCli/NetworkCli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkCli/NetworkCli.cpp -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkCli/NetworkCli.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkCli/NetworkCli.vcproj -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkCli/NetworkCli.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkCli/NetworkCli.vcxproj -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkCli/NetworkCli.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkCli/NetworkCli.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkCli/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkCli/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkCli/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkCli/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkCli/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkCli/targetver.h -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkSvr/Impl/ServerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkSvr/Impl/ServerImpl.h -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkSvr/TestNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkSvr/TestNetwork.cpp -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkSvr/TestNetwork.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkSvr/TestNetwork.vcproj -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkSvr/TestNetwork.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkSvr/TestNetwork.vcxproj -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkSvr/TestNetwork.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkSvr/TestNetwork.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkSvr/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkSvr/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkSvr/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkSvr/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Tcp/NetworkSvr/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/NetworkSvr/targetver.h -------------------------------------------------------------------------------- /Example/Network/Tcp/SimpleNetwork.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Tcp/SimpleNetwork.sln -------------------------------------------------------------------------------- /Example/Network/Twister/01/01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/01/01.cpp -------------------------------------------------------------------------------- /Example/Network/Twister/01/01.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/01/01.vcproj -------------------------------------------------------------------------------- /Example/Network/Twister/01/01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/01/01.vcxproj -------------------------------------------------------------------------------- /Example/Network/Twister/01/01.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/01/01.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Twister/01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/01/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Twister/01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/01/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Twister/01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/01/targetver.h -------------------------------------------------------------------------------- /Example/Network/Twister/02/02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/02/02.cpp -------------------------------------------------------------------------------- /Example/Network/Twister/02/02.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/02/02.vcproj -------------------------------------------------------------------------------- /Example/Network/Twister/02/02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/02/02.vcxproj -------------------------------------------------------------------------------- /Example/Network/Twister/02/02.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/02/02.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Twister/02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/02/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Twister/02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/02/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Twister/02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/02/targetver.h -------------------------------------------------------------------------------- /Example/Network/Twister/03/03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/03/03.cpp -------------------------------------------------------------------------------- /Example/Network/Twister/03/03.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/03/03.vcproj -------------------------------------------------------------------------------- /Example/Network/Twister/03/03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/03/03.vcxproj -------------------------------------------------------------------------------- /Example/Network/Twister/03/03.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/03/03.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Twister/03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/03/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Twister/03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/03/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Twister/03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/03/targetver.h -------------------------------------------------------------------------------- /Example/Network/Twister/05/05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/05/05.cpp -------------------------------------------------------------------------------- /Example/Network/Twister/05/05.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/05/05.vcproj -------------------------------------------------------------------------------- /Example/Network/Twister/05/05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/05/05.vcxproj -------------------------------------------------------------------------------- /Example/Network/Twister/05/05.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/05/05.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Twister/05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/05/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Twister/05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/05/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Twister/05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/05/targetver.h -------------------------------------------------------------------------------- /Example/Network/Twister/TWister.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Twister/TWister.sln -------------------------------------------------------------------------------- /Example/Network/Udp/Udp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Udp/Udp.sln -------------------------------------------------------------------------------- /Example/Network/Udp/Udp/Udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Udp/Udp/Udp.cpp -------------------------------------------------------------------------------- /Example/Network/Udp/Udp/Udp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Udp/Udp/Udp.vcproj -------------------------------------------------------------------------------- /Example/Network/Udp/Udp/Udp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Udp/Udp/Udp.vcxproj -------------------------------------------------------------------------------- /Example/Network/Udp/Udp/Udp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Udp/Udp/Udp.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/Udp/Udp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Udp/Udp/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/Udp/Udp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Udp/Udp/stdafx.h -------------------------------------------------------------------------------- /Example/Network/Udp/Udp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/Udp/Udp/targetver.h -------------------------------------------------------------------------------- /Example/Network/socket_attr/socket_attr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/socket_attr/socket_attr.sln -------------------------------------------------------------------------------- /Example/Network/socket_attr/socket_attr/socket_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/socket_attr/socket_attr/socket_attr.cpp -------------------------------------------------------------------------------- /Example/Network/socket_attr/socket_attr/socket_attr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/socket_attr/socket_attr/socket_attr.vcproj -------------------------------------------------------------------------------- /Example/Network/socket_attr/socket_attr/socket_attr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/socket_attr/socket_attr/socket_attr.vcxproj -------------------------------------------------------------------------------- /Example/Network/socket_attr/socket_attr/socket_attr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/socket_attr/socket_attr/socket_attr.vcxproj.filters -------------------------------------------------------------------------------- /Example/Network/socket_attr/socket_attr/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/socket_attr/socket_attr/stdafx.cpp -------------------------------------------------------------------------------- /Example/Network/socket_attr/socket_attr/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/socket_attr/socket_attr/stdafx.h -------------------------------------------------------------------------------- /Example/Network/socket_attr/socket_attr/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Network/socket_attr/socket_attr/targetver.h -------------------------------------------------------------------------------- /Example/Other/Logger/Logger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Other/Logger/Logger.sln -------------------------------------------------------------------------------- /Example/Other/Logger/Logger/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Other/Logger/Logger/Logger.cpp -------------------------------------------------------------------------------- /Example/Other/Logger/Logger/Logger.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Other/Logger/Logger/Logger.vcproj -------------------------------------------------------------------------------- /Example/Other/Logger/Logger/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Other/Logger/Logger/stdafx.cpp -------------------------------------------------------------------------------- /Example/Other/Logger/Logger/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Other/Logger/Logger/stdafx.h -------------------------------------------------------------------------------- /Example/Other/Logger/Logger/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Other/Logger/Logger/targetver.h -------------------------------------------------------------------------------- /Example/Pipe/Pipe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Pipe/Pipe.sln -------------------------------------------------------------------------------- /Example/Pipe/Pipe/Pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Pipe/Pipe/Pipe.cpp -------------------------------------------------------------------------------- /Example/Pipe/Pipe/Pipe.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Pipe/Pipe/Pipe.vcproj -------------------------------------------------------------------------------- /Example/Pipe/Pipe/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Pipe/Pipe/stdafx.cpp -------------------------------------------------------------------------------- /Example/Pipe/Pipe/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Pipe/Pipe/stdafx.h -------------------------------------------------------------------------------- /Example/Pipe/Pipe/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Pipe/Pipe/targetver.h -------------------------------------------------------------------------------- /Example/Timer/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Timer/Timer.cpp -------------------------------------------------------------------------------- /Example/Timer/Timer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Timer/Timer.sln -------------------------------------------------------------------------------- /Example/Timer/Timer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Timer/Timer.vcproj -------------------------------------------------------------------------------- /Example/Timer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Timer/stdafx.cpp -------------------------------------------------------------------------------- /Example/Timer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Timer/stdafx.h -------------------------------------------------------------------------------- /Example/Timer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/Example/Timer/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/README.md -------------------------------------------------------------------------------- /include/async_io/basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/basic.hpp -------------------------------------------------------------------------------- /include/async_io/file/basic_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/file/basic_file.hpp -------------------------------------------------------------------------------- /include/async_io/file/detail/file_change_callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/file/detail/file_change_callback.hpp -------------------------------------------------------------------------------- /include/async_io/file/detail/file_change_notify_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/file/detail/file_change_notify_hook.hpp -------------------------------------------------------------------------------- /include/async_io/file/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/file/file.cpp -------------------------------------------------------------------------------- /include/async_io/file/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/file/file.hpp -------------------------------------------------------------------------------- /include/async_io/file/file_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/file/file_monitor.cpp -------------------------------------------------------------------------------- /include/async_io/file/file_monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/file/file_monitor.hpp -------------------------------------------------------------------------------- /include/async_io/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network.cpp -------------------------------------------------------------------------------- /include/async_io/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network.hpp -------------------------------------------------------------------------------- /include/async_io/network/accept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/accept.cpp -------------------------------------------------------------------------------- /include/async_io/network/accept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/accept.hpp -------------------------------------------------------------------------------- /include/async_io/network/basic_acceptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/basic_acceptor.hpp -------------------------------------------------------------------------------- /include/async_io/network/basic_datagram_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/basic_datagram_socket.hpp -------------------------------------------------------------------------------- /include/async_io/network/basic_stream_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/basic_stream_socket.hpp -------------------------------------------------------------------------------- /include/async_io/network/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/connect.hpp -------------------------------------------------------------------------------- /include/async_io/network/ip_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/ip_address.cpp -------------------------------------------------------------------------------- /include/async_io/network/ip_address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/ip_address.hpp -------------------------------------------------------------------------------- /include/async_io/network/sock_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/sock_init.hpp -------------------------------------------------------------------------------- /include/async_io/network/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/socket.cpp -------------------------------------------------------------------------------- /include/async_io/network/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/socket.hpp -------------------------------------------------------------------------------- /include/async_io/network/socket_option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/socket_option.hpp -------------------------------------------------------------------------------- /include/async_io/network/socket_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/socket_provider.cpp -------------------------------------------------------------------------------- /include/async_io/network/socket_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/socket_provider.hpp -------------------------------------------------------------------------------- /include/async_io/network/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/tcp.hpp -------------------------------------------------------------------------------- /include/async_io/network/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/network/udp.hpp -------------------------------------------------------------------------------- /include/async_io/service/async_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/async_result.cpp -------------------------------------------------------------------------------- /include/async_io/service/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/async_result.hpp -------------------------------------------------------------------------------- /include/async_io/service/condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/condition.hpp -------------------------------------------------------------------------------- /include/async_io/service/dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/dispatcher.cpp -------------------------------------------------------------------------------- /include/async_io/service/dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/dispatcher.hpp -------------------------------------------------------------------------------- /include/async_io/service/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/exception.cpp -------------------------------------------------------------------------------- /include/async_io/service/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/exception.hpp -------------------------------------------------------------------------------- /include/async_io/service/iocp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/iocp.hpp -------------------------------------------------------------------------------- /include/async_io/service/multi_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/multi_buffer.hpp -------------------------------------------------------------------------------- /include/async_io/service/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/read.hpp -------------------------------------------------------------------------------- /include/async_io/service/read_write_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/read_write_buffer.hpp -------------------------------------------------------------------------------- /include/async_io/service/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/service/write.hpp -------------------------------------------------------------------------------- /include/async_io/timer/impl/basic_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/timer/impl/basic_timer.hpp -------------------------------------------------------------------------------- /include/async_io/timer/impl/timer_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/timer/impl/timer_impl.cpp -------------------------------------------------------------------------------- /include/async_io/timer/impl/timer_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/timer/impl/timer_impl.hpp -------------------------------------------------------------------------------- /include/async_io/timer/impl/timer_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/timer/impl/timer_service.hpp -------------------------------------------------------------------------------- /include/async_io/timer/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/async_io/timer/timer.hpp -------------------------------------------------------------------------------- /include/exception/exception_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/exception/exception_base.hpp -------------------------------------------------------------------------------- /include/extend_stl/allocator/allocators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/extend_stl/allocator/allocators.hpp -------------------------------------------------------------------------------- /include/extend_stl/allocator/container_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/extend_stl/allocator/container_allocator.hpp -------------------------------------------------------------------------------- /include/extend_stl/allocator/stack_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/extend_stl/allocator/stack_allocator.hpp -------------------------------------------------------------------------------- /include/extend_stl/container/assio_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/extend_stl/container/assio_vector.hpp -------------------------------------------------------------------------------- /include/extend_stl/container/blocking_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/extend_stl/container/blocking_queue.hpp -------------------------------------------------------------------------------- /include/extend_stl/container/bounded_block_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/extend_stl/container/bounded_block_queue.hpp -------------------------------------------------------------------------------- /include/extend_stl/container/sync_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/extend_stl/container/sync_container.hpp -------------------------------------------------------------------------------- /include/extend_stl/string/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/extend_stl/string/algorithm.hpp -------------------------------------------------------------------------------- /include/memory_pool/fixed_memory_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/memory_pool/fixed_memory_pool.hpp -------------------------------------------------------------------------------- /include/memory_pool/sgi_malloc_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/memory_pool/sgi_malloc_pool.hpp -------------------------------------------------------------------------------- /include/memory_pool/sgi_memory_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/memory_pool/sgi_memory_pool.hpp -------------------------------------------------------------------------------- /include/multi_thread/lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/lock.hpp -------------------------------------------------------------------------------- /include/multi_thread/system_thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/system_thread_pool.hpp -------------------------------------------------------------------------------- /include/multi_thread/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/thread.hpp -------------------------------------------------------------------------------- /include/multi_thread/thread_pool/detail/impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/thread_pool/detail/impl.hpp -------------------------------------------------------------------------------- /include/multi_thread/thread_pool/detail/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/thread_pool/detail/thread.hpp -------------------------------------------------------------------------------- /include/multi_thread/thread_pool/pool_adaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/thread_pool/pool_adaptors.hpp -------------------------------------------------------------------------------- /include/multi_thread/thread_pool/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/thread_pool/scheduler.hpp -------------------------------------------------------------------------------- /include/multi_thread/thread_pool/size_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/thread_pool/size_controller.hpp -------------------------------------------------------------------------------- /include/multi_thread/thread_pool/task_adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/thread_pool/task_adaptor.hpp -------------------------------------------------------------------------------- /include/multi_thread/thread_pool/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/thread_pool/thread_pool.hpp -------------------------------------------------------------------------------- /include/multi_thread/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/multi_thread/tls.hpp -------------------------------------------------------------------------------- /include/serialize/detail/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/serialize/detail/buffer.hpp -------------------------------------------------------------------------------- /include/serialize/detail/container_dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/serialize/detail/container_dispatch.hpp -------------------------------------------------------------------------------- /include/serialize/detail/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/serialize/detail/dispatch.hpp -------------------------------------------------------------------------------- /include/serialize/detail/serialize_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/serialize/detail/serialize_in.hpp -------------------------------------------------------------------------------- /include/serialize/detail/serialize_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/serialize/detail/serialize_out.hpp -------------------------------------------------------------------------------- /include/serialize/serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/serialize/serialize.hpp -------------------------------------------------------------------------------- /include/third_party/google/lib/libprotobuf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/lib/libprotobuf.lib -------------------------------------------------------------------------------- /include/third_party/google/lib/libprotobuf_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/lib/libprotobuf_d.lib -------------------------------------------------------------------------------- /include/third_party/google/protobuf/SEBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/SEBS -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/code_generator.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/command_line_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/command_line_interface.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/command_line_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/command_line_interface.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/command_line_interface_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/command_line_interface_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_enum.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_enum.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_enum_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_enum_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_extension.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_extension.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_file.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_file.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_generator.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_generator.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_helpers.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_helpers.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_message.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_message.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_message_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_message_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_primitive_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_primitive_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_service.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_service.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_string_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_string_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/cpp/cpp_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/cpp/cpp_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/importer.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/importer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/importer_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_enum.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_enum.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_enum_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_enum_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_extension.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_extension.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_file.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_file.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_generator.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_generator.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_helpers.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_helpers.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_message.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_message.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_message_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_message_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_plugin_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_primitive_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_primitive_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_service.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_service.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_string_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/java/java_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/java/java_string_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/main.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/mock_code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/mock_code_generator.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/mock_code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/mock_code_generator.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/package_info.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/parser_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/parser_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/plugin.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/plugin.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/plugin.pb.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/python/python_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/python/python_generator.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/python/python_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/python/python_generator.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/python/python_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/python/python_plugin_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/subprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/subprocess.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/subprocess.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/test_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/test_plugin.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/zip_output_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/zip_output_unittest.sh -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/zip_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/zip_writer.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/compiler/zip_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/compiler/zip_writer.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor_database.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor_database_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor_database_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/descriptor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/descriptor_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/dynamic_message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/dynamic_message_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/extension_set_heavy.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/extension_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/extension_set_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/generated_message_reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/generated_message_reflection.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/generated_message_reflection_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/generated_message_reflection_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/generated_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/generated_message_util.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/coded_stream_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/coded_stream_inl.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/coded_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/coded_stream_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/gzip_stream_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/gzip_stream_unittest.sh -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/package_info.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/printer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/printer_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/tokenizer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/tokenizer_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/zero_copy_stream.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/zero_copy_stream_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/zero_copy_stream_impl.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/zero_copy_stream_impl_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/zero_copy_stream_impl_lite.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/io/zero_copy_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/io/zero_copy_stream_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/lite_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/message.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/message.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/message_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/package_info.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/reflection_ops_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/reflection_ops_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/repeated_field_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/repeated_field_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/service.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/service.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/common_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/common_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/map-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/map-util.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/once_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/once_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/stl_util-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/stl_util-inl.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/structurally_valid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/structurally_valid.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/structurally_valid_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/structurally_valid_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/strutil_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/strutil_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/substitute.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/test_util.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/test_util_lite.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/test_util_lite.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/testdata/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/testdata/golden_message -------------------------------------------------------------------------------- /include/third_party/google/protobuf/testdata/golden_packed_fields_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/testdata/golden_packed_fields_message -------------------------------------------------------------------------------- /include/third_party/google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/testing/googletest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/testing/googletest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/testing/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/testing/googletest.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/testing/zcgunzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/testing/zcgunzip.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/testing/zcgzip.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/text_format.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/text_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/text_format_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_custom_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_custom_options.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_embed_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_embed_optimize_for.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_enormous_descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_enormous_descriptor.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_import_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_import_lite.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_lite_imports_nonlite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_lite_imports_nonlite.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_no_generic_services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_no_generic_services.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unittest_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unittest_optimize_for.proto -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unknown_field_set.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/unknown_field_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/unknown_field_set_unittest.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/wire_format_lite.cc -------------------------------------------------------------------------------- /include/third_party/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /include/third_party/google/protobuf/wire_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/third_party/google/protobuf/wire_format_unittest.cc -------------------------------------------------------------------------------- /include/unicode/converters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/unicode/converters.hpp -------------------------------------------------------------------------------- /include/unicode/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/unicode/string.hpp -------------------------------------------------------------------------------- /include/utility/circular_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/utility/circular_buffer.hpp -------------------------------------------------------------------------------- /include/utility/move_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/utility/move_wrapper.hpp -------------------------------------------------------------------------------- /include/utility/object_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/utility/object_pool.hpp -------------------------------------------------------------------------------- /include/utility/performance_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/utility/performance_counter.hpp -------------------------------------------------------------------------------- /include/utility/select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/utility/select.hpp -------------------------------------------------------------------------------- /include/win32/network/network_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/include/win32/network/network_helper.hpp -------------------------------------------------------------------------------- /lib/async_io.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/lib/async_io.lib -------------------------------------------------------------------------------- /lib/async_io_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/lib/async_io_d.lib -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/asio_pingpong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/asio_pingpong.cpp -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/asio_pingpong.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/asio_pingpong.vcxproj -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/asio_pingpong.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/asio_pingpong.vcxproj.filters -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/client.hpp -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/handler_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/handler_allocator.hpp -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/libboost_date_time-vc110-mt-s-1_54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/libboost_date_time-vc110-mt-s-1_54.lib -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/libboost_date_time-vc110-mt-sgd-1_54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/libboost_date_time-vc110-mt-sgd-1_54.lib -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/libboost_regex-vc110-mt-s-1_54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/libboost_regex-vc110-mt-s-1_54.lib -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/libboost_regex-vc110-mt-sgd-1_54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/libboost_regex-vc110-mt-sgd-1_54.lib -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/libboost_system-vc110-mt-s-1_54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/libboost_system-vc110-mt-s-1_54.lib -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/libboost_system-vc110-mt-sgd-1_54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/libboost_system-vc110-mt-sgd-1_54.lib -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/libboost_thread-vc110-mt-1_54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/libboost_thread-vc110-mt-1_54.lib -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/server.hpp -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/stdafx.cpp -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/stdafx.h -------------------------------------------------------------------------------- /performance/pingpong/asio_pingpong/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/asio_pingpong/targetver.h -------------------------------------------------------------------------------- /performance/pingpong/pingpong.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong.sln -------------------------------------------------------------------------------- /performance/pingpong/pingpong/handler_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/handler_allocator.hpp -------------------------------------------------------------------------------- /performance/pingpong/pingpong/pingping_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/pingping_cli.cpp -------------------------------------------------------------------------------- /performance/pingpong/pingpong/pingping_svr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/pingping_svr.cpp -------------------------------------------------------------------------------- /performance/pingpong/pingpong/pingpong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/pingpong.cpp -------------------------------------------------------------------------------- /performance/pingpong/pingpong/pingpong.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/pingpong.vcxproj -------------------------------------------------------------------------------- /performance/pingpong/pingpong/pingpong.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/pingpong.vcxproj.filters -------------------------------------------------------------------------------- /performance/pingpong/pingpong/pingpong_cli.hpp: -------------------------------------------------------------------------------- 1 | 2 | void client_start(char **argv); -------------------------------------------------------------------------------- /performance/pingpong/pingpong/pingpong_svr.hpp: -------------------------------------------------------------------------------- 1 | 2 | void svr_start(char **argv); -------------------------------------------------------------------------------- /performance/pingpong/pingpong/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/stdafx.cpp -------------------------------------------------------------------------------- /performance/pingpong/pingpong/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/stdafx.h -------------------------------------------------------------------------------- /performance/pingpong/pingpong/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/performance/pingpong/pingpong/targetver.h -------------------------------------------------------------------------------- /src/async_io/async_io.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/src/async_io/async_io.sln -------------------------------------------------------------------------------- /src/async_io/async_io/async_io.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/src/async_io/async_io/async_io.vcxproj -------------------------------------------------------------------------------- /src/async_io/async_io/async_io.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/src/async_io/async_io/async_io.vcxproj.filters -------------------------------------------------------------------------------- /test/handler_allocator_test/handler_allocator_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/handler_allocator_test/handler_allocator_test.sln -------------------------------------------------------------------------------- /test/handler_allocator_test/handler_allocator_test/handler_allocator_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/handler_allocator_test/handler_allocator_test/handler_allocator_test.cpp -------------------------------------------------------------------------------- /test/handler_allocator_test/handler_allocator_test/handler_allocator_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/handler_allocator_test/handler_allocator_test/handler_allocator_test.vcxproj -------------------------------------------------------------------------------- /test/handler_allocator_test/handler_allocator_test/handler_allocator_test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/handler_allocator_test/handler_allocator_test/handler_allocator_test.vcxproj.filters -------------------------------------------------------------------------------- /test/handler_allocator_test/handler_allocator_test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/handler_allocator_test/handler_allocator_test/stdafx.cpp -------------------------------------------------------------------------------- /test/handler_allocator_test/handler_allocator_test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/handler_allocator_test/handler_allocator_test/stdafx.h -------------------------------------------------------------------------------- /test/handler_allocator_test/handler_allocator_test/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/handler_allocator_test/handler_allocator_test/targetver.h -------------------------------------------------------------------------------- /test/read_write_test/move_buffer_test/move_buffer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/move_buffer_test/move_buffer_test.cpp -------------------------------------------------------------------------------- /test/read_write_test/move_buffer_test/move_buffer_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/move_buffer_test/move_buffer_test.vcxproj -------------------------------------------------------------------------------- /test/read_write_test/move_buffer_test/move_buffer_test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/move_buffer_test/move_buffer_test.vcxproj.filters -------------------------------------------------------------------------------- /test/read_write_test/move_buffer_test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/move_buffer_test/stdafx.cpp -------------------------------------------------------------------------------- /test/read_write_test/move_buffer_test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/move_buffer_test/stdafx.h -------------------------------------------------------------------------------- /test/read_write_test/move_buffer_test/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/move_buffer_test/targetver.h -------------------------------------------------------------------------------- /test/read_write_test/read_write_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test.sln -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/My Amplifier XE Results - read_write_test.amplxeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/My Amplifier XE Results - read_write_test.amplxeproj -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/.norun: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/analysis_type.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/analysis_type.cfg -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/collection.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/collection.cfg -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/context_values.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/context_values.cfg -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/runss.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/runss.options -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/state.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/state.cfg -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/viewpoint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/viewpoint.cfg -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/viewpoint_processed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/config/viewpoint_processed.cfg -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/5812-6740.0-2152.0.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/5812-6740.0-2152.0.th -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/5812-6740.0-5920.0.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/5812-6740.0-5920.0.th -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/5812-6740.0-6416.0.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/5812-6740.0-6416.0.th -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/5812-6740.0.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/5812-6740.0.trace -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/6740-3552.0-4416.0.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/6740-3552.0-4416.0.th -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/6740-3552.0.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/6740-3552.0.trace -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/systemcollector-YU_YU.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/data.0/systemcollector-YU_YU.sc -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/r000hs.amplxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/r000hs.amplxe -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/sqlite-db/dicer.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/My Amplifier XE Results - read_write_test/r000hs/sqlite-db/dicer.db -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/multi_msg_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/multi_msg_decoder.hpp -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/read_write_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/read_write_test.cpp -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/read_write_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/read_write_test.vcxproj -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/read_write_test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/read_write_test.vcxproj.filters -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/stdafx.cpp -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/stdafx.h -------------------------------------------------------------------------------- /test/read_write_test/read_write_test/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/read_write_test/read_write_test/targetver.h -------------------------------------------------------------------------------- /test/socket_pool_test/socket_pool_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/socket_pool_test/socket_pool_test.sln -------------------------------------------------------------------------------- /test/timing_wheel_test/timing_wheel_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/timing_wheel_test/timing_wheel_test.sln -------------------------------------------------------------------------------- /test/timing_wheel_test/timing_wheel_test/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/timing_wheel_test/timing_wheel_test/ReadMe.txt -------------------------------------------------------------------------------- /test/timing_wheel_test/timing_wheel_test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/timing_wheel_test/timing_wheel_test/stdafx.cpp -------------------------------------------------------------------------------- /test/timing_wheel_test/timing_wheel_test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/timing_wheel_test/timing_wheel_test/stdafx.h -------------------------------------------------------------------------------- /test/timing_wheel_test/timing_wheel_test/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/timing_wheel_test/timing_wheel_test/targetver.h -------------------------------------------------------------------------------- /test/timing_wheel_test/timing_wheel_test/timing_wheel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/timing_wheel_test/timing_wheel_test/timing_wheel_test.cpp -------------------------------------------------------------------------------- /test/timing_wheel_test/timing_wheel_test/timing_wheel_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/timing_wheel_test/timing_wheel_test/timing_wheel_test.vcxproj -------------------------------------------------------------------------------- /test/timing_wheel_test/timing_wheel_test/timing_wheel_test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/timing_wheel_test/timing_wheel_test/timing_wheel_test.vcxproj.filters -------------------------------------------------------------------------------- /test/vdisk_svr/vdisk_svr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/vdisk_svr/vdisk_svr.sln -------------------------------------------------------------------------------- /test/vdisk_svr/vdisk_svr/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/vdisk_svr/vdisk_svr/ReadMe.txt -------------------------------------------------------------------------------- /test/vdisk_svr/vdisk_svr/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/vdisk_svr/vdisk_svr/stdafx.cpp -------------------------------------------------------------------------------- /test/vdisk_svr/vdisk_svr/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/vdisk_svr/vdisk_svr/stdafx.h -------------------------------------------------------------------------------- /test/vdisk_svr/vdisk_svr/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/vdisk_svr/vdisk_svr/targetver.h -------------------------------------------------------------------------------- /test/vdisk_svr/vdisk_svr/vdisk_svr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/vdisk_svr/vdisk_svr/vdisk_svr.cpp -------------------------------------------------------------------------------- /test/vdisk_svr/vdisk_svr/vdisk_svr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyu2202863/iocpframework/HEAD/test/vdisk_svr/vdisk_svr/vdisk_svr.vcxproj --------------------------------------------------------------------------------