├── .coveralls.yml ├── .gitignore ├── .jsdoc.conf ├── .jshintrc ├── .travis.yml ├── .zuul.yml ├── CONTRIBUTING.md ├── CryptoList ├── CONTRIBUTING.md ├── README-zh.md ├── README.md ├── cryptolist_logo.png ├── donate_cryptolist.png ├── social_icons │ ├── facebook_like.svg │ ├── facebook_send.svg │ ├── forum.svg │ ├── newsletter.svg │ ├── telegram_join.svg │ ├── twitter_follow.svg │ └── twitter_share.svg └── sponsors │ ├── coinpride.svg │ └── findbitcoinatm_sponsor_logo.png ├── LICENSE ├── README.md ├── Tars ├── .gitignore ├── Install.en.md ├── Install.md ├── Install_faq.en.md ├── Install_faq.md ├── Introduction.en.md ├── Introduction.md ├── LICENSE.TXT ├── README.en.md ├── README.md ├── build │ ├── README.md │ ├── clear.sh │ ├── conf │ │ ├── my.cnf │ │ └── resin.xml │ └── install.sh ├── cpp │ ├── README.md │ ├── build │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── build.sh │ ├── examples │ │ ├── CoroutineDemo │ │ │ ├── AServer │ │ │ │ ├── AServant.tars │ │ │ │ ├── AServantImp.cpp │ │ │ │ ├── AServantImp.h │ │ │ │ ├── AServer.cpp │ │ │ │ ├── AServer.h │ │ │ │ └── makefile │ │ │ ├── BServer │ │ │ │ ├── AServant.tars │ │ │ │ ├── BServant.tars │ │ │ │ ├── BServantImp.cpp │ │ │ │ ├── BServantImp.h │ │ │ │ ├── BServer.cpp │ │ │ │ ├── BServer.h │ │ │ │ └── makefile │ │ │ ├── README.md │ │ │ ├── client │ │ │ │ ├── BServant.tars │ │ │ │ ├── main.cpp │ │ │ │ └── makefile │ │ │ ├── testCoro │ │ │ │ ├── BServant.tars │ │ │ │ ├── main.cpp │ │ │ │ └── makefile │ │ │ └── testParallelCoro │ │ │ │ ├── BServant.tars │ │ │ │ ├── main.cpp │ │ │ │ └── makefile │ │ ├── HttpDemo │ │ │ ├── HttpClient │ │ │ │ ├── main.cpp │ │ │ │ └── makefile │ │ │ └── HttpServer │ │ │ │ ├── HttpImp.cpp │ │ │ │ ├── HttpImp.h │ │ │ │ ├── HttpServer.cpp │ │ │ │ ├── HttpServer.h │ │ │ │ └── makefile │ │ ├── PromiseDemo │ │ │ ├── AServer │ │ │ │ ├── AServant.tars │ │ │ │ ├── AServantImp.cpp │ │ │ │ ├── AServantImp.h │ │ │ │ ├── AServer.cpp │ │ │ │ ├── AServer.h │ │ │ │ ├── BServant.tars │ │ │ │ ├── CServant.tars │ │ │ │ └── makefile │ │ │ ├── BServer │ │ │ │ ├── BServant.tars │ │ │ │ ├── BServantImp.cpp │ │ │ │ ├── BServantImp.h │ │ │ │ ├── BServer.cpp │ │ │ │ ├── BServer.h │ │ │ │ └── makefile │ │ │ ├── CServer │ │ │ │ ├── CServant.tars │ │ │ │ ├── CServantImp.cpp │ │ │ │ ├── CServantImp.h │ │ │ │ ├── CServer.cpp │ │ │ │ ├── CServer.h │ │ │ │ └── makefile │ │ │ ├── Client │ │ │ │ ├── main.cpp │ │ │ │ └── makefile │ │ │ └── README.md │ │ ├── PushDemo │ │ │ ├── PushClient │ │ │ │ ├── Makefile │ │ │ │ ├── TestRecvThread.cpp │ │ │ │ ├── TestRecvThread.h │ │ │ │ └── main.cpp │ │ │ ├── PushServer │ │ │ │ ├── TestPushServantImp.cpp │ │ │ │ ├── TestPushServantImp.h │ │ │ │ ├── TestPushServer.cpp │ │ │ │ ├── TestPushServer.h │ │ │ │ ├── TestPushThread.cpp │ │ │ │ ├── TestPushThread.h │ │ │ │ └── makefile │ │ │ └── README.md │ │ ├── QuickStartDemo │ │ │ ├── HelloServer │ │ │ │ ├── AsyncClient │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── makefile │ │ │ │ ├── Client │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── makefile │ │ │ │ ├── Hello.tars │ │ │ │ ├── HelloImp.cpp │ │ │ │ ├── HelloImp.h │ │ │ │ ├── HelloServer.cpp │ │ │ │ ├── HelloServer.h │ │ │ │ └── makefile │ │ │ ├── ProxyServer │ │ │ │ ├── Client │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── makefile │ │ │ │ ├── Proxy.tars │ │ │ │ ├── ProxyImp.cpp │ │ │ │ ├── ProxyImp.h │ │ │ │ ├── ProxyServer.cpp │ │ │ │ ├── ProxyServer.h │ │ │ │ └── makefile │ │ │ └── README.md │ │ ├── README.md │ │ └── StressDemo │ │ │ ├── README.md │ │ │ ├── TarsStressClient │ │ │ ├── main.cpp │ │ │ ├── makefile │ │ │ └── teststress.sh │ │ │ └── TarsStressServer │ │ │ ├── Stress.tars │ │ │ ├── StressImp.cpp │ │ │ ├── StressImp.h │ │ │ ├── TarsStressServer.cpp │ │ │ ├── TarsStressServer.h │ │ │ └── makefile │ ├── framework │ │ ├── AdminRegistryServer │ │ │ ├── AdminReapThread.cpp │ │ │ ├── AdminReapThread.h │ │ │ ├── AdminRegistryImp.cpp │ │ │ ├── AdminRegistryImp.h │ │ │ ├── AdminRegistryServer.cpp │ │ │ ├── AdminRegistryServer.h │ │ │ ├── CMakeLists.txt │ │ │ ├── DbProxy.cpp │ │ │ ├── DbProxy.h │ │ │ ├── ExecuteTask.cpp │ │ │ ├── ExecuteTask.h │ │ │ └── util.h │ │ ├── CMakeLists.txt │ │ ├── ConfigServer │ │ │ ├── CMakeLists.txt │ │ │ ├── ConfigImp.cpp │ │ │ ├── ConfigImp.h │ │ │ ├── ConfigServer.cpp │ │ │ ├── ConfigServer.h │ │ │ └── main.cpp │ │ ├── LogServer │ │ │ ├── CMakeLists.txt │ │ │ ├── LogImp.cpp │ │ │ ├── LogImp.h │ │ │ ├── LogServer.cpp │ │ │ ├── LogServer.h │ │ │ └── main.cpp │ │ ├── NodeServer │ │ │ ├── Activator.cpp │ │ │ ├── Activator.h │ │ │ ├── BatchPatchThread.cpp │ │ │ ├── BatchPatchThread.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommandAddFile.h │ │ │ ├── CommandDestroy.h │ │ │ ├── CommandLoad.h │ │ │ ├── CommandNotify.h │ │ │ ├── CommandPatch.h │ │ │ ├── CommandStart.h │ │ │ ├── CommandStop.h │ │ │ ├── KeepAliveThread.cpp │ │ │ ├── KeepAliveThread.h │ │ │ ├── NodeImp.cpp │ │ │ ├── NodeImp.h │ │ │ ├── NodeRollLogger.cpp │ │ │ ├── NodeRollLogger.h │ │ │ ├── NodeServer.cpp │ │ │ ├── NodeServer.h │ │ │ ├── PlatformInfo.cpp │ │ │ ├── PlatformInfo.h │ │ │ ├── PropertyReporter.h │ │ │ ├── RegistryProxy.h │ │ │ ├── RemoveLogThread.cpp │ │ │ ├── RemoveLogThread.h │ │ │ ├── ReportMemThread.cpp │ │ │ ├── ReportMemThread.h │ │ │ ├── ServerCommand.h │ │ │ ├── ServerFactory.cpp │ │ │ ├── ServerFactory.h │ │ │ ├── ServerImp.cpp │ │ │ ├── ServerImp.h │ │ │ ├── ServerLimitResource.cpp │ │ │ ├── ServerLimitResource.h │ │ │ ├── ServerObject.cpp │ │ │ ├── ServerObject.h │ │ │ ├── SingleFileDownloader.cpp │ │ │ ├── SingleFileDownloader.h │ │ │ ├── main.cpp │ │ │ └── util.h │ │ ├── NotifyServer │ │ │ ├── CMakeLists.txt │ │ │ ├── LoadDbThread.cpp │ │ │ ├── LoadDbThread.h │ │ │ ├── NotifyImp.cpp │ │ │ ├── NotifyImp.h │ │ │ ├── NotifyServer.cpp │ │ │ ├── NotifyServer.h │ │ │ └── main.cpp │ │ ├── PatchServer │ │ │ ├── CMakeLists.txt │ │ │ ├── PatchCache.cpp │ │ │ ├── PatchCache.h │ │ │ ├── PatchImp.cpp │ │ │ ├── PatchImp.h │ │ │ ├── PatchServer.cpp │ │ │ ├── PatchServer.h │ │ │ └── main.cpp │ │ ├── PropertyServer │ │ │ ├── CMakeLists.txt │ │ │ ├── PropertyDbManager.cpp │ │ │ ├── PropertyDbManager.h │ │ │ ├── PropertyHashMap.h │ │ │ ├── PropertyImp.cpp │ │ │ ├── PropertyImp.h │ │ │ ├── PropertyReapThread.cpp │ │ │ ├── PropertyReapThread.h │ │ │ ├── PropertyServer.cpp │ │ │ ├── PropertyServer.h │ │ │ └── main.cpp │ │ ├── QueryPropertyServer │ │ │ ├── CMakeLists.txt │ │ │ ├── DbProxy.cpp │ │ │ ├── DbProxy.h │ │ │ ├── DbThread.cpp │ │ │ ├── DbThread.h │ │ │ ├── QueryDbThread.cpp │ │ │ ├── QueryDbThread.h │ │ │ ├── QueryImp.cpp │ │ │ ├── QueryImp.h │ │ │ ├── QueryItem.h │ │ │ ├── QueryServer.cpp │ │ │ ├── QueryServer.h │ │ │ ├── RequestDecoder.cpp │ │ │ └── RequestDecoder.h │ │ ├── QueryStatServer │ │ │ ├── CMakeLists.txt │ │ │ ├── DbProxy.cpp │ │ │ ├── DbProxy.h │ │ │ ├── DbThread.cpp │ │ │ ├── DbThread.h │ │ │ ├── QueryDbThread.cpp │ │ │ ├── QueryDbThread.h │ │ │ ├── QueryImp.cpp │ │ │ ├── QueryImp.h │ │ │ ├── QueryItem.h │ │ │ ├── QueryServer.cpp │ │ │ ├── QueryServer.h │ │ │ ├── RequestDecoder.cpp │ │ │ └── RequestDecoder.h │ │ ├── README.md │ │ ├── RegistryServer │ │ │ ├── CMakeLists.txt │ │ │ ├── CheckNodeThread.cpp │ │ │ ├── CheckNodeThread.h │ │ │ ├── CheckSettingState.cpp │ │ │ ├── CheckSettingState.h │ │ │ ├── DbHandle.cpp │ │ │ ├── DbHandle.h │ │ │ ├── QueryImp.cpp │ │ │ ├── QueryImp.h │ │ │ ├── ReapThread.cpp │ │ │ ├── ReapThread.h │ │ │ ├── RegistryImp.cpp │ │ │ ├── RegistryImp.h │ │ │ ├── RegistryProcThread.cpp │ │ │ ├── RegistryProcThread.h │ │ │ ├── RegistryServer.cpp │ │ │ ├── RegistryServer.h │ │ │ └── main.cpp │ │ ├── StatServer │ │ │ ├── CMakeLists.txt │ │ │ ├── ReapSSDThread.cpp │ │ │ ├── ReapSSDThread.h │ │ │ ├── StatDbManager.cpp │ │ │ ├── StatDbManager.h │ │ │ ├── StatHashMap.h │ │ │ ├── StatImp.cpp │ │ │ ├── StatImp.h │ │ │ ├── StatServer.cpp │ │ │ ├── StatServer.h │ │ │ └── main.cpp │ │ ├── conf │ │ │ ├── tars.default │ │ │ ├── tars.tarsconfig │ │ │ ├── tars.tarsjava.default │ │ │ ├── tars.tarslog │ │ │ ├── tars.tarsnotify │ │ │ ├── tars.tarspatch │ │ │ ├── tars.tarsproperty │ │ │ └── tars.tarsstat │ │ ├── deploy │ │ │ ├── tarsAdminRegistry │ │ │ │ ├── conf │ │ │ │ │ └── adminregistry.conf │ │ │ │ └── util │ │ │ │ │ ├── execute.sh │ │ │ │ │ ├── start.sh │ │ │ │ │ └── stop.sh │ │ │ ├── tars_install.sh │ │ │ ├── tarsconfig │ │ │ │ ├── conf │ │ │ │ │ └── tarsconfig.conf │ │ │ │ └── util │ │ │ │ │ ├── execute.sh │ │ │ │ │ ├── start.sh │ │ │ │ │ └── stop.sh │ │ │ ├── tarsnode │ │ │ │ ├── conf │ │ │ │ │ └── tarsnode.conf │ │ │ │ └── util │ │ │ │ │ ├── execute.sh │ │ │ │ │ ├── monitor.sh │ │ │ │ │ ├── start.sh │ │ │ │ │ └── stop.sh │ │ │ ├── tarsnode_install.sh │ │ │ ├── tarspatch │ │ │ │ ├── conf │ │ │ │ │ ├── rsync.conf │ │ │ │ │ └── tarspatch.conf │ │ │ │ └── util │ │ │ │ │ ├── execute.sh │ │ │ │ │ ├── init.sh │ │ │ │ │ ├── start.sh │ │ │ │ │ └── stop.sh │ │ │ └── tarsregistry │ │ │ │ ├── conf │ │ │ │ └── tarsregistry.conf │ │ │ │ └── util │ │ │ │ ├── env.sh │ │ │ │ ├── execute.sh │ │ │ │ ├── start.sh │ │ │ │ └── stop.sh │ │ ├── patchclient │ │ │ ├── CMakeLists.txt │ │ │ ├── patchclient.cpp │ │ │ ├── tars_patch.cpp │ │ │ └── tars_patch.h │ │ ├── protocol │ │ │ ├── AdminReg.tars │ │ │ ├── CMakeLists.txt │ │ │ ├── Node.tars │ │ │ ├── NodeDescriptor.tars │ │ │ ├── Patch.tars │ │ │ ├── Registry.tars │ │ │ └── RegistryDescriptor.tars │ │ └── sql │ │ │ ├── db_tars.sql │ │ │ ├── dump-sql.sh │ │ │ └── exec-sql.sh │ ├── servant │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── jmem │ │ │ ├── jmem_hashmap.h │ │ │ ├── jmem_hashmap_compact.h │ │ │ ├── jmem_multi_hashmap.h │ │ │ ├── jmem_policy.h │ │ │ ├── jmem_queue.h │ │ │ └── jmem_rbtree.h │ │ ├── libservant │ │ │ ├── AdapterProxy.cpp │ │ │ ├── AdminServant.cpp │ │ │ ├── AppCache.cpp │ │ │ ├── AppProtocol.cpp │ │ │ ├── Application.cpp │ │ │ ├── AsyncProcThread.cpp │ │ │ ├── AuthLogic.cpp │ │ │ ├── BaseNotify.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Communicator.cpp │ │ │ ├── CommunicatorEpoll.cpp │ │ │ ├── CoroutineScheduler.cpp │ │ │ ├── EndpointInfo.cpp │ │ │ ├── EndpointManager.cpp │ │ │ ├── Global.cpp │ │ │ ├── NetworkUtil.cpp │ │ │ ├── NotifyObserver.cpp │ │ │ ├── ObjectProxy.cpp │ │ │ ├── ObjectProxyFactory.cpp │ │ │ ├── PropertyReport.cpp │ │ │ ├── Servant.cpp │ │ │ ├── ServantHandle.cpp │ │ │ ├── ServantHelper.cpp │ │ │ ├── ServantProxy.cpp │ │ │ ├── ServantProxyFactory.cpp │ │ │ ├── StatReport.cpp │ │ │ ├── TarsConfig.cpp │ │ │ ├── TarsCurrent.cpp │ │ │ ├── TarsLogger.cpp │ │ │ ├── TarsNodeF.cpp │ │ │ ├── TarsNotify.cpp │ │ │ └── Transceiver.cpp │ │ ├── makefile │ │ │ └── makefile.tars │ │ ├── promise │ │ │ ├── exception_ptr.h │ │ │ ├── promise.h │ │ │ ├── promise_exception.h │ │ │ ├── tuple.h │ │ │ └── when_all.h │ │ ├── protocol │ │ │ ├── AdminF.tars │ │ │ ├── Auth.tars │ │ │ ├── BaseF.tars │ │ │ ├── CMakeLists.txt │ │ │ ├── ConfigF.tars │ │ │ ├── EndpointF.tars │ │ │ ├── LogF.tars │ │ │ ├── NodeF.tars │ │ │ ├── NotifyF.tars │ │ │ ├── PropertyF.tars │ │ │ ├── QueryF.tars │ │ │ └── StatF.tars │ │ ├── script │ │ │ ├── create_http_server.sh │ │ │ ├── create_tars_server.sh │ │ │ ├── demo │ │ │ │ ├── DemoServant.tars │ │ │ │ ├── DemoServantImp.cpp │ │ │ │ ├── DemoServantImp.h │ │ │ │ ├── DemoServer.cpp │ │ │ │ ├── DemoServer.h │ │ │ │ └── makefile │ │ │ └── http_demo │ │ │ │ ├── DemoServantImp.cpp │ │ │ │ ├── DemoServantImp.h │ │ │ │ ├── DemoServer.cpp │ │ │ │ ├── DemoServer.h │ │ │ │ └── makefile │ │ ├── servant │ │ │ ├── AdapterProxy.h │ │ │ ├── AdminServant.h │ │ │ ├── AppCache.h │ │ │ ├── AppProtocol.h │ │ │ ├── Application.h │ │ │ ├── AsyncProcThread.h │ │ │ ├── AuthLogic.h │ │ │ ├── BaseNotify.h │ │ │ ├── Communicator.h │ │ │ ├── CommunicatorEpoll.h │ │ │ ├── CommunicatorFactory.h │ │ │ ├── CoroutineScheduler.h │ │ │ ├── EndpointInfo.h │ │ │ ├── EndpointManager.h │ │ │ ├── Global.h │ │ │ ├── Message.h │ │ │ ├── NetworkUtil.h │ │ │ ├── NotifyObserver.h │ │ │ ├── ObjectProxy.h │ │ │ ├── ObjectProxyFactory.h │ │ │ ├── PropertyReport.h │ │ │ ├── Servant.h │ │ │ ├── ServantHandle.h │ │ │ ├── ServantHelper.h │ │ │ ├── ServantProxy.h │ │ │ ├── ServantProxyFactory.h │ │ │ ├── StatReport.h │ │ │ ├── TarsConfig.h │ │ │ ├── TarsCurrent.h │ │ │ ├── TarsLogger.h │ │ │ ├── TarsNodeF.h │ │ │ ├── TarsNotify.h │ │ │ └── Transceiver.h │ │ └── tup │ │ │ ├── CMakeLists.txt │ │ │ ├── RequestF.tars │ │ │ ├── Tars.h │ │ │ ├── TarsDisplayer.h │ │ │ ├── TarsType.h │ │ │ └── tup.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── testFramework │ │ │ ├── CMakeLists.txt │ │ │ └── testAdminRegistry │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ ├── testServant │ │ │ ├── CMakeLists.txt │ │ │ ├── testTarsAnalyzer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── tarsAnalyzer.cpp │ │ │ │ ├── tarsAnalyzer.h │ │ │ │ └── tupRequestF.h │ │ │ └── testTup │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── UserInfo.h │ │ │ │ ├── UserInfo.tars │ │ │ │ └── main.cpp │ │ └── testUtil │ │ │ ├── CMakeLists.txt │ │ │ ├── example_tc_autoptr.cpp │ │ │ ├── example_tc_bitmap.cpp │ │ │ ├── example_tc_cgi.cpp │ │ │ ├── example_tc_common.cpp │ │ │ ├── example_tc_config.cpp │ │ │ ├── example_tc_encoder.cpp │ │ │ ├── example_tc_file.cpp │ │ │ ├── example_tc_file_lock.cpp │ │ │ ├── example_tc_gzip.cpp │ │ │ ├── example_tc_hashmap.cpp │ │ │ ├── example_tc_http.cpp │ │ │ ├── example_tc_http_async.cpp │ │ │ ├── example_tc_lock.cpp │ │ │ ├── example_tc_log.cpp │ │ │ ├── example_tc_mem_chunk.cpp │ │ │ ├── example_tc_mem_queue.cpp │ │ │ ├── example_tc_mmap.cpp │ │ │ ├── example_tc_multi_hashmap.cpp │ │ │ ├── example_tc_mysql.cpp │ │ │ ├── example_tc_option.cpp │ │ │ ├── example_tc_pack.cpp │ │ │ ├── example_tc_singleton.cpp │ │ │ ├── example_tc_socket.cpp │ │ │ ├── example_tc_thread.cpp │ │ │ ├── example_tc_thread_lock.cpp │ │ │ ├── example_tc_thread_pool.cpp │ │ │ ├── example_tc_thread_queue.cpp │ │ │ ├── log.config.conf │ │ │ ├── template.config.conf │ │ │ └── test.html │ ├── thirdparty │ │ └── thirdparty.sh │ ├── tools │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── tars2android │ │ │ ├── CMakeLists.txt │ │ │ ├── interface_analysis.cpp │ │ │ ├── interface_analysis.h │ │ │ ├── main.cpp │ │ │ ├── tars2android.cpp │ │ │ ├── tars2android.h │ │ │ ├── tars_filter.cpp │ │ │ └── tars_filter.h │ │ ├── tars2c │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── tars2c.cpp │ │ │ └── tars2c.h │ │ ├── tars2cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── tars2cpp.cpp │ │ │ └── tars2cpp.h │ │ ├── tars2cs │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── tars2cs.cpp │ │ │ └── tars2cs.h │ │ ├── tars2node │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── tars2node.cpp │ │ │ ├── tars2node.h │ │ │ ├── tars2nodeprx.cpp │ │ │ ├── tars2nodescan.cpp │ │ │ ├── tars2server.cpp │ │ │ └── tars2serverimp.cpp │ │ ├── tars2oc │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── tars2oc.cpp │ │ │ └── tars2oc.h │ │ ├── tars2php │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── tars2php.cpp │ │ │ └── tars2php.h │ │ ├── tars2python │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── tars2python.cpp │ │ │ └── tars2python.h │ │ ├── tarsgrammar │ │ │ ├── CMakeLists.txt │ │ │ ├── tars.l │ │ │ └── tars.y │ │ └── tarsparse │ │ │ ├── CMakeLists.txt │ │ │ ├── element.cpp │ │ │ ├── element.h │ │ │ ├── parse.cpp │ │ │ └── parse.h │ └── util │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ ├── CMakeLists.txt │ │ └── util │ │ │ ├── detail │ │ │ ├── tc_assert.h │ │ │ ├── tc_checked_delete.h │ │ │ └── tc_template_util.h │ │ │ ├── tc_atomic.h │ │ │ ├── tc_autoptr.h │ │ │ ├── tc_base64.h │ │ │ ├── tc_bitmap.h │ │ │ ├── tc_buffer.h │ │ │ ├── tc_buffer_pool.h │ │ │ ├── tc_cgi.h │ │ │ ├── tc_clientsocket.h │ │ │ ├── tc_common.h │ │ │ ├── tc_config.h │ │ │ ├── tc_consistent_hash.h │ │ │ ├── tc_consistent_hash_new.h │ │ │ ├── tc_dyn_object.h │ │ │ ├── tc_encoder.h │ │ │ ├── tc_epoll_server.h │ │ │ ├── tc_epoller.h │ │ │ ├── tc_eventfd.h │ │ │ ├── tc_ex.h │ │ │ ├── tc_fcontext.h │ │ │ ├── tc_fcontext_i386.h │ │ │ ├── tc_fcontext_x86_64.h │ │ │ ├── tc_fifo.h │ │ │ ├── tc_file.h │ │ │ ├── tc_file_mutex.h │ │ │ ├── tc_gzip.h │ │ │ ├── tc_hash_fun.h │ │ │ ├── tc_hashmap.h │ │ │ ├── tc_hashmap_compact.h │ │ │ ├── tc_http.h │ │ │ ├── tc_http_async.h │ │ │ ├── tc_lock.h │ │ │ ├── tc_logger.h │ │ │ ├── tc_loop_queue.h │ │ │ ├── tc_malloc_chunk.h │ │ │ ├── tc_md5.h │ │ │ ├── tc_mem_chunk.h │ │ │ ├── tc_mem_queue.h │ │ │ ├── tc_mem_vector.h │ │ │ ├── tc_mmap.h │ │ │ ├── tc_monitor.h │ │ │ ├── tc_multi_hashmap.h │ │ │ ├── tc_mysql.h │ │ │ ├── tc_openssl.h │ │ │ ├── tc_option.h │ │ │ ├── tc_pack.h │ │ │ ├── tc_parsepara.h │ │ │ ├── tc_rbtree.h │ │ │ ├── tc_readers_writer_data.h │ │ │ ├── tc_sem_mutex.h │ │ │ ├── tc_sha.h │ │ │ ├── tc_shm.h │ │ │ ├── tc_singleton.h │ │ │ ├── tc_socket.h │ │ │ ├── tc_squeue.h │ │ │ ├── tc_sslmgr.h │ │ │ ├── tc_tea.h │ │ │ ├── tc_thread.h │ │ │ ├── tc_thread_cond.h │ │ │ ├── tc_thread_mutex.h │ │ │ ├── tc_thread_pool.h │ │ │ ├── tc_thread_queue.h │ │ │ ├── tc_thread_rwlock.h │ │ │ ├── tc_timeout_queue.h │ │ │ ├── tc_timeout_queue_map.h │ │ │ ├── tc_timeout_queue_new.h │ │ │ ├── tc_timeout_queue_noid.h │ │ │ └── tc_timeprovider.h │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── tc_base64.cpp │ │ ├── tc_bitmap.cpp │ │ ├── tc_buffer.cpp │ │ ├── tc_buffer_pool.cpp │ │ ├── tc_cgi.cpp │ │ ├── tc_clientsocket.cpp │ │ ├── tc_common.cpp │ │ ├── tc_config.cpp │ │ ├── tc_dyn_object.cpp │ │ ├── tc_encoder.cpp │ │ ├── tc_epoll_server.cpp │ │ ├── tc_epoller.cpp │ │ ├── tc_ex.cpp │ │ ├── tc_fifo.cpp │ │ ├── tc_file.cpp │ │ ├── tc_file_mutex.cpp │ │ ├── tc_gzip.cpp │ │ ├── tc_hashmap.cpp │ │ ├── tc_hashmap_compact.cpp │ │ ├── tc_http.cpp │ │ ├── tc_http_async.cpp │ │ ├── tc_jump_i386_sysv_elf_gas.s │ │ ├── tc_jump_x86_64_sysv_elf_gas.s │ │ ├── tc_logger.cpp │ │ ├── tc_make_i386_sysv_elf_gas.s │ │ ├── tc_make_x86_64_sysv_elf_gas.s │ │ ├── tc_malloc_chunk.cpp │ │ ├── tc_md5.cpp │ │ ├── tc_mem_chunk.cpp │ │ ├── tc_mem_queue.cpp │ │ ├── tc_mmap.cpp │ │ ├── tc_multi_hashmap.cpp │ │ ├── tc_mysql.cpp │ │ ├── tc_openssl.cpp │ │ ├── tc_option.cpp │ │ ├── tc_pack.cpp │ │ ├── tc_parsepara.cpp │ │ ├── tc_rbtree.cpp │ │ ├── tc_sem_mutex.cpp │ │ ├── tc_sha.cpp │ │ ├── tc_shm.cpp │ │ ├── tc_socket.cpp │ │ ├── tc_sslmgr.cpp │ │ ├── tc_tea.cpp │ │ ├── tc_thread.cpp │ │ ├── tc_thread_cond.cpp │ │ ├── tc_thread_mutex.cpp │ │ ├── tc_thread_pool.cpp │ │ ├── tc_thread_rwlock.cpp │ │ └── tc_timeprovider.cpp ├── docs │ ├── README.md │ ├── images │ │ ├── eureka-tars-java.png │ │ ├── tars-en.png │ │ ├── tars.png │ │ ├── tars_auth_client.png │ │ ├── tars_auth_endpoint.png │ │ ├── tars_auth_server.png │ │ ├── tars_config_app1.png │ │ ├── tars_config_app2.png │ │ ├── tars_config_appconfig.png │ │ ├── tars_config_appconfig_result.png │ │ ├── tars_config_jiegoutu.png │ │ ├── tars_config_references.png │ │ ├── tars_config_server1.png │ │ ├── tars_config_server2.png │ │ ├── tars_config_server3_ref1.png │ │ ├── tars_config_server3_ref2.png │ │ ├── tars_config_set1.png │ │ ├── tars_config_set2.png │ │ ├── tars_config_table1.png │ │ ├── tars_config_table2.png │ │ ├── tars_cpp_quickstart_bushu1.png │ │ ├── tars_cpp_quickstart_bushu2.png │ │ ├── tars_cpp_quickstart_patch.png │ │ ├── tars_cpp_quickstart_patchresult.png │ │ ├── tars_cpp_quickstart_upload.png │ │ ├── tars_cpp_third_protocol.png │ │ ├── tars_dye.png │ │ ├── tars_dye_en.png │ │ ├── tars_flow.PNG │ │ ├── tars_idc.png │ │ ├── tars_idc_en.png │ │ ├── tars_idc_pic.png │ │ ├── tars_java_evn1.png │ │ ├── tars_java_evn2.png │ │ ├── tars_java_evn3.png │ │ ├── tars_java_quickstart_bushu1.png │ │ ├── tars_java_quickstart_bushu2.png │ │ ├── tars_java_quickstart_patch.png │ │ ├── tars_java_quickstart_patchresult.png │ │ ├── tars_java_quickstart_upload.png │ │ ├── tars_jiaohu.png │ │ ├── tars_junheng.png │ │ ├── tars_junheng_en.png │ │ ├── tars_notify.png │ │ ├── tars_overload.png │ │ ├── tars_overload_en.png │ │ ├── tars_performance.png │ │ ├── tars_property.png │ │ ├── tars_property_en.png │ │ ├── tars_push_deploy.PNG │ │ ├── tars_result.PNG │ │ ├── tars_rongcuo.png │ │ ├── tars_rongcuo_en.png │ │ ├── tars_server_client.png │ │ ├── tars_set.png │ │ ├── tars_set_en.png │ │ ├── tars_set_pic1.png │ │ ├── tars_set_pic2.png │ │ ├── tars_set_pic3.png │ │ ├── tars_ssl_endpoint.png │ │ ├── tars_stat.png │ │ ├── tars_stat_en.png │ │ ├── tars_tarslog_bushu.png │ │ ├── tars_tarslog_bushu_en.png │ │ ├── tars_tarslog_patch.png │ │ ├── tars_tarslog_patch_en.png │ │ ├── tars_tarsnotify_bushu.png │ │ ├── tars_tarsnotify_bushu_en.png │ │ ├── tars_tarsnotify_patch.png │ │ ├── tars_tarsnotify_patch_en.png │ │ ├── tars_tarsproperty_bushu.png │ │ ├── tars_tarsproperty_bushu_en.png │ │ ├── tars_tarsproperty_patch.png │ │ ├── tars_tarsproperty_patch_en.png │ │ ├── tars_tarsproto.png │ │ ├── tars_tarsqueryproperty_bushu.png │ │ ├── tars_tarsqueryproperty_bushu_en.png │ │ ├── tars_tarsqueryproperty_patch.png │ │ ├── tars_tarsqueryproperty_patch_en.png │ │ ├── tars_tarsquerystat_bushu.png │ │ ├── tars_tarsquerystat_bushu_en.png │ │ ├── tars_tarsquerystat_patch.png │ │ ├── tars_tarsquerystat_patch_en.png │ │ ├── tars_tarsstat_bushu.png │ │ ├── tars_tarsstat_bushu_en.png │ │ ├── tars_tarsstat_patch.png │ │ ├── tars_tarsstat_patch_en.png │ │ ├── tars_template_table1.png │ │ ├── tars_top_en.png │ │ ├── tars_tuopu.png │ │ ├── tars_tupclass.png │ │ ├── tars_tupstruct.png │ │ ├── tars_web_index.png │ │ ├── tars_web_system.png │ │ ├── tars_web_system_en.png │ │ ├── tars_web_system_index.png │ │ └── tars_web_system_index_en.png │ ├── question_images │ │ ├── 50MB.png │ │ ├── encoding_error.png │ │ ├── java_server_deploy.png │ │ ├── mysql_sqlmode.png │ │ ├── registry_not_founded.png │ │ ├── registry_not_invoker.png │ │ ├── registry_web_empty.png │ │ ├── registry_web_endpoint.png │ │ ├── resin.png │ │ ├── stat.png │ │ ├── tars-java-jar.png │ │ └── tars_not_resolve.png │ ├── tars_auth.md │ ├── tars_config.md │ ├── tars_cpp_develop_specification.md │ ├── tars_cpp_faq.md │ ├── tars_cpp_future_promise.md │ ├── tars_cpp_http_demo.md │ ├── tars_cpp_quickstart.md │ ├── tars_cpp_server_thread.md │ ├── tars_cpp_user_guide.md │ ├── tars_idc_set.md │ ├── tars_java_faq.md │ ├── tars_java_quickstart.md │ ├── tars_java_spring.md │ ├── tars_java_spring_cloud.md │ ├── tars_java_user_guide.md │ ├── tars_openssl.md │ ├── tars_performce.md │ ├── tars_push.md │ ├── tars_server_monitor.md │ ├── tars_template.md │ └── tars_tup.md ├── java │ ├── README.md │ ├── core │ │ ├── README.md │ │ ├── client.pom.xml │ │ ├── pom.xml │ │ ├── server.pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── qq │ │ │ │ └── tars │ │ │ │ ├── client │ │ │ │ ├── ClientVersion.java │ │ │ │ ├── Communicator.java │ │ │ │ ├── CommunicatorConfig.java │ │ │ │ ├── CommunicatorFactory.java │ │ │ │ ├── ObjectProxy.java │ │ │ │ ├── ObjectProxyFactory.java │ │ │ │ ├── ServantProxy.java │ │ │ │ ├── ServantProxyConfig.java │ │ │ │ ├── ServantProxyFactory.java │ │ │ │ ├── cluster │ │ │ │ │ ├── DefaultLoadBalance.java │ │ │ │ │ ├── ServantInvokerAliveStat.java │ │ │ │ │ └── ServantnvokerAliveChecker.java │ │ │ │ ├── rpc │ │ │ │ │ ├── InvokerComparator.java │ │ │ │ │ ├── ServantClient.java │ │ │ │ │ ├── ServantInvokeContext.java │ │ │ │ │ ├── ServantInvoker.java │ │ │ │ │ ├── ServantProtocolInvoker.java │ │ │ │ │ ├── loadbalance │ │ │ │ │ │ ├── ConsistentHashLoadBalance.java │ │ │ │ │ │ ├── DefaultLoadBalance.java │ │ │ │ │ │ ├── HashLoadBalance.java │ │ │ │ │ │ ├── LoadBalanceHelper.java │ │ │ │ │ │ └── RoundRobinLoadBalance.java │ │ │ │ │ └── tars │ │ │ │ │ │ ├── TarsCallbackWrapper.java │ │ │ │ │ │ ├── TarsInvokeContext.java │ │ │ │ │ │ ├── TarsInvoker.java │ │ │ │ │ │ └── TarsProtocolInvoker.java │ │ │ │ ├── support │ │ │ │ │ ├── ClientPoolManager.java │ │ │ │ │ ├── ClientThreadPoolManager.java │ │ │ │ │ └── ServantCacheManager.java │ │ │ │ └── util │ │ │ │ │ ├── ClientLogger.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ └── ParseTools.java │ │ │ │ ├── common │ │ │ │ ├── support │ │ │ │ │ ├── ClassLoaderManager.java │ │ │ │ │ ├── Endpoint.java │ │ │ │ │ ├── Holder.java │ │ │ │ │ └── ScheduledExecutorManager.java │ │ │ │ └── util │ │ │ │ │ ├── BeanAccessor.java │ │ │ │ │ ├── CommonUtils.java │ │ │ │ │ ├── Config.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── DyeingKeyCache.java │ │ │ │ │ ├── DyeingSwitch.java │ │ │ │ │ ├── FileUtil.java │ │ │ │ │ ├── HexUtil.java │ │ │ │ │ ├── Loader.java │ │ │ │ │ ├── StringUtils.java │ │ │ │ │ ├── TableUtil.java │ │ │ │ │ └── concurrent │ │ │ │ │ ├── TaskQueue.java │ │ │ │ │ ├── TaskThread.java │ │ │ │ │ ├── TaskThreadFactory.java │ │ │ │ │ └── TaskThreadPoolExecutor.java │ │ │ │ ├── protocol │ │ │ │ ├── annotation │ │ │ │ │ ├── Servant.java │ │ │ │ │ └── ServantCodec.java │ │ │ │ ├── tars │ │ │ │ │ ├── TarsInputStream.java │ │ │ │ │ ├── TarsInputStreamExt.java │ │ │ │ │ ├── TarsOutputStream.java │ │ │ │ │ ├── TarsOutputStreamExt.java │ │ │ │ │ ├── TarsStructBase.java │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── TarsCallback.java │ │ │ │ │ │ ├── TarsContext.java │ │ │ │ │ │ ├── TarsHolder.java │ │ │ │ │ │ ├── TarsMethod.java │ │ │ │ │ │ ├── TarsMethodParameter.java │ │ │ │ │ │ ├── TarsRouteKey.java │ │ │ │ │ │ ├── TarsStruct.java │ │ │ │ │ │ └── TarsStructProperty.java │ │ │ │ │ ├── exc │ │ │ │ │ │ ├── TarsDecodeException.java │ │ │ │ │ │ └── TarsEncodeException.java │ │ │ │ │ └── support │ │ │ │ │ │ ├── TarsMethodInfo.java │ │ │ │ │ │ ├── TarsMethodParameterInfo.java │ │ │ │ │ │ ├── TarsStructInfo.java │ │ │ │ │ │ └── TarsStrutPropertyInfo.java │ │ │ │ └── util │ │ │ │ │ ├── TarsDisplayer.java │ │ │ │ │ ├── TarsHelper.java │ │ │ │ │ └── TarsUtil.java │ │ │ │ ├── register │ │ │ │ ├── RegisterHandler.java │ │ │ │ └── RegisterManager.java │ │ │ │ ├── rpc │ │ │ │ ├── common │ │ │ │ │ ├── InvokeContext.java │ │ │ │ │ ├── Invoker.java │ │ │ │ │ ├── LoadBalance.java │ │ │ │ │ ├── ProtocolInvoker.java │ │ │ │ │ ├── Url.java │ │ │ │ │ ├── exc │ │ │ │ │ │ └── NoInvokerException.java │ │ │ │ │ ├── support │ │ │ │ │ │ └── AbstractInvoker.java │ │ │ │ │ └── util │ │ │ │ │ │ └── concurrent │ │ │ │ │ │ └── ConcurrentHashSet.java │ │ │ │ ├── exc │ │ │ │ │ ├── ClientException.java │ │ │ │ │ ├── CommunicatorConfigException.java │ │ │ │ │ ├── NoConnectionException.java │ │ │ │ │ ├── NotConnectedException.java │ │ │ │ │ ├── NotImplementedException.java │ │ │ │ │ ├── ServerDecodeException.java │ │ │ │ │ ├── ServerEncodeException.java │ │ │ │ │ ├── ServerException.java │ │ │ │ │ ├── ServerNoFuncException.java │ │ │ │ │ ├── ServerNoServantException.java │ │ │ │ │ ├── ServerQueueTimeoutException.java │ │ │ │ │ ├── ServerResetGridException.java │ │ │ │ │ ├── ServerUnknownException.java │ │ │ │ │ ├── ServiceNotFoundException.java │ │ │ │ │ ├── TarsException.java │ │ │ │ │ └── TimeoutException.java │ │ │ │ ├── ext │ │ │ │ │ ├── ExtendedProtocolCodecWrapper.java │ │ │ │ │ ├── ExtendedProtocolFactory.java │ │ │ │ │ ├── RequestInfo.java │ │ │ │ │ └── ResponseInfo.java │ │ │ │ └── protocol │ │ │ │ │ ├── Codec.java │ │ │ │ │ ├── ServantProtocolFactory.java │ │ │ │ │ ├── ServantRequest.java │ │ │ │ │ ├── ServantResponse.java │ │ │ │ │ ├── ext │ │ │ │ │ ├── ExtendedServant.java │ │ │ │ │ ├── ExtendedServantRequest.java │ │ │ │ │ └── ExtendedServantResponse.java │ │ │ │ │ ├── tars │ │ │ │ │ ├── TarsCodec.java │ │ │ │ │ ├── TarsCodecHelper.java │ │ │ │ │ ├── TarsServantProtocolFactory.java │ │ │ │ │ ├── TarsServantRequest.java │ │ │ │ │ ├── TarsServantResponse.java │ │ │ │ │ └── support │ │ │ │ │ │ ├── AnalystManager.java │ │ │ │ │ │ └── TarsAbstractCallback.java │ │ │ │ │ └── tup │ │ │ │ │ ├── BasicClassTypeUtil.java │ │ │ │ │ ├── ObjectCreateException.java │ │ │ │ │ ├── OldUniAttribute.java │ │ │ │ │ └── UniAttribute.java │ │ │ │ ├── server │ │ │ │ ├── ServerVersion.java │ │ │ │ ├── apps │ │ │ │ │ ├── AppClassLoader.java │ │ │ │ │ ├── AppContext.java │ │ │ │ │ ├── AppContextImpl.java │ │ │ │ │ ├── BaseAppContext.java │ │ │ │ │ ├── DefaultAppContextEvent.java │ │ │ │ │ ├── DefaultAppServantEvent.java │ │ │ │ │ └── XmlAppContext.java │ │ │ │ ├── common │ │ │ │ │ ├── ServerLogger.java │ │ │ │ │ ├── XMLConfigElement.java │ │ │ │ │ └── XMLConfigFile.java │ │ │ │ ├── config │ │ │ │ │ ├── ConfigurationException.java │ │ │ │ │ ├── ConfigurationManager.java │ │ │ │ │ ├── ServantAdapterConfig.java │ │ │ │ │ └── ServerConfig.java │ │ │ │ ├── core │ │ │ │ │ ├── Adapter.java │ │ │ │ │ ├── AppContainer.java │ │ │ │ │ ├── AppContext.java │ │ │ │ │ ├── AppContextEvent.java │ │ │ │ │ ├── AppContextListener.java │ │ │ │ │ ├── AppContextManager.java │ │ │ │ │ ├── AppServantEvent.java │ │ │ │ │ ├── AppService.java │ │ │ │ │ ├── AsyncContext.java │ │ │ │ │ ├── Container.java │ │ │ │ │ ├── ContainerManager.java │ │ │ │ │ ├── Context.java │ │ │ │ │ ├── ContextManager.java │ │ │ │ │ ├── ExtendedServantProcessor.java │ │ │ │ │ ├── ServantAdapter.java │ │ │ │ │ ├── ServantHomeSkeleton.java │ │ │ │ │ ├── ServantProcessor.java │ │ │ │ │ ├── ServantThreadPoolManager.java │ │ │ │ │ ├── Server.java │ │ │ │ │ ├── ServerThreadPoolDispatcher.java │ │ │ │ │ └── TarsServantProcessor.java │ │ │ │ ├── ha │ │ │ │ │ └── ConnectionSessionListener.java │ │ │ │ └── startup │ │ │ │ │ └── Main.java │ │ │ │ └── support │ │ │ │ ├── admin │ │ │ │ ├── AdminFServant.java │ │ │ │ ├── CommandHandler.java │ │ │ │ ├── CustemCommandHelper.java │ │ │ │ └── impl │ │ │ │ │ └── AdminFServantImpl.java │ │ │ │ ├── config │ │ │ │ ├── ConfigHelper.java │ │ │ │ ├── UpdateConfigCallback.java │ │ │ │ └── prx │ │ │ │ │ ├── ConfigInfo.java │ │ │ │ │ ├── ConfigPrx.java │ │ │ │ │ ├── ConfigPrxCallback.java │ │ │ │ │ └── GetConfigListInfo.java │ │ │ │ ├── log │ │ │ │ ├── ArrayWriter.java │ │ │ │ ├── LogConfCacheMngr.java │ │ │ │ ├── LogItem.java │ │ │ │ ├── LogWorkThread.java │ │ │ │ ├── Logger.java │ │ │ │ ├── LoggerFactory.java │ │ │ │ ├── LoggingOutputStream.java │ │ │ │ ├── ThrowableInfo.java │ │ │ │ ├── prx │ │ │ │ │ ├── LogInfo.java │ │ │ │ │ ├── LogPrx.java │ │ │ │ │ └── LogPrxCallback.java │ │ │ │ └── util │ │ │ │ │ └── Utils.java │ │ │ │ ├── node │ │ │ │ ├── NodeHelper.java │ │ │ │ └── prx │ │ │ │ │ ├── ServerFPrx.java │ │ │ │ │ ├── ServerFPrxCallback.java │ │ │ │ │ └── ServerInfo.java │ │ │ │ ├── notify │ │ │ │ ├── NotifyHelper.java │ │ │ │ └── prx │ │ │ │ │ ├── NOTIFYLEVEL.java │ │ │ │ │ ├── NotifyInfo.java │ │ │ │ │ ├── NotifyItem.java │ │ │ │ │ ├── NotifyKey.java │ │ │ │ │ ├── NotifyPrx.java │ │ │ │ │ ├── NotifyPrxCallback.java │ │ │ │ │ ├── ReportInfo.java │ │ │ │ │ └── ReportType.java │ │ │ │ ├── om │ │ │ │ ├── OmConstants.java │ │ │ │ ├── OmLogger.java │ │ │ │ ├── OmServiceMngr.java │ │ │ │ ├── ScheduledServiceMngr.java │ │ │ │ └── ServerStatHelper.java │ │ │ │ ├── property │ │ │ │ ├── CommonPropertyPolicy.java │ │ │ │ ├── JvmPropertyPolicy.java │ │ │ │ ├── PropertyReportHelper.java │ │ │ │ └── prx │ │ │ │ │ ├── PropertyFPrx.java │ │ │ │ │ ├── PropertyFPrxCallback.java │ │ │ │ │ ├── StatPropInfo.java │ │ │ │ │ ├── StatPropMsgBody.java │ │ │ │ │ └── StatPropMsgHead.java │ │ │ │ ├── query │ │ │ │ ├── QueryHelper.java │ │ │ │ └── prx │ │ │ │ │ ├── EndpointF.java │ │ │ │ │ ├── QueryFPrx.java │ │ │ │ │ └── QueryFPrxCallback.java │ │ │ │ └── stat │ │ │ │ ├── InvokeStatHelper.java │ │ │ │ ├── ProxyStat.java │ │ │ │ ├── ProxyStatBody.java │ │ │ │ ├── ProxyStatHead.java │ │ │ │ ├── ProxyStatUtils.java │ │ │ │ ├── StatHelper.java │ │ │ │ └── prx │ │ │ │ ├── ProxyInfo.java │ │ │ │ ├── StatFPrx.java │ │ │ │ ├── StatFPrxCallback.java │ │ │ │ ├── StatMicMsgBody.java │ │ │ │ ├── StatMicMsgHead.java │ │ │ │ └── StatSampleMsg.java │ │ │ └── resources │ │ │ ├── AdminF.tars │ │ │ ├── ConfigF.tars │ │ │ ├── EndpointF.tars │ │ │ ├── LogF.tars │ │ │ ├── QueryF.tars │ │ │ └── StatF.tars │ ├── distributedContext │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── qq │ │ │ └── tars │ │ │ └── context │ │ │ ├── DistributedContext.java │ │ │ ├── DistributedContextCodec.java │ │ │ ├── DistributedContextManager.java │ │ │ ├── exc │ │ │ └── CodecException.java │ │ │ └── impl │ │ │ ├── ContextItem.java │ │ │ └── DistributedContextImpl.java │ ├── examples │ │ ├── README.md │ │ ├── pom.xml │ │ ├── quickstart-client │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── qq │ │ │ │ │ └── tars │ │ │ │ │ └── quickstart │ │ │ │ │ ├── client │ │ │ │ │ └── testapp │ │ │ │ │ │ ├── HelloPrx.java │ │ │ │ │ │ └── HelloPrxCallback.java │ │ │ │ │ └── domain │ │ │ │ │ └── Main.java │ │ │ │ ├── resources │ │ │ │ └── hello.tars │ │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ ├── quickstart-server │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── qq │ │ │ │ │ └── tars │ │ │ │ │ └── quickstart │ │ │ │ │ └── server │ │ │ │ │ ├── AppStartListener.java │ │ │ │ │ └── testapp │ │ │ │ │ ├── HelloServant.java │ │ │ │ │ └── impl │ │ │ │ │ └── HelloServantImpl.java │ │ │ │ ├── resources │ │ │ │ ├── TestApp.HelloJavaServer.config.conf │ │ │ │ ├── hello.tars │ │ │ │ └── servants.xml │ │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── servants.xml │ │ │ │ └── web.xml │ │ ├── stress-server │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── qq │ │ │ │ │ └── tars │ │ │ │ │ └── stress │ │ │ │ │ └── server │ │ │ │ │ └── test │ │ │ │ │ ├── StressServant.java │ │ │ │ │ └── impl │ │ │ │ │ └── StressServantImpl.java │ │ │ │ ├── resources │ │ │ │ └── stress.tars │ │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── servants.xml │ │ │ │ └── web.xml │ │ ├── tars-spring-cloud-client │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── qq │ │ │ │ │ └── tars │ │ │ │ │ └── springcloud │ │ │ │ │ └── test │ │ │ │ │ └── client │ │ │ │ │ ├── Client.java │ │ │ │ │ ├── ClientApplication.java │ │ │ │ │ └── HelloPrx.java │ │ │ │ └── resources │ │ │ │ └── application.yml │ │ └── tars-spring-cloud-server │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── qq │ │ │ │ └── tars │ │ │ │ └── springcloud │ │ │ │ └── test │ │ │ │ └── server │ │ │ │ ├── Application.java │ │ │ │ ├── HelloServant.java │ │ │ │ ├── HelloServantImpl.java │ │ │ │ └── HelloServantImpl2.java │ │ │ └── resources │ │ │ └── application.yml │ ├── net │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── qq │ │ │ └── tars │ │ │ └── net │ │ │ ├── client │ │ │ ├── Callback.java │ │ │ ├── Client.java │ │ │ ├── FutureImpl.java │ │ │ └── ticket │ │ │ │ ├── Ticket.java │ │ │ │ ├── TicketListener.java │ │ │ │ └── TicketManager.java │ │ │ ├── core │ │ │ ├── IoBuffer.java │ │ │ ├── Processor.java │ │ │ ├── Request.java │ │ │ ├── Response.java │ │ │ ├── Server.java │ │ │ ├── Session.java │ │ │ ├── SessionEvent.java │ │ │ ├── SessionListener.java │ │ │ ├── SessionManager.java │ │ │ └── nio │ │ │ │ ├── Acceptor.java │ │ │ │ ├── Reactor.java │ │ │ │ ├── SelectorManager.java │ │ │ │ ├── SessionManagerImpl.java │ │ │ │ ├── TCPAcceptor.java │ │ │ │ ├── TCPSession.java │ │ │ │ ├── UDPAcceptor.java │ │ │ │ ├── UDPSession.java │ │ │ │ └── WorkThread.java │ │ │ ├── protocol │ │ │ ├── ProtocolDecoder.java │ │ │ ├── ProtocolEncoder.java │ │ │ ├── ProtocolException.java │ │ │ └── ProtocolFactory.java │ │ │ └── util │ │ │ └── Utils.java │ ├── pom.xml │ ├── protobuf │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── qq │ │ │ └── tars │ │ │ └── rpc │ │ │ └── protocol │ │ │ └── proto │ │ │ ├── MethodCache.java │ │ │ └── ProtoCodec.java │ ├── spring │ │ ├── README.md │ │ ├── pom.xml │ │ ├── tars-spring-cloud-starter │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── qq │ │ │ │ │ └── tars │ │ │ │ │ └── register │ │ │ │ │ └── eureka │ │ │ │ │ ├── EurekaRegisterHandler.java │ │ │ │ │ ├── TarsEurekaAutoConfiguration.java │ │ │ │ │ ├── TarsEurekaClientConfig.java │ │ │ │ │ ├── TarsEurekaHealthCheckHandler.java │ │ │ │ │ ├── TarsEurekaInstance.java │ │ │ │ │ └── TarsStatusChangeListener.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring.factories │ │ └── tars-spring │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── qq │ │ │ │ └── tars │ │ │ │ ├── client │ │ │ │ ├── TarsClientBeanPostProcessor.java │ │ │ │ └── config │ │ │ │ │ └── TarsClientProperties.java │ │ │ │ └── server │ │ │ │ ├── TarsConfiguration.java │ │ │ │ ├── annotation │ │ │ │ ├── EnableTarsConfiguration.java │ │ │ │ ├── TarsClient.java │ │ │ │ └── TarsServant.java │ │ │ │ ├── apps │ │ │ │ ├── RestService.java │ │ │ │ ├── SpringAppContext.java │ │ │ │ └── TarsStartLifecycle.java │ │ │ │ ├── config │ │ │ │ ├── ListenerConfig.java │ │ │ │ ├── ServantConfig.java │ │ │ │ ├── TarsServerProperties.java │ │ │ │ └── TarsSpringConfigException.java │ │ │ │ └── schema │ │ │ │ ├── TarsBeanDefinitionParser.java │ │ │ │ └── TarsNamespaceHandler.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── spring.factories │ │ │ ├── spring.handlers │ │ │ ├── spring.schemas │ │ │ └── tars.xsd │ └── tools │ │ ├── README.md │ │ ├── pom.xml │ │ └── tars-maven-plugin │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── qq │ │ │ └── tars │ │ │ └── maven │ │ │ ├── gensrc │ │ │ ├── Servant.java │ │ │ ├── Tars2JavaConfig.java │ │ │ ├── Tars2JavaMojo.java │ │ │ └── TarsBuildMojo.java │ │ │ ├── model │ │ │ ├── ClasspathElement.java │ │ │ ├── Dependency.java │ │ │ └── Directory.java │ │ │ ├── parse │ │ │ ├── TarsLexer.java │ │ │ ├── TarsParser.java │ │ │ └── ast │ │ │ │ ├── TarsConst.java │ │ │ │ ├── TarsCustomType.java │ │ │ │ ├── TarsEnum.java │ │ │ │ ├── TarsInclude.java │ │ │ │ ├── TarsInterface.java │ │ │ │ ├── TarsKey.java │ │ │ │ ├── TarsMapType.java │ │ │ │ ├── TarsNamespace.java │ │ │ │ ├── TarsOperation.java │ │ │ │ ├── TarsParam.java │ │ │ │ ├── TarsPrimitiveType.java │ │ │ │ ├── TarsRoot.java │ │ │ │ ├── TarsStruct.java │ │ │ │ ├── TarsStructMember.java │ │ │ │ ├── TarsType.java │ │ │ │ └── TarsVectorType.java │ │ │ ├── script │ │ │ └── Platform.java │ │ │ └── util │ │ │ ├── ArchiveEntryUtils.java │ │ │ ├── FilePermission.java │ │ │ ├── FilePermissionUtils.java │ │ │ ├── StringUtils.java │ │ │ ├── XMLConfigElement.java │ │ │ └── XMLConfigFile.java │ │ └── resources │ │ └── com │ │ └── qq │ │ └── tars │ │ └── maven │ │ └── script │ │ ├── configTemplate │ │ ├── servantTemplate │ │ ├── unixBinTemplate │ │ └── windowsBinTemplate ├── nodejs │ ├── README.md │ ├── config │ │ ├── .gitignore │ │ ├── ConfigF.tars │ │ ├── ConfigFProxy.js │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── deploy │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bin │ │ │ └── tars-deploy │ │ ├── deploy.js │ │ ├── package-lock.json │ │ └── package.json │ ├── dyeing │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── logs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── monitor │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── policy │ │ │ └── index.js │ │ ├── property │ │ │ ├── PropertyF.tars │ │ │ ├── PropertyFProxy.js │ │ │ └── index.js │ │ └── stat │ │ │ ├── StatF.tars │ │ │ ├── StatFProxy.js │ │ │ └── index.js │ ├── node-agent │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bin │ │ │ └── node-agent │ │ ├── doc │ │ │ └── architecture.png │ │ ├── lib │ │ │ ├── CLI.js │ │ │ ├── God.js │ │ │ ├── ProcessContainer.js │ │ │ ├── constants.js │ │ │ ├── log.js │ │ │ ├── tars │ │ │ │ ├── HttpStats │ │ │ │ │ └── index.js │ │ │ │ ├── Message │ │ │ │ │ ├── AdminF.js │ │ │ │ │ ├── AdminF.tars │ │ │ │ │ ├── AdminFImp.js │ │ │ │ │ └── index.js │ │ │ │ ├── Notify │ │ │ │ │ └── index.js │ │ │ │ ├── Report │ │ │ │ │ ├── NodeF.tars │ │ │ │ │ ├── NodeFProxy.js │ │ │ │ │ └── index.js │ │ │ │ └── UsageStats │ │ │ │ │ └── index.js │ │ │ └── util │ │ │ │ ├── convert.js │ │ │ │ ├── cpu │ │ │ │ ├── index.js │ │ │ │ ├── posix.js │ │ │ │ ├── system.js │ │ │ │ └── win.js │ │ │ │ ├── lsdeps.js │ │ │ │ └── treekill.js │ │ └── package.json │ ├── notify │ │ ├── .gitignore │ │ ├── NotifyF.tars │ │ ├── NotifyFProxy.js │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── registry │ │ ├── EndpointF.tars │ │ ├── EndpointFTars.js │ │ ├── QueryF.tars │ │ ├── QueryFProxy.js │ │ ├── index.js │ │ └── package.json │ ├── rpc │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── core │ │ │ ├── client │ │ │ │ ├── AdapterProxy.js │ │ │ │ ├── Communicator.js │ │ │ │ ├── EndpointManager.js │ │ │ │ ├── ObjectProxy.js │ │ │ │ ├── ProtoMessage.js │ │ │ │ ├── ReqMessage.js │ │ │ │ ├── ServantProxy.js │ │ │ │ └── Transceiver.js │ │ │ ├── rpc-json │ │ │ │ ├── index.js │ │ │ │ ├── json-client.js │ │ │ │ └── json-server.js │ │ │ ├── rpc-tars │ │ │ │ ├── RequestF.js │ │ │ │ ├── index.js │ │ │ │ ├── tars-client.js │ │ │ │ └── tars-server.js │ │ │ ├── server │ │ │ │ ├── BindAdapter.js │ │ │ │ ├── HeroServer.js │ │ │ │ ├── NetThread.js │ │ │ │ ├── ProtoMessage.js │ │ │ │ ├── TarsCurrent.js │ │ │ │ └── Transceiver.js │ │ │ └── util │ │ │ │ ├── TQueue.js │ │ │ │ └── TarsError.js │ │ ├── examples │ │ │ ├── rpc-json │ │ │ │ ├── client │ │ │ │ │ └── main.js │ │ │ │ └── server │ │ │ │ │ ├── EchoHandle.js │ │ │ │ │ └── main.js │ │ │ └── rpc-tars │ │ │ │ ├── demo.1 │ │ │ │ ├── client.node.hashcode │ │ │ │ │ ├── NodeTarsProxy.js │ │ │ │ │ ├── config.conf │ │ │ │ │ └── main.js │ │ │ │ ├── client.node.proxy │ │ │ │ │ ├── NodeTarsProxy.js │ │ │ │ │ ├── config.conf │ │ │ │ │ └── main.js │ │ │ │ ├── client.node.tup.socket │ │ │ │ │ ├── NodeTars.js │ │ │ │ │ └── main.js │ │ │ │ ├── client.node.tup.tupproxyserver │ │ │ │ │ ├── NodeTars.js │ │ │ │ │ └── main.js │ │ │ │ ├── server.node.1 │ │ │ │ │ ├── NodeTars.js │ │ │ │ │ ├── NodeTars.tars │ │ │ │ │ ├── NodeTarsImp.js │ │ │ │ │ ├── TARS.NodeTarsServer.config.conf │ │ │ │ │ └── main.js │ │ │ │ ├── server.node.2 │ │ │ │ │ ├── NodeTars.js │ │ │ │ │ ├── NodeTars.tars │ │ │ │ │ ├── NodeTarsImp.js │ │ │ │ │ └── main.js │ │ │ │ ├── server.node.3 │ │ │ │ │ ├── NodeTars.js │ │ │ │ │ ├── NodeTars.tars │ │ │ │ │ ├── NodeTarsImp.js │ │ │ │ │ ├── TARS.NodeTarsServer.config.conf │ │ │ │ │ └── main.js │ │ │ │ └── server.node.tup.tupproxyserver │ │ │ │ │ ├── NodeTars.js │ │ │ │ │ ├── NodeTars.tars │ │ │ │ │ ├── NodeTarsImp.js │ │ │ │ │ └── main.js │ │ │ │ └── demo.2 │ │ │ │ ├── client.node.proxy │ │ │ │ ├── NodeSecondProxy.js │ │ │ │ └── main.js │ │ │ │ └── server.node.1 │ │ │ │ ├── NodeSecond.js │ │ │ │ ├── NodeSecond.tars │ │ │ │ ├── NodeSecondImp.js │ │ │ │ ├── TARS.NodeTarsServer.config.conf │ │ │ │ └── main.js │ │ ├── package.json │ │ └── protal.js │ ├── stream │ │ ├── README.md │ │ ├── package.json │ │ ├── sample │ │ │ ├── list │ │ │ │ └── test-list.js │ │ │ ├── map │ │ │ │ └── test-map.js │ │ │ ├── struct │ │ │ │ └── test-ext.js │ │ │ ├── tars │ │ │ │ ├── Ext.js │ │ │ │ ├── Ext.tars │ │ │ │ ├── ExtImp.js │ │ │ │ └── ExtProxy.js │ │ │ └── tup │ │ │ │ └── test-tup.js │ │ └── tars.js │ ├── utils │ │ ├── .gitignore │ │ ├── README.md │ │ ├── examples │ │ │ ├── config.conf │ │ │ ├── test-config.js │ │ │ ├── test-endpoint.js │ │ │ └── test-timer.js │ │ ├── index.js │ │ ├── package.json │ │ ├── tars-config-parser.js │ │ ├── tars-endpoint.js │ │ ├── tars-promise.js │ │ └── tars-timer.js │ └── winston-tars │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ └── tars-config.js │ │ ├── index.js │ │ ├── lib │ │ └── formatter.js │ │ ├── package.json │ │ └── transport │ │ ├── tars-base.js │ │ ├── tars-date │ │ └── index.js │ │ ├── tars-rotate │ │ ├── core.js │ │ ├── index.js │ │ └── master.js │ │ └── util │ │ ├── date-format.js │ │ └── mkdirp.js ├── php │ ├── README.md │ └── tarsclient │ │ ├── README.md │ │ ├── demo │ │ ├── App │ │ │ └── Server │ │ │ │ └── Servant │ │ │ │ ├── classes │ │ │ │ ├── MiddleStruct.php │ │ │ │ ├── NestedStruct.php │ │ │ │ └── SimpleStruct.php │ │ │ │ ├── servant.php │ │ │ │ └── tars │ │ │ │ └── example.tars │ │ ├── composer.json │ │ └── testServant.php │ │ ├── example.tars │ │ ├── ext │ │ ├── auto │ │ ├── auto7.sh │ │ ├── config.m4 │ │ ├── include │ │ │ ├── php7_wrapper.h │ │ │ ├── php_error.h │ │ │ ├── php_tupapi.h │ │ │ ├── tars_c.h │ │ │ ├── ttars.h │ │ │ └── tup_c.h │ │ ├── tars_c.c │ │ ├── testcases │ │ │ ├── NestedStruct.php │ │ │ ├── SimpleStruct.php │ │ │ └── test.php │ │ ├── ttars.c │ │ ├── tup_c.c │ │ └── tupapi.c │ │ └── tars2php.php ├── plugins │ ├── README.md │ └── java-protobuf-plugin │ │ ├── README.md │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── src │ │ └── java_plugin │ │ │ └── cpp │ │ │ ├── JavaPlugin.cpp │ │ │ ├── JavaPrxCallbackGenerator.cpp │ │ │ ├── JavaPrxCallbackGenerator.h │ │ │ ├── JavaPrxGenerator.cpp │ │ │ ├── JavaPrxGenerator.h │ │ │ ├── JavaServantGenerator.cpp │ │ │ ├── JavaServantGenerator.h │ │ │ └── LogHelper.h │ │ └── usage │ │ ├── multi │ │ ├── base.proto │ │ └── service.proto │ │ └── single │ │ └── flight.proto ├── tup │ ├── README.md │ ├── tup-c │ │ ├── Tars_c.c │ │ ├── Tars_c.h │ │ ├── demo │ │ │ ├── Test.tars │ │ │ ├── main.c │ │ │ └── makefile │ │ ├── tup_c.c │ │ └── tup_c.h │ ├── tup-csharp │ │ ├── .vs │ │ │ └── TestTupConsole │ │ │ │ └── v14 │ │ │ │ └── .suo │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test │ │ │ ├── A.cs │ │ │ ├── B.cs │ │ │ ├── Test.tars │ │ │ ├── TestInfo.cs │ │ │ ├── TestTupSample1.cs │ │ │ └── Test_const.cs │ │ ├── TestTupConsole.csproj │ │ ├── TestTupConsole.sln │ │ ├── makefile │ │ ├── tars │ │ │ ├── TarsDecodeException.cs │ │ │ ├── TarsDisplayer.cs │ │ │ ├── TarsEncodeException.cs │ │ │ ├── TarsInputStream.cs │ │ │ ├── TarsOutputStream.cs │ │ │ ├── TarsStruct.cs │ │ │ └── TarsUtil.cs │ │ ├── tup │ │ │ ├── Const.cs │ │ │ ├── RequestPacket.cs │ │ │ ├── TarsUniPacket.cs │ │ │ ├── UniAttribute.cs │ │ │ └── UniPacket.cs │ │ └── util │ │ │ ├── BasicClassTypeUtil.cs │ │ │ ├── ByteConverter.cs │ │ │ ├── HexUtil.cs │ │ │ ├── ObjectCreateException.cs │ │ │ ├── QTrace.cs │ │ │ └── Utility.cs │ ├── tup-oc │ │ ├── Examples │ │ │ ├── Adapters │ │ │ │ ├── MttHDVerifyRes.h │ │ │ │ ├── MttHDVerifyRes.m │ │ │ │ ├── MttLoginReq+Adapter.h │ │ │ │ ├── MttLoginReq+Adapter.m │ │ │ │ ├── MttPageConfigReq+Adapter.h │ │ │ │ ├── MttPageConfigReq+Adapter.m │ │ │ │ ├── MttReleaseInfo+Adapter.h │ │ │ │ ├── MttReleaseInfo+Adapter.m │ │ │ │ ├── MttSTStat+Adapter.h │ │ │ │ ├── MttSTStat+Adapter.m │ │ │ │ ├── MttSplashReq+Adapter.h │ │ │ │ ├── MttSplashReq+Adapter.m │ │ │ │ ├── MttUserBase+Adapter.h │ │ │ │ ├── MttUserBase+Adapter.m │ │ │ │ ├── MttVerifyReq+Adapter.h │ │ │ │ └── MttVerifyReq+Adapter.m │ │ │ ├── BusinessData │ │ │ │ ├── MttHDLoginInfo.h │ │ │ │ ├── MttHDLoginInfo.m │ │ │ │ ├── MttHDPageConfigInfo.h │ │ │ │ ├── MttHDPageConfigInfo.m │ │ │ │ ├── MttHDPersistentObject.h │ │ │ │ ├── MttHDPersistentObject.m │ │ │ │ ├── MttHDSplashInfo.h │ │ │ │ ├── MttHDSplashInfo.m │ │ │ │ ├── MttHDStatInfo.h │ │ │ │ ├── MttHDStatInfo.m │ │ │ │ ├── MttHDVerifyInfo.h │ │ │ │ ├── MttHDVerifyInfo.m │ │ │ │ ├── MttHDVideoInfo.h │ │ │ │ └── MttHDVideoInfo.m │ │ │ ├── MttHDWupAdapters.h │ │ │ ├── MttHDWupBusinessData.h │ │ │ ├── MttHDWupEnvironment.h │ │ │ ├── MttHDWupEnvironment.m │ │ │ ├── MttHDWupManager.h │ │ │ ├── MttHDWupManager.m │ │ │ ├── MttHDWupRMIServices.h │ │ │ ├── Protocol │ │ │ │ ├── MttBrokerSecurityRequest.h │ │ │ │ ├── MttBrokerSecurityRequest.m │ │ │ │ ├── MttBrokerSecurityResponse.h │ │ │ │ ├── MttBrokerSecurityResponse.m │ │ │ │ ├── MttVideoApp.h │ │ │ │ ├── MttVideoApp.m │ │ │ │ ├── MttVideoReq.h │ │ │ │ └── MttVideoReq.m │ │ │ ├── RMIAgents │ │ │ │ ├── MttConfigAgent.h │ │ │ │ ├── MttConfigAgent.m │ │ │ │ ├── MttCoolReadAgent.h │ │ │ │ ├── MttCoolReadAgent.m │ │ │ │ ├── MttLoginAgent.h │ │ │ │ ├── MttLoginAgent.m │ │ │ │ ├── MttSecurityAgent.h │ │ │ │ ├── MttSecurityAgent.m │ │ │ │ ├── MttStatAgent.h │ │ │ │ ├── MttStatAgent.m │ │ │ │ ├── MttVerifyAgent.h │ │ │ │ └── MttVerifyAgent.m │ │ │ └── RMIServices │ │ │ │ ├── MttConfigService.h │ │ │ │ ├── MttConfigService.m │ │ │ │ ├── MttCoolReadService.h │ │ │ │ ├── MttCoolReadService.m │ │ │ │ ├── MttLoginService.h │ │ │ │ ├── MttLoginService.m │ │ │ │ ├── MttSecurityService.h │ │ │ │ ├── MttSecurityService.m │ │ │ │ ├── MttStatService.h │ │ │ │ ├── MttStatService.m │ │ │ │ ├── MttVerifyService.h │ │ │ │ └── MttVerifyService.m │ │ └── tup │ │ │ ├── Dependencies │ │ │ └── ASIHttpRequest │ │ │ │ ├── ASICacheDelegate.h │ │ │ │ ├── ASIHTTPRequest.h │ │ │ │ ├── ASIHTTPRequestConfig.h │ │ │ │ ├── ASIHTTPRequestDelegate.h │ │ │ │ └── ASIProgressDelegate.h │ │ │ ├── tup.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── tup │ │ │ ├── RMIModel │ │ │ │ ├── WupAgent.h │ │ │ │ ├── WupAgent.m │ │ │ │ ├── WupAgentDelegate.h │ │ │ │ ├── WupHttpRequest.h │ │ │ │ ├── WupHttpRequest.m │ │ │ │ ├── WupService.h │ │ │ │ └── WupService.m │ │ │ ├── Serializable │ │ │ │ ├── JceEnumHelper.h │ │ │ │ ├── JceEnumHelper.m │ │ │ │ ├── JceInputStream.h │ │ │ │ ├── JceInputStream.m │ │ │ │ ├── JceObject.h │ │ │ │ ├── JceObject.m │ │ │ │ ├── JceObjectV2.h │ │ │ │ ├── JceObjectV2.m │ │ │ │ ├── JceOutputStream.h │ │ │ │ ├── JceOutputStream.m │ │ │ │ ├── JceStream.h │ │ │ │ ├── JceStream.m │ │ │ │ ├── RequestF.h │ │ │ │ ├── RequestF.mm │ │ │ │ ├── UniAttribute.h │ │ │ │ ├── UniAttribute.m │ │ │ │ ├── UniPacket.h │ │ │ │ └── UniPacket.mm │ │ │ ├── WirelessUnifiedProtocol-Debug.h │ │ │ ├── WirelessUnifiedProtocol-Prefix.pch │ │ │ └── WirelessUnifiedProtocol.h │ │ │ └── tupTests │ │ │ ├── Protocol │ │ │ └── Mtt │ │ │ │ ├── MttAcceptEncoding.h │ │ │ │ ├── MttAcceptEncoding.m │ │ │ │ ├── MttAdsContent.h │ │ │ │ ├── MttAdsContent.m │ │ │ │ ├── MttAdsReq.h │ │ │ │ ├── MttAdsReq.m │ │ │ │ ├── MttAdsRsp.h │ │ │ │ ├── MttAdsRsp.m │ │ │ │ ├── MttBrokerContentInfo.h │ │ │ │ ├── MttBrokerContentInfo.m │ │ │ │ ├── MttBrokerDisplayInfo.h │ │ │ │ ├── MttBrokerDisplayInfo.m │ │ │ │ ├── MttBrokerFragRequest.h │ │ │ │ ├── MttBrokerFragRequest.m │ │ │ │ ├── MttBrokerFragResponse.h │ │ │ │ ├── MttBrokerFragResponse.m │ │ │ │ ├── MttBrokerJSPDInfo.h │ │ │ │ ├── MttBrokerJSPDInfo.m │ │ │ │ ├── MttBrokerJSRequest.h │ │ │ │ ├── MttBrokerJSRequest.m │ │ │ │ ├── MttBrokerPageRequest.h │ │ │ │ ├── MttBrokerPageRequest.m │ │ │ │ ├── MttBrokerPicParam.h │ │ │ │ ├── MttBrokerPicParam.m │ │ │ │ ├── MttBrokerPicRequest.h │ │ │ │ ├── MttBrokerPicRequest.m │ │ │ │ ├── MttBrokerPushRequest.h │ │ │ │ ├── MttBrokerPushRequest.m │ │ │ │ ├── MttBrokerPushResponse.h │ │ │ │ ├── MttBrokerPushResponse.m │ │ │ │ ├── MttBrokerReqType.h │ │ │ │ ├── MttBrokerReqType.m │ │ │ │ ├── MttBrokerRequestParam.h │ │ │ │ ├── MttBrokerRequestParam.m │ │ │ │ ├── MttBrokerSecurityRequest.h │ │ │ │ ├── MttBrokerSecurityRequest.m │ │ │ │ ├── MttBrokerSecurityResponse.h │ │ │ │ ├── MttBrokerSecurityResponse.m │ │ │ │ ├── MttBrokerSimplifiedPushRequest.h │ │ │ │ ├── MttBrokerSimplifiedPushRequest.m │ │ │ │ ├── MttBrokerSimplifiedPushResponse.h │ │ │ │ ├── MttBrokerSimplifiedPushResponse.m │ │ │ │ ├── MttBrokerSimplifiedRequest.h │ │ │ │ ├── MttBrokerSimplifiedRequest.m │ │ │ │ ├── MttBrokerTransferResponse.h │ │ │ │ ├── MttBrokerTransferResponse.m │ │ │ │ ├── MttBrokerUploadRequest.h │ │ │ │ ├── MttBrokerUploadRequest.m │ │ │ │ ├── MttBrokerUserInfo.h │ │ │ │ ├── MttBrokerUserInfo.m │ │ │ │ ├── MttBrokerWups.h │ │ │ │ ├── MttBrokerWups.m │ │ │ │ ├── MttBrowserReq.h │ │ │ │ ├── MttBrowserReq.m │ │ │ │ ├── MttBrowserRsp.h │ │ │ │ ├── MttBrowserRsp.m │ │ │ │ ├── MttBrowserVersion.h │ │ │ │ ├── MttBrowserVersion.m │ │ │ │ ├── MttCheckPluginReq.h │ │ │ │ ├── MttCheckPluginReq.m │ │ │ │ ├── MttCityListReq.h │ │ │ │ ├── MttCityListReq.m │ │ │ │ ├── MttCityListRsp.h │ │ │ │ ├── MttCityListRsp.m │ │ │ │ ├── MttConfInfo.h │ │ │ │ ├── MttConfInfo.m │ │ │ │ ├── MttConfRsp.h │ │ │ │ ├── MttConfRsp.m │ │ │ │ ├── MttConfigReq.h │ │ │ │ ├── MttConfigReq.m │ │ │ │ ├── MttConfigRsp.h │ │ │ │ ├── MttConfigRsp.m │ │ │ │ ├── MttConfirm.h │ │ │ │ ├── MttConfirm.m │ │ │ │ ├── MttContentEncoding.h │ │ │ │ ├── MttContentEncoding.m │ │ │ │ ├── MttDNSReq.h │ │ │ │ ├── MttDNSReq.m │ │ │ │ ├── MttDNSRsp.h │ │ │ │ ├── MttDNSRsp.m │ │ │ │ ├── MttDirectPolicy.h │ │ │ │ ├── MttDirectPolicy.m │ │ │ │ ├── MttDomainRsp.h │ │ │ │ ├── MttDomainRsp.m │ │ │ │ ├── MttDomainRspNew.h │ │ │ │ ├── MttDomainRspNew.m │ │ │ │ ├── MttDynamicReq.h │ │ │ │ ├── MttDynamicReq.m │ │ │ │ ├── MttDynamicRsp.h │ │ │ │ ├── MttDynamicRsp.m │ │ │ │ ├── MttEDomainType.h │ │ │ │ ├── MttEDomainType.m │ │ │ │ ├── MttEEntryType.h │ │ │ │ ├── MttEEntryType.m │ │ │ │ ├── MttEFASTKEY.h │ │ │ │ ├── MttEFASTKEY.m │ │ │ │ ├── MttEHotWordType.h │ │ │ │ ├── MttEHotWordType.m │ │ │ │ ├── MttELanguageType.h │ │ │ │ ├── MttELanguageType.m │ │ │ │ ├── MttEPushServerType.h │ │ │ │ ├── MttEPushServerType.m │ │ │ │ ├── MttERelayProtoVer.h │ │ │ │ ├── MttERelayProtoVer.m │ │ │ │ ├── MttEServerVer.h │ │ │ │ ├── MttEServerVer.m │ │ │ │ ├── MttETPV.h │ │ │ │ ├── MttETPV.m │ │ │ │ ├── MttEUSESTAT.h │ │ │ │ ├── MttEUSESTAT.m │ │ │ │ ├── MttEWaitPushType.h │ │ │ │ ├── MttEWaitPushType.m │ │ │ │ ├── MttErrorCode.h │ │ │ │ ├── MttErrorCode.m │ │ │ │ ├── MttExtDomain.h │ │ │ │ ├── MttExtDomain.m │ │ │ │ ├── MttFKINFO.h │ │ │ │ ├── MttFKINFO.m │ │ │ │ ├── MttHotListReq.h │ │ │ │ ├── MttHotListReq.m │ │ │ │ ├── MttHotListRsp.h │ │ │ │ ├── MttHotListRsp.m │ │ │ │ ├── MttHotWordInfo.h │ │ │ │ ├── MttHotWordInfo.m │ │ │ │ ├── MttHotWordsReq.h │ │ │ │ ├── MttHotWordsReq.m │ │ │ │ ├── MttHotWordsRsp.h │ │ │ │ ├── MttHotWordsRsp.m │ │ │ │ ├── MttIPListReq.h │ │ │ │ ├── MttIPListReq.m │ │ │ │ ├── MttIPListRsp.h │ │ │ │ ├── MttIPListRsp.m │ │ │ │ ├── MttIcon.h │ │ │ │ ├── MttIcon.m │ │ │ │ ├── MttIconInfo.h │ │ │ │ ├── MttIconInfo.m │ │ │ │ ├── MttIconRsp.h │ │ │ │ ├── MttIconRsp.m │ │ │ │ ├── MttImageQuality.h │ │ │ │ ├── MttImageQuality.m │ │ │ │ ├── MttImageReq.h │ │ │ │ ├── MttImageReq.m │ │ │ │ ├── MttImageRsp.h │ │ │ │ ├── MttImageRsp.m │ │ │ │ ├── MttImgReq.h │ │ │ │ ├── MttImgReq.m │ │ │ │ ├── MttImgRsp.h │ │ │ │ ├── MttImgRsp.m │ │ │ │ ├── MttItemReq.h │ │ │ │ ├── MttItemReq.m │ │ │ │ ├── MttItemRsp.h │ │ │ │ ├── MttItemRsp.m │ │ │ │ ├── MttKeywordRsp.h │ │ │ │ ├── MttKeywordRsp.m │ │ │ │ ├── MttLPageReq.h │ │ │ │ ├── MttLPageReq.m │ │ │ │ ├── MttLPageRsp.h │ │ │ │ ├── MttLPageRsp.m │ │ │ │ ├── MttLoginReq.h │ │ │ │ ├── MttLoginReq.m │ │ │ │ ├── MttLoginRsp.h │ │ │ │ ├── MttLoginRsp.m │ │ │ │ ├── MttMTTContentType.h │ │ │ │ ├── MttMTTContentType.m │ │ │ │ ├── MttMethod.h │ │ │ │ ├── MttMethod.m │ │ │ │ ├── MttNaviRsp.h │ │ │ │ ├── MttNaviRsp.m │ │ │ │ ├── MttNavigation.h │ │ │ │ ├── MttNavigation.m │ │ │ │ ├── MttPageBrowserReq.h │ │ │ │ ├── MttPageBrowserReq.m │ │ │ │ ├── MttPageBrowserRsp.h │ │ │ │ ├── MttPageBrowserRsp.m │ │ │ │ ├── MttPageConfigReq.h │ │ │ │ ├── MttPageConfigReq.m │ │ │ │ ├── MttPageConfigRsp.h │ │ │ │ ├── MttPageConfigRsp.m │ │ │ │ ├── MttPageReq.h │ │ │ │ ├── MttPageReq.m │ │ │ │ ├── MttPageRsp.h │ │ │ │ ├── MttPageRsp.m │ │ │ │ ├── MttPerformanceInfo.h │ │ │ │ ├── MttPerformanceInfo.m │ │ │ │ ├── MttPicInfo.h │ │ │ │ ├── MttPicInfo.m │ │ │ │ ├── MttPicRsp.h │ │ │ │ ├── MttPicRsp.m │ │ │ │ ├── MttPing.h │ │ │ │ ├── MttPing.m │ │ │ │ ├── MttPluginBootResp.h │ │ │ │ ├── MttPluginBootResp.m │ │ │ │ ├── MttPluginInfo.h │ │ │ │ ├── MttPluginInfo.m │ │ │ │ ├── MttPluginInfoNew.h │ │ │ │ ├── MttPluginInfoNew.m │ │ │ │ ├── MttPluginRsp.h │ │ │ │ ├── MttPluginRsp.m │ │ │ │ ├── MttPluginRspNew.h │ │ │ │ ├── MttPluginRspNew.m │ │ │ │ ├── MttPluginVersion.h │ │ │ │ ├── MttPluginVersion.m │ │ │ │ ├── MttPushAppReqList.h │ │ │ │ ├── MttPushAppReqList.m │ │ │ │ ├── MttPushPortionFresh.h │ │ │ │ ├── MttPushPortionFresh.m │ │ │ │ ├── MttPushRespnoseContent.h │ │ │ │ ├── MttPushRespnoseContent.m │ │ │ │ ├── MttPushSysNotify.h │ │ │ │ ├── MttPushSysNotify.m │ │ │ │ ├── MttRefuse.h │ │ │ │ ├── MttRefuse.m │ │ │ │ ├── MttRelayPageReq.h │ │ │ │ ├── MttRelayPageReq.m │ │ │ │ ├── MttRelayPageRsp.h │ │ │ │ ├── MttRelayPageRsp.m │ │ │ │ ├── MttReply.h │ │ │ │ ├── MttReply.m │ │ │ │ ├── MttRequest.h │ │ │ │ ├── MttRequest.m │ │ │ │ ├── MttRequestFragment.h │ │ │ │ ├── MttRequestFragment.m │ │ │ │ ├── MttSTImagePolicy.h │ │ │ │ ├── MttSTImagePolicy.m │ │ │ │ ├── MttSTJSInfo.h │ │ │ │ ├── MttSTJSInfo.m │ │ │ │ ├── MttSTJSPDInfo.h │ │ │ │ ├── MttSTJSPDInfo.m │ │ │ │ ├── MttSTOperator.h │ │ │ │ ├── MttSTOperator.m │ │ │ │ ├── MttSTOperatorRsp.h │ │ │ │ ├── MttSTOperatorRsp.m │ │ │ │ ├── MttSTPV.h │ │ │ │ ├── MttSTPV.m │ │ │ │ ├── MttSTSingleMD5.h │ │ │ │ ├── MttSTSingleMD5.m │ │ │ │ ├── MttSTSpeedStatis.h │ │ │ │ ├── MttSTSpeedStatis.m │ │ │ │ ├── MttSTStat.h │ │ │ │ ├── MttSTStat.m │ │ │ │ ├── MttSTTime.h │ │ │ │ ├── MttSTTime.m │ │ │ │ ├── MttSTTotal.h │ │ │ │ ├── MttSTTotal.m │ │ │ │ ├── MttSearchInfo.h │ │ │ │ ├── MttSearchInfo.m │ │ │ │ ├── MttSearchReq.h │ │ │ │ ├── MttSearchReq.m │ │ │ │ ├── MttSearchRsp.h │ │ │ │ ├── MttSearchRsp.m │ │ │ │ ├── MttSearchTypeInfo.h │ │ │ │ ├── MttSearchTypeInfo.m │ │ │ │ ├── MttSearchTypeReq.h │ │ │ │ ├── MttSearchTypeReq.m │ │ │ │ ├── MttSearchTypeRsp.h │ │ │ │ ├── MttSearchTypeRsp.m │ │ │ │ ├── MttSecurityCheckType.h │ │ │ │ ├── MttSecurityCheckType.m │ │ │ │ ├── MttSoftAnalyseInfo.h │ │ │ │ ├── MttSoftAnalyseInfo.m │ │ │ │ ├── MttSpecialValue.h │ │ │ │ ├── MttSpecialValue.m │ │ │ │ ├── MttSplashReq.h │ │ │ │ ├── MttSplashReq.m │ │ │ │ ├── MttSplashRsp.h │ │ │ │ ├── MttSplashRsp.m │ │ │ │ ├── MttStatValue.h │ │ │ │ ├── MttStatValue.m │ │ │ │ ├── MttStaticConfigReq.h │ │ │ │ ├── MttStaticConfigReq.m │ │ │ │ ├── MttThirdUse.h │ │ │ │ ├── MttThirdUse.m │ │ │ │ ├── MttTipPushReq.h │ │ │ │ ├── MttTipPushReq.m │ │ │ │ ├── MttTipPushRsp.h │ │ │ │ ├── MttTipPushRsp.m │ │ │ │ ├── MttURLPV.h │ │ │ │ ├── MttURLPV.m │ │ │ │ ├── MttUpdateRsp.h │ │ │ │ ├── MttUpdateRsp.m │ │ │ │ ├── MttUserBase.h │ │ │ │ ├── MttUserBase.m │ │ │ │ ├── MttVerifyReq.h │ │ │ │ ├── MttVerifyReq.m │ │ │ │ ├── MttVerifyRsp.h │ │ │ │ ├── MttVerifyRsp.m │ │ │ │ ├── MttVerifyRspExt.h │ │ │ │ ├── MttVerifyRspExt.m │ │ │ │ ├── MttWeatherInfo.h │ │ │ │ ├── MttWeatherInfo.m │ │ │ │ ├── MttWeatherInfo4Mini.h │ │ │ │ ├── MttWeatherInfo4Mini.m │ │ │ │ ├── MttWeatherReq.h │ │ │ │ ├── MttWeatherReq.m │ │ │ │ ├── MttWeatherRsp.h │ │ │ │ ├── MttWeatherRsp.m │ │ │ │ ├── MttWeatherRsp4Mini.h │ │ │ │ └── MttWeatherRsp4Mini.m │ │ │ ├── WirelessUnifiedProtocolTests-Info.plist │ │ │ ├── WirelessUnifiedProtocolTests.h │ │ │ ├── WirelessUnifiedProtocolTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── tup-php │ │ ├── RequestF_tup.php │ │ ├── demo │ │ │ ├── Hello.tars │ │ │ ├── Hello_tup.php │ │ │ └── demo.php │ │ ├── makefile │ │ ├── tars.php │ │ ├── tars_exception.php │ │ ├── tars_header.php │ │ └── tup.php │ ├── tup-python │ │ ├── __init__.py │ │ ├── jmain.py │ │ ├── makefile │ │ ├── tars │ │ │ ├── EndpointF.py │ │ │ ├── QueryF.py │ │ │ ├── __TimeoutQueue.py │ │ │ ├── __async.py │ │ │ ├── __init__.py │ │ │ ├── __logger.py │ │ │ ├── __packet.py │ │ │ ├── __rpc.py │ │ │ ├── __tars.py │ │ │ ├── __trans.py │ │ │ ├── __tup.py │ │ │ ├── __util.py │ │ │ ├── core.py │ │ │ ├── exception.py │ │ │ └── tars │ │ │ │ ├── EndpointF.tars │ │ │ │ ├── QueryF.tars │ │ │ │ └── __init__.py │ │ ├── test_tars2python.py │ │ └── wmain.py │ └── tup-windows-cpp │ │ ├── RequestF.h │ │ ├── Tars.h │ │ ├── TarsDisplayer.h │ │ ├── TarsType.h │ │ ├── stdint.h │ │ └── tup.h └── web │ ├── docs │ ├── API.md │ └── README.md │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── qq │ │ ├── common │ │ ├── BindingResultMessage.java │ │ ├── Charsets.java │ │ ├── CodeEnableException.java │ │ ├── CodeEnableRuntimeException.java │ │ ├── CodeEnabled.java │ │ ├── ExceptionMessageTemplateManager.java │ │ ├── ExceptionMessageTempldate.java │ │ ├── ExceptionResponse.java │ │ ├── ExceptionResponseAttached.java │ │ ├── ResponseBodyMessageConverter.java │ │ ├── ServletRequestParameterException.java │ │ ├── StringFreeMarkerTemplateLoader.java │ │ ├── TCPClient.java │ │ ├── TimestampString.java │ │ ├── WrappedController.java │ │ └── YesOrNoBooleanConverter.java │ │ └── tars │ │ ├── db │ │ ├── AdapterMapper.java │ │ ├── ConfigMapper.java │ │ ├── NotifyMapper.java │ │ ├── PatchMapper.java │ │ ├── ServerMapper.java │ │ ├── TaskMapper.java │ │ └── TemplateMapper.java │ │ ├── entity │ │ ├── AdapterConf.java │ │ ├── ConfigFile.java │ │ ├── ConfigFileHistory.java │ │ ├── ConfigRef.java │ │ ├── ConfigRefExt.java │ │ ├── ProfileTemplate.java │ │ ├── ServerConf.java │ │ ├── ServerNotify.java │ │ ├── ServerPatch.java │ │ ├── Task.java │ │ └── TaskItem.java │ │ ├── exception │ │ ├── DBConnectTimeoutException.java │ │ ├── DBConnectTimeoutRuntimeException.java │ │ ├── DBConsistencyException.java │ │ ├── DBConsistencyRuntimeException.java │ │ ├── DBOtherException.java │ │ ├── DBOtherRuntimeException.java │ │ ├── DBSqlException.java │ │ ├── DBSqlRuntimeException.java │ │ ├── DBUpdateNothingException.java │ │ ├── DBUpdateNothingRuntimeException.java │ │ ├── DiskFullException.java │ │ ├── DiskFullRuntimeException.java │ │ ├── DiskOtherException.java │ │ ├── DiskOtherRuntimeException.java │ │ ├── TARSRequestException.java │ │ └── TARSRequestRuntimeException.java │ │ ├── generated │ │ └── tars │ │ │ ├── AdminRegPrx.java │ │ │ ├── AdminRegPrxCallback.java │ │ │ ├── ConfigInfo.java │ │ │ ├── ConfigPrx.java │ │ │ ├── ConfigPrxCallback.java │ │ │ ├── EMTaskCommand.java │ │ │ ├── EMTaskItemStatus.java │ │ │ ├── EMTaskStatus.java │ │ │ ├── GetConfigListInfo.java │ │ │ ├── LoadInfo.java │ │ │ ├── NodeInfo.java │ │ │ ├── PatchInfo.java │ │ │ ├── PatchRequest.java │ │ │ ├── PreparePatchInfo.java │ │ │ ├── PreparePatchRequest.java │ │ │ ├── ServerState.java │ │ │ ├── ServerStateDesc.java │ │ │ ├── ServerStateInfo.java │ │ │ ├── TaskItemReq.java │ │ │ ├── TaskItemRsp.java │ │ │ ├── TaskReq.java │ │ │ ├── TaskRsp.java │ │ │ └── tarsErrCode.java │ │ ├── service │ │ ├── NotifyService.java │ │ ├── PatchService.java │ │ ├── ScheduleService.java │ │ ├── SetTriple.java │ │ ├── SystemConfigService.java │ │ ├── adapter │ │ │ ├── AdapterService.java │ │ │ ├── AddAdapterConf.java │ │ │ └── UpdateAdapterConf.java │ │ ├── admin │ │ │ ├── AdminService.java │ │ │ ├── CommandResult.java │ │ │ └── CommandTarget.java │ │ ├── config │ │ │ ├── AddConfigFile.java │ │ │ ├── ConfigService.java │ │ │ └── UpdateConfigFile.java │ │ ├── expand │ │ │ ├── ExpandPreviewServer.java │ │ │ ├── ExpandServer.java │ │ │ ├── ExpandServerPreview.java │ │ │ └── ExpandServerService.java │ │ ├── monitor │ │ │ ├── TARSPropertyMonitorCondition.java │ │ │ ├── TARSPropertyMonitorDataRow.java │ │ │ ├── TARSPropertyMonitorService.java │ │ │ ├── TARSStatMonitorCondition.java │ │ │ ├── TARSStatMonitorDataRow.java │ │ │ └── TARSStatMonitorService.java │ │ ├── server │ │ │ ├── DeployAdapter.java │ │ │ ├── DeployServer.java │ │ │ ├── ServerService.java │ │ │ └── UpdateServer.java │ │ ├── task │ │ │ ├── AddTask.java │ │ │ ├── AddTaskItem.java │ │ │ ├── TaskItemResp.java │ │ │ ├── TaskResp.java │ │ │ └── TaskService.java │ │ ├── template │ │ │ ├── AddTemplate.java │ │ │ ├── TemplateService.java │ │ │ └── UpdateTemplate.java │ │ └── tree │ │ │ ├── TreeNode.java │ │ │ └── TreeService.java │ │ ├── tools │ │ ├── CodecUtils.java │ │ ├── DateTime.java │ │ └── SystemUtils.java │ │ ├── validate │ │ ├── Application.java │ │ ├── ApplicationValidator.java │ │ ├── ConfigFileName.java │ │ ├── ConfigFileNameValidator.java │ │ ├── DeployServer.java │ │ ├── DeployServerValidator.java │ │ ├── EnableSet.java │ │ ├── EndPoint.java │ │ ├── ObjName.java │ │ ├── ObjNameValidator.java │ │ ├── ServerName.java │ │ ├── ServerNameValidator.java │ │ ├── SetArea.java │ │ ├── SetAreaValidator.java │ │ ├── SetGroup.java │ │ ├── SetGroupValidator.java │ │ ├── SetName.java │ │ ├── SetNameValidator.java │ │ ├── Value.java │ │ └── ValueValidator.java │ │ └── web │ │ ├── controller │ │ ├── DeployController.java │ │ ├── ExpandController.java │ │ ├── IndexController.java │ │ ├── MonitorController.java │ │ ├── TaskController.java │ │ ├── TreeController.java │ │ ├── adapter │ │ │ ├── AdapterConfView.java │ │ │ └── AdapterController.java │ │ ├── config │ │ │ ├── ConfigController.java │ │ │ ├── ConfigFileHistoryView.java │ │ │ └── ConfigFileView.java │ │ ├── notify │ │ │ ├── NotifyController.java │ │ │ └── ServerNotifyView.java │ │ ├── patch │ │ │ ├── PatchController.java │ │ │ ├── ServerPatchView.java │ │ │ └── UploadController.java │ │ ├── server │ │ │ ├── ServerConfView.java │ │ │ └── ServerController.java │ │ └── template │ │ │ ├── ProfileTemplateView.java │ │ │ └── TemplateController.java │ │ └── filter │ │ └── WrapRequestFilter.java │ ├── resources │ ├── app.config.properties │ ├── conf-dozer │ │ └── dozer-mapper-base.xml │ ├── conf-mybatis │ │ ├── mybatis-base.xml │ │ ├── mybatis-mapper-adapter.xml │ │ ├── mybatis-mapper-config.xml │ │ ├── mybatis-mapper-notify.xml │ │ ├── mybatis-mapper-patch.xml │ │ ├── mybatis-mapper-server.xml │ │ ├── mybatis-mapper-task.xml │ │ └── mybatis-mapper-template.xml │ ├── conf-spring │ │ ├── spring-base.xml │ │ ├── spring-context-aop.xml │ │ ├── spring-context-bean.xml │ │ ├── spring-context-dao.xml │ │ ├── spring-context-datasource.xml │ │ └── spring-context-mvc.xml │ ├── frame.zip │ ├── log4j.properties │ ├── tars.conf │ └── tars │ │ ├── AdminReg.tars │ │ ├── ConfigF.tars │ │ └── NodeDescriptor.tars │ └── webapp │ ├── WEB-INF │ └── web.xml │ ├── chart_test.html │ ├── css │ ├── bootstrap.min.css │ ├── bootstrap_datepicker.min.css │ ├── bootstrap_table.min.css │ ├── style.css │ └── zTreeStyle.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── history_list.html │ ├── img │ ├── complete.gif │ ├── line_conn.gif │ ├── loading.gif │ ├── loading2.gif │ ├── metro.gif │ ├── metro.png │ └── sprite.png │ ├── js │ ├── bootstrap.min.js │ ├── bootstrap_datepicker.min.js │ ├── bootstrap_table.min.js │ ├── chart.min.js │ ├── common.js │ ├── index.js │ ├── jquery.min.js │ ├── jquery.ztree.core.min.js │ ├── jquery.ztree.excheck.min.js │ ├── npm.js │ ├── server_list.js │ ├── service_cfg.js │ ├── tars_tree.js │ ├── template.js │ └── tree_search.js │ ├── monitor.html │ ├── pages │ ├── exception.ftl │ ├── include │ │ ├── header.ftl │ │ ├── sider.ftl │ │ └── sider2.ftl │ ├── index.ftl │ └── op_manage.ftl │ ├── property_monitor.html │ ├── pub_manage.html │ ├── server_deploy.html │ ├── server_expand.html │ ├── server_list.html │ ├── server_offline.html │ ├── service_cfg.html │ └── template_manage.html ├── benchmark ├── block-357238.json ├── package.json ├── script.js └── serialization.js ├── bitcore-lib.js ├── bower.json ├── docs ├── address.md ├── block.md ├── browser.md ├── crypto.md ├── encoding.md ├── examples.md ├── hierarchical.md ├── index.md ├── networks.md ├── privatekey.md ├── publickey.md ├── script.md ├── transaction.md ├── unit.md ├── unspentoutput.md └── uri.md ├── gulpfile.js ├── index.js ├── karma.conf.js ├── lib ├── address.js ├── block │ ├── block.js │ ├── blockheader.js │ ├── index.js │ └── merkleblock.js ├── crypto │ ├── bn.js │ ├── ecdsa.js │ ├── hash.js │ ├── point.js │ ├── random.js │ └── signature.js ├── encoding │ ├── base58.js │ ├── base58check.js │ ├── bufferreader.js │ ├── bufferwriter.js │ └── varint.js ├── errors │ ├── index.js │ └── spec.js ├── hdprivatekey.js ├── hdpublickey.js ├── networks.js ├── opcode.js ├── privatekey.js ├── publickey.js ├── script │ ├── index.js │ ├── interpreter.js │ └── script.js ├── transaction │ ├── index.js │ ├── input │ │ ├── index.js │ │ ├── input.js │ │ ├── multisig.js │ │ ├── multisigscripthash.js │ │ ├── publickey.js │ │ └── publickeyhash.js │ ├── output.js │ ├── sighash.js │ ├── sighashwitness.js │ ├── signature.js │ ├── transaction.js │ └── unspentoutput.js ├── unit.js ├── uri.js └── util │ ├── buffer.js │ ├── js.js │ └── preconditions.js ├── libtorrent ├── .doozer.json ├── .github │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTING.rst ├── COPYING ├── ChangeLog ├── Jamfile ├── Jamroot.jam ├── LICENSE ├── LibtorrentRasterbarConfig.cmake.in ├── Makefile.am ├── NEWS ├── README-2.MD ├── README.rst ├── appveyor.yml ├── autotool.sh ├── bindings │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.txt │ ├── c │ │ ├── Jamfile │ │ ├── library.cpp │ │ ├── libtorrent.h │ │ └── simple_client.c │ └── python │ │ ├── CMakeLists.txt │ │ ├── Jamfile │ │ ├── Makefile.am │ │ ├── client.py │ │ ├── compile_cmd.in │ │ ├── compile_flags.in │ │ ├── link_flags.in │ │ ├── make_torrent.py │ │ ├── setup.py │ │ ├── setup.py.cmake.in │ │ ├── simple_client.py │ │ ├── src │ │ ├── alert.cpp │ │ ├── boost_python.hpp │ │ ├── bytes.hpp │ │ ├── converters.cpp │ │ ├── create_torrent.cpp │ │ ├── datetime.cpp │ │ ├── entry.cpp │ │ ├── error_code.cpp │ │ ├── fingerprint.cpp │ │ ├── gil.hpp │ │ ├── ip_filter.cpp │ │ ├── magnet_uri.cpp │ │ ├── module.cpp │ │ ├── optional.hpp │ │ ├── peer_info.cpp │ │ ├── session.cpp │ │ ├── session_settings.cpp │ │ ├── sha1_hash.cpp │ │ ├── string.cpp │ │ ├── torrent_handle.cpp │ │ ├── torrent_info.cpp │ │ ├── torrent_status.cpp │ │ ├── utility.cpp │ │ └── version.cpp │ │ └── test.py ├── bootstrap.sh ├── build_dist.sh ├── cmake │ └── Modules │ │ ├── FindLibGcrypt.cmake │ │ ├── GeneratePkgConfig.cmake │ │ ├── GeneratePkgConfig │ │ ├── generate-pkg-config.cmake.in │ │ ├── pkg-config.cmake.in │ │ └── target-compile-settings.cmake.in │ │ └── ucm_flags.cmake ├── configure.ac ├── docs │ ├── bitcoin.png │ ├── building.rst │ ├── client_test.png │ ├── client_test.rst │ ├── complete_bit_prefixes.png │ ├── contributing.rst │ ├── cwnd.png │ ├── cwnd_thumb.png │ ├── delays.png │ ├── delays_thumb.png │ ├── dht_extensions.rst │ ├── dht_rss.rst │ ├── dht_sec.rst │ ├── dht_store.rst │ ├── disk_cache.diagram │ ├── examples.rst │ ├── extension_protocol.rst │ ├── features.rst │ ├── gen_reference_doc.py │ ├── gen_settings_doc.py │ ├── gen_stats_doc.py │ ├── gen_todo.py │ ├── hacking.diagram │ ├── hacking.rst │ ├── hash_distribution.png │ ├── hunspell │ │ ├── en_US.aff │ │ ├── en_US.dic │ │ └── libtorrent.dic │ ├── img │ │ ├── bg.png │ │ ├── blue_bottom.png │ │ ├── blue_top.png │ │ ├── dotline.gif │ │ ├── minus.gif │ │ └── orange.png │ ├── index.rst │ ├── ip_id_v4.png │ ├── ip_id_v6.png │ ├── join_rst.py │ ├── logo │ │ ├── libtorrent-blue.png │ │ ├── libtorrent-green.png │ │ ├── libtorrent-red.png │ │ ├── libtorrent-yellow.png │ │ ├── libtorrent.svg │ │ ├── license │ │ ├── monochrome.png │ │ ├── monochrome.svg │ │ └── monochrome2.png │ ├── make_thumb.sh │ ├── makefile │ ├── manual.rst │ ├── merkle_tree.graffle │ ├── merkle_tree.png │ ├── our_delay_base.png │ ├── our_delay_base_thumb.png │ ├── projects.rst │ ├── python_binding.rst │ ├── read_disk_buffers.diagram │ ├── read_disk_buffers.png │ ├── rst.css │ ├── storage.diagram │ ├── streaming.rst │ ├── style.css │ ├── stylesheet │ ├── template.txt │ ├── template2.txt │ ├── troubleshooting.dot │ ├── troubleshooting.rst │ ├── troubleshooting_thumb.png │ ├── tuning.rst │ ├── tutorial.rst │ ├── udp_tracker_protocol.rst │ ├── upgrade_to_1.2.rst │ ├── utp.rst │ ├── utp_stack.diagram │ ├── write_disk_buffers.diagram │ └── write_disk_buffers.png ├── ed25519 │ ├── readme.md │ ├── src │ │ ├── add_scalar.cpp │ │ ├── fe.cpp │ │ ├── fe.h │ │ ├── fixedint.h │ │ ├── ge.cpp │ │ ├── ge.h │ │ ├── key_exchange.cpp │ │ ├── keypair.cpp │ │ ├── precomp_data.h │ │ ├── sc.cpp │ │ ├── sc.h │ │ ├── sign.cpp │ │ └── verify.cpp │ └── test.c ├── examples │ ├── CMakeLists.txt │ ├── Jamfile │ ├── Makefile.am │ ├── bt-get.cpp │ ├── bt-get2.cpp │ ├── client_test.cpp │ ├── cmake │ │ └── FindLibtorrentRasterbar.cmake │ ├── connection_tester.cpp │ ├── dump_torrent.cpp │ ├── make_torrent.cpp │ ├── print.cpp │ ├── print.hpp │ ├── run_benchmarks.py │ ├── session_view.cpp │ ├── session_view.hpp │ ├── simple_client.cpp │ ├── stats_counters.cpp │ ├── torrent_view.cpp │ ├── torrent_view.hpp │ └── upnp_test.cpp ├── include │ └── libtorrent │ │ ├── ConvertUTF.h │ │ ├── Makefile.am │ │ ├── add_torrent_params.hpp │ │ ├── address.hpp │ │ ├── alert.hpp │ │ ├── alert_manager.hpp │ │ ├── alert_types.hpp │ │ ├── allocator.hpp │ │ ├── announce_entry.hpp │ │ ├── assert.hpp │ │ ├── aux_ │ │ ├── aligned_storage.hpp │ │ ├── aligned_union.hpp │ │ ├── alloca.hpp │ │ ├── allocating_handler.hpp │ │ ├── array.hpp │ │ ├── bind_to_device.hpp │ │ ├── block_cache_reference.hpp │ │ ├── byteswap.hpp │ │ ├── cppint_import_export.hpp │ │ ├── cpuid.hpp │ │ ├── deferred_handler.hpp │ │ ├── deque.hpp │ │ ├── dev_random.hpp │ │ ├── disable_warnings_pop.hpp │ │ ├── disable_warnings_push.hpp │ │ ├── disk_job_fence.hpp │ │ ├── escape_string.hpp │ │ ├── export.hpp │ │ ├── ffs.hpp │ │ ├── file_progress.hpp │ │ ├── has_block.hpp │ │ ├── io.hpp │ │ ├── ip_notifier.hpp │ │ ├── listen_socket_handle.hpp │ │ ├── lsd.hpp │ │ ├── max_path.hpp │ │ ├── merkle.hpp │ │ ├── noexcept_movable.hpp │ │ ├── numeric_cast.hpp │ │ ├── openssl.hpp │ │ ├── path.hpp │ │ ├── portmap.hpp │ │ ├── proxy_settings.hpp │ │ ├── range.hpp │ │ ├── route.h │ │ ├── scope_end.hpp │ │ ├── session_call.hpp │ │ ├── session_impl.hpp │ │ ├── session_interface.hpp │ │ ├── session_settings.hpp │ │ ├── session_udp_sockets.hpp │ │ ├── set_socket_buffer.hpp │ │ ├── socket_type.hpp │ │ ├── storage_piece_set.hpp │ │ ├── storage_utils.hpp │ │ ├── string_ptr.hpp │ │ ├── suggest_piece.hpp │ │ ├── throw.hpp │ │ ├── time.hpp │ │ ├── torrent_impl.hpp │ │ ├── typed_span.hpp │ │ ├── unique_ptr.hpp │ │ ├── vector.hpp │ │ ├── win_crypto_provider.hpp │ │ └── win_util.hpp │ │ ├── bandwidth_limit.hpp │ │ ├── bandwidth_manager.hpp │ │ ├── bandwidth_queue_entry.hpp │ │ ├── bandwidth_socket.hpp │ │ ├── bdecode.hpp │ │ ├── bencode.hpp │ │ ├── bitfield.hpp │ │ ├── block_cache.hpp │ │ ├── bloom_filter.hpp │ │ ├── broadcast_socket.hpp │ │ ├── bt_peer_connection.hpp │ │ ├── buffer.hpp │ │ ├── chained_buffer.hpp │ │ ├── choker.hpp │ │ ├── close_reason.hpp │ │ ├── config.hpp │ │ ├── copy_ptr.hpp │ │ ├── crc32c.hpp │ │ ├── create_torrent.hpp │ │ ├── deadline_timer.hpp │ │ ├── debug.hpp │ │ ├── disk_buffer_holder.hpp │ │ ├── disk_buffer_pool.hpp │ │ ├── disk_interface.hpp │ │ ├── disk_io_job.hpp │ │ ├── disk_io_thread.hpp │ │ ├── disk_io_thread_pool.hpp │ │ ├── disk_job_pool.hpp │ │ ├── disk_observer.hpp │ │ ├── download_priority.hpp │ │ ├── ed25519.hpp │ │ ├── entry.hpp │ │ ├── enum_net.hpp │ │ ├── error.hpp │ │ ├── error_code.hpp │ │ ├── extensions.hpp │ │ ├── extensions │ │ ├── smart_ban.hpp │ │ ├── ut_metadata.hpp │ │ └── ut_pex.hpp │ │ ├── file.hpp │ │ ├── file_pool.hpp │ │ ├── file_storage.hpp │ │ ├── fingerprint.hpp │ │ ├── flags.hpp │ │ ├── fwd.hpp │ │ ├── gzip.hpp │ │ ├── hasher.hpp │ │ ├── hasher512.hpp │ │ ├── heterogeneous_queue.hpp │ │ ├── hex.hpp │ │ ├── http_connection.hpp │ │ ├── http_parser.hpp │ │ ├── http_seed_connection.hpp │ │ ├── http_stream.hpp │ │ ├── http_tracker_connection.hpp │ │ ├── i2p_stream.hpp │ │ ├── identify_client.hpp │ │ ├── instantiate_connection.hpp │ │ ├── invariant_check.hpp │ │ ├── io.hpp │ │ ├── io_service.hpp │ │ ├── io_service_fwd.hpp │ │ ├── ip_filter.hpp │ │ ├── ip_voter.hpp │ │ ├── kademlia │ │ ├── dht_observer.hpp │ │ ├── dht_settings.hpp │ │ ├── dht_state.hpp │ │ ├── dht_storage.hpp │ │ ├── dht_tracker.hpp │ │ ├── direct_request.hpp │ │ ├── dos_blocker.hpp │ │ ├── ed25519.hpp │ │ ├── find_data.hpp │ │ ├── get_item.hpp │ │ ├── get_peers.hpp │ │ ├── io.hpp │ │ ├── item.hpp │ │ ├── msg.hpp │ │ ├── node.hpp │ │ ├── node_entry.hpp │ │ ├── node_id.hpp │ │ ├── observer.hpp │ │ ├── put_data.hpp │ │ ├── refresh.hpp │ │ ├── routing_table.hpp │ │ ├── rpc_manager.hpp │ │ ├── sample_infohashes.hpp │ │ ├── traversal_algorithm.hpp │ │ └── types.hpp │ │ ├── lazy_entry.hpp │ │ ├── link.hpp │ │ ├── linked_list.hpp │ │ ├── lsd.hpp │ │ ├── magnet_uri.hpp │ │ ├── natpmp.hpp │ │ ├── netlink.hpp │ │ ├── operations.hpp │ │ ├── optional.hpp │ │ ├── packet_buffer.hpp │ │ ├── packet_pool.hpp │ │ ├── parse_url.hpp │ │ ├── part_file.hpp │ │ ├── pe_crypto.hpp │ │ ├── peer.hpp │ │ ├── peer_class.hpp │ │ ├── peer_class_set.hpp │ │ ├── peer_class_type_filter.hpp │ │ ├── peer_connection.hpp │ │ ├── peer_connection_handle.hpp │ │ ├── peer_connection_interface.hpp │ │ ├── peer_id.hpp │ │ ├── peer_info.hpp │ │ ├── peer_list.hpp │ │ ├── peer_request.hpp │ │ ├── performance_counters.hpp │ │ ├── pex_flags.hpp │ │ ├── piece_block.hpp │ │ ├── piece_block_progress.hpp │ │ ├── piece_picker.hpp │ │ ├── platform_util.hpp │ │ ├── portmap.hpp │ │ ├── proxy_base.hpp │ │ ├── puff.hpp │ │ ├── random.hpp │ │ ├── read_resume_data.hpp │ │ ├── receive_buffer.hpp │ │ ├── request_blocks.hpp │ │ ├── resolve_links.hpp │ │ ├── resolver.hpp │ │ ├── resolver_interface.hpp │ │ ├── session.hpp │ │ ├── session_handle.hpp │ │ ├── session_settings.hpp │ │ ├── session_stats.hpp │ │ ├── session_status.hpp │ │ ├── session_types.hpp │ │ ├── settings_pack.hpp │ │ ├── sha1.hpp │ │ ├── sha1_hash.hpp │ │ ├── sha512.hpp │ │ ├── sliding_average.hpp │ │ ├── socket.hpp │ │ ├── socket_io.hpp │ │ ├── socks5_stream.hpp │ │ ├── span.hpp │ │ ├── ssl_stream.hpp │ │ ├── stack_allocator.hpp │ │ ├── stat.hpp │ │ ├── stat_cache.hpp │ │ ├── storage.hpp │ │ ├── storage_defs.hpp │ │ ├── string_util.hpp │ │ ├── string_view.hpp │ │ ├── tailqueue.hpp │ │ ├── time.hpp │ │ ├── timestamp_history.hpp │ │ ├── torrent.hpp │ │ ├── torrent_flags.hpp │ │ ├── torrent_handle.hpp │ │ ├── torrent_info.hpp │ │ ├── torrent_peer.hpp │ │ ├── torrent_peer_allocator.hpp │ │ ├── torrent_status.hpp │ │ ├── tracker_manager.hpp │ │ ├── udp_socket.hpp │ │ ├── udp_tracker_connection.hpp │ │ ├── union_endpoint.hpp │ │ ├── units.hpp │ │ ├── upnp.hpp │ │ ├── utf8.hpp │ │ ├── utp_socket_manager.hpp │ │ ├── utp_stream.hpp │ │ ├── vector_utils.hpp │ │ ├── version.hpp │ │ ├── web_connection_base.hpp │ │ ├── web_peer_connection.hpp │ │ ├── write_resume_data.hpp │ │ └── xml_parse.hpp ├── libtorrent-rasterbar.pc.in ├── m4 │ ├── ax_boost_base.m4 │ ├── ax_boost_python.m4 │ ├── ax_boost_system.m4 │ ├── ax_check_openssl.m4 │ ├── ax_cxx_compile_stdcxx.m4 │ ├── ax_cxx_compile_stdcxx_11.m4 │ ├── ax_pthread.m4 │ ├── ax_python_devel.m4 │ ├── config.rpath │ ├── gettext-lib.m4 │ ├── iconv.m4 │ └── pkgconfig.m4 ├── setup.py ├── simulation │ ├── Jamfile │ ├── create_torrent.cpp │ ├── create_torrent.hpp │ ├── fake_peer.hpp │ ├── make_proxy_settings.hpp │ ├── setup_dht.cpp │ ├── setup_dht.hpp │ ├── setup_swarm.cpp │ ├── setup_swarm.hpp │ ├── test_auto_manage.cpp │ ├── test_checking.cpp │ ├── test_dht.cpp │ ├── test_dht_bootstrap.cpp │ ├── test_dht_rate_limit.cpp │ ├── test_dht_storage.cpp │ ├── test_error_handling.cpp │ ├── test_fast_extensions.cpp │ ├── test_file_pool.cpp │ ├── test_http_connection.cpp │ ├── test_ip_filter.cpp │ ├── test_metadata_extension.cpp │ ├── test_optimistic_unchoke.cpp │ ├── test_pause.cpp │ ├── test_pe_crypto.cpp │ ├── test_save_resume.cpp │ ├── test_session.cpp │ ├── test_socks5.cpp │ ├── test_super_seeding.cpp │ ├── test_swarm.cpp │ ├── test_thread_pool.cpp │ ├── test_torrent_status.cpp │ ├── test_tracker.cpp │ ├── test_transfer.cpp │ ├── test_utp.cpp │ ├── test_web_seed.cpp │ ├── utils.cpp │ └── utils.hpp ├── sonar-project.properties ├── src │ ├── ConvertUTF.cpp │ ├── Makefile.am │ ├── add_torrent_params.cpp │ ├── alert.cpp │ ├── alert_manager.cpp │ ├── allocator.cpp │ ├── announce_entry.cpp │ ├── assert.cpp │ ├── bandwidth_limit.cpp │ ├── bandwidth_manager.cpp │ ├── bandwidth_queue_entry.cpp │ ├── bdecode.cpp │ ├── bitfield.cpp │ ├── block_cache.cpp │ ├── bloom_filter.cpp │ ├── broadcast_socket.cpp │ ├── bt_peer_connection.cpp │ ├── chained_buffer.cpp │ ├── choker.cpp │ ├── close_reason.cpp │ ├── cpuid.cpp │ ├── crc32c.cpp │ ├── create_torrent.cpp │ ├── disk_buffer_holder.cpp │ ├── disk_buffer_pool.cpp │ ├── disk_io_job.cpp │ ├── disk_io_thread.cpp │ ├── disk_io_thread_pool.cpp │ ├── disk_job_fence.cpp │ ├── disk_job_pool.cpp │ ├── entry.cpp │ ├── enum_net.cpp │ ├── error_code.cpp │ ├── escape_string.cpp │ ├── ffs.cpp │ ├── file.cpp │ ├── file_pool.cpp │ ├── file_progress.cpp │ ├── file_storage.cpp │ ├── fingerprint.cpp │ ├── gzip.cpp │ ├── hasher.cpp │ ├── hasher512.cpp │ ├── hex.cpp │ ├── http_connection.cpp │ ├── http_parser.cpp │ ├── http_seed_connection.cpp │ ├── http_stream.cpp │ ├── http_tracker_connection.cpp │ ├── i2p_stream.cpp │ ├── identify_client.cpp │ ├── instantiate_connection.cpp │ ├── ip_filter.cpp │ ├── ip_notifier.cpp │ ├── ip_voter.cpp │ ├── kademlia │ │ ├── dht_settings.cpp │ │ ├── dht_state.cpp │ │ ├── dht_storage.cpp │ │ ├── dht_tracker.cpp │ │ ├── dos_blocker.cpp │ │ ├── ed25519.cpp │ │ ├── find_data.cpp │ │ ├── get_item.cpp │ │ ├── get_peers.cpp │ │ ├── item.cpp │ │ ├── msg.cpp │ │ ├── node.cpp │ │ ├── node_entry.cpp │ │ ├── node_id.cpp │ │ ├── put_data.cpp │ │ ├── refresh.cpp │ │ ├── routing_table.cpp │ │ ├── rpc_manager.cpp │ │ ├── sample_infohashes.cpp │ │ └── traversal_algorithm.cpp │ ├── lazy_bdecode.cpp │ ├── listen_socket_handle.cpp │ ├── lsd.cpp │ ├── magnet_uri.cpp │ ├── merkle.cpp │ ├── natpmp.cpp │ ├── packet_buffer.cpp │ ├── parse_url.cpp │ ├── part_file.cpp │ ├── path.cpp │ ├── pe_crypto.cpp │ ├── peer_class.cpp │ ├── peer_class_set.cpp │ ├── peer_connection.cpp │ ├── peer_connection_handle.cpp │ ├── peer_info.cpp │ ├── peer_list.cpp │ ├── performance_counters.cpp │ ├── piece_picker.cpp │ ├── platform_util.cpp │ ├── proxy_base.cpp │ ├── proxy_settings.cpp │ ├── puff.cpp │ ├── random.cpp │ ├── read_resume_data.cpp │ ├── receive_buffer.cpp │ ├── request_blocks.cpp │ ├── resolve_links.cpp │ ├── resolver.cpp │ ├── session.cpp │ ├── session_call.cpp │ ├── session_handle.cpp │ ├── session_impl.cpp │ ├── session_settings.cpp │ ├── session_stats.cpp │ ├── session_udp_sockets.cpp │ ├── settings_pack.cpp │ ├── sha1.cpp │ ├── sha1_hash.cpp │ ├── sha512.cpp │ ├── smart_ban.cpp │ ├── socket_io.cpp │ ├── socket_type.cpp │ ├── socks5_stream.cpp │ ├── stack_allocator.cpp │ ├── stat.cpp │ ├── stat_cache.cpp │ ├── storage.cpp │ ├── storage_piece_set.cpp │ ├── storage_utils.cpp │ ├── string_util.cpp │ ├── time.cpp │ ├── timestamp_history.cpp │ ├── torrent.cpp │ ├── torrent_handle.cpp │ ├── torrent_info.cpp │ ├── torrent_peer.cpp │ ├── torrent_peer_allocator.cpp │ ├── torrent_status.cpp │ ├── tracker_manager.cpp │ ├── udp_socket.cpp │ ├── udp_tracker_connection.cpp │ ├── upnp.cpp │ ├── ut_metadata.cpp │ ├── ut_pex.cpp │ ├── utf8.cpp │ ├── utp_socket_manager.cpp │ ├── utp_stream.cpp │ ├── version.cpp │ ├── web_connection_base.cpp │ ├── web_peer_connection.cpp │ ├── write_resume_data.cpp │ └── xml_parse.cpp ├── test │ ├── CMakeLists.txt │ ├── Jamfile │ ├── Makefile.am │ ├── bittorrent_peer.cpp │ ├── bittorrent_peer.hpp │ ├── corrupt.gz │ ├── dht_server.cpp │ ├── dht_server.hpp │ ├── enum_if.cpp │ ├── http.py │ ├── invalid1.gz │ ├── main.cpp │ ├── make_torrent.cpp │ ├── make_torrent.hpp │ ├── mutable_test_torrents │ │ ├── test1.torrent │ │ ├── test1_pad_files.torrent │ │ ├── test1_single.torrent │ │ ├── test1_single_padded.torrent │ │ ├── test2.torrent │ │ ├── test2_pad_files.torrent │ │ ├── test3.torrent │ │ └── test3_pad_files.torrent │ ├── peer_server.cpp │ ├── peer_server.hpp │ ├── print_alerts.cpp │ ├── print_alerts.hpp │ ├── root1.xml │ ├── root2.xml │ ├── root3.xml │ ├── settings.cpp │ ├── settings.hpp │ ├── setup_transfer.cpp │ ├── setup_transfer.hpp │ ├── socks.py │ ├── ssl │ │ ├── cert_request.pem │ │ ├── dhparams.pem │ │ ├── invalid_peer_certificate.pem │ │ ├── invalid_peer_private_key.pem │ │ ├── peer_certificate.pem │ │ ├── peer_private_key.pem │ │ ├── regenerate_test_certificate.sh │ │ ├── root_ca_cert.pem │ │ ├── root_ca_private.pem │ │ └── server.pem │ ├── swarm_suite.cpp │ ├── swarm_suite.hpp │ ├── test.cpp │ ├── test.hpp │ ├── test_alert_manager.cpp │ ├── test_alert_types.cpp │ ├── test_alloca.cpp │ ├── test_auto_unchoke.cpp │ ├── test_bandwidth_limiter.cpp │ ├── test_bdecode.cpp │ ├── test_bencoding.cpp │ ├── test_bitfield.cpp │ ├── test_block_cache.cpp │ ├── test_bloom_filter.cpp │ ├── test_buffer.cpp │ ├── test_checking.cpp │ ├── test_crc32.cpp │ ├── test_create_torrent.cpp │ ├── test_dht.cpp │ ├── test_dht_storage.cpp │ ├── test_direct_dht.cpp │ ├── test_dos_blocker.cpp │ ├── test_ed25519.cpp │ ├── test_enum_net.cpp │ ├── test_fast_extension.cpp │ ├── test_fence.cpp │ ├── test_ffs.cpp │ ├── test_file.cpp │ ├── test_file_progress.cpp │ ├── test_file_storage.cpp │ ├── test_flags.cpp │ ├── test_gzip.cpp │ ├── test_hasher.cpp │ ├── test_hasher512.cpp │ ├── test_heterogeneous_queue.cpp │ ├── test_http_connection.cpp │ ├── test_http_parser.cpp │ ├── test_identify_client.cpp │ ├── test_ip_filter.cpp │ ├── test_ip_voter.cpp │ ├── test_linked_list.cpp │ ├── test_listen_socket.cpp │ ├── test_lsd.cpp │ ├── test_magnet.cpp │ ├── test_merkle.cpp │ ├── test_natpmp.cpp │ ├── test_packet_buffer.cpp │ ├── test_part_file.cpp │ ├── test_pe_crypto.cpp │ ├── test_peer_classes.cpp │ ├── test_peer_list.cpp │ ├── test_peer_priority.cpp │ ├── test_pex.cpp │ ├── test_piece_picker.cpp │ ├── test_primitives.cpp │ ├── test_priority.cpp │ ├── test_privacy.cpp │ ├── test_random.cpp │ ├── test_read_piece.cpp │ ├── test_read_resume.cpp │ ├── test_receive_buffer.cpp │ ├── test_recheck.cpp │ ├── test_remap_files.cpp │ ├── test_remove_torrent.cpp │ ├── test_resolve_links.cpp │ ├── test_resume.cpp │ ├── test_session.cpp │ ├── test_session_params.cpp │ ├── test_settings_pack.cpp │ ├── test_sha1_hash.cpp │ ├── test_sliding_average.cpp │ ├── test_socket_io.cpp │ ├── test_span.cpp │ ├── test_ssl.cpp │ ├── test_stack_allocator.cpp │ ├── test_stat_cache.cpp │ ├── test_storage.cpp │ ├── test_string.cpp │ ├── test_tailqueue.cpp │ ├── test_threads.cpp │ ├── test_time.cpp │ ├── test_time_critical.cpp │ ├── test_timestamp_history.cpp │ ├── test_torrent.cpp │ ├── test_torrent_info.cpp │ ├── test_torrents │ │ ├── absolute_filename.torrent │ │ ├── backslash_path.torrent │ │ ├── bad_name.torrent │ │ ├── base.torrent │ │ ├── creation_date.torrent │ │ ├── duplicate_files.torrent │ │ ├── duplicate_web_seeds.torrent │ │ ├── empty_httpseed.torrent │ │ ├── empty_path.torrent │ │ ├── empty_path_multi.torrent │ │ ├── hidden_parent_path.torrent │ │ ├── httpseed.torrent │ │ ├── invalid_file_size.torrent │ │ ├── invalid_filename.torrent │ │ ├── invalid_filename2.torrent │ │ ├── invalid_info.torrent │ │ ├── invalid_merkle.torrent │ │ ├── invalid_name.torrent │ │ ├── invalid_name2.torrent │ │ ├── invalid_name3.torrent │ │ ├── invalid_path_list.torrent │ │ ├── invalid_piece_len.torrent │ │ ├── invalid_pieces.torrent │ │ ├── invalid_root_hash.torrent │ │ ├── invalid_root_hash2.torrent │ │ ├── invalid_symlink.torrent │ │ ├── large.torrent │ │ ├── long_name.torrent │ │ ├── many_pieces.torrent │ │ ├── missing_path_list.torrent │ │ ├── missing_piece_len.torrent │ │ ├── negative_file_size.torrent │ │ ├── negative_piece_len.torrent │ │ ├── negative_size.torrent │ │ ├── no_creation_date.torrent │ │ ├── no_files.torrent │ │ ├── no_name.torrent │ │ ├── pad_file.torrent │ │ ├── pad_file_no_path.torrent │ │ ├── parent_path.torrent │ │ ├── root_hash.torrent │ │ ├── sample.torrent │ │ ├── single_multi_file.torrent │ │ ├── slash_path.torrent │ │ ├── slash_path2.torrent │ │ ├── slash_path3.torrent │ │ ├── string.torrent │ │ ├── symlink1.torrent │ │ ├── symlink_zero_size.torrent │ │ ├── unaligned_pieces.torrent │ │ ├── unordered.torrent │ │ ├── url_list.torrent │ │ ├── url_list2.torrent │ │ ├── url_list3.torrent │ │ ├── url_seed.torrent │ │ ├── url_seed_multi.torrent │ │ ├── url_seed_multi_space.torrent │ │ ├── url_seed_multi_space_nolist.torrent │ │ └── whitespace_url.torrent │ ├── test_tracker.cpp │ ├── test_transfer.cpp │ ├── test_upnp.cpp │ ├── test_url_seed.cpp │ ├── test_utf8.cpp │ ├── test_utils.cpp │ ├── test_utils.hpp │ ├── test_utp.cpp │ ├── test_web_seed.cpp │ ├── test_web_seed_ban.cpp │ ├── test_web_seed_chunked.cpp │ ├── test_web_seed_http.cpp │ ├── test_web_seed_http_pw.cpp │ ├── test_web_seed_redirect.cpp │ ├── test_web_seed_socks4.cpp │ ├── test_web_seed_socks5.cpp │ ├── test_web_seed_socks5_no_peers.cpp │ ├── test_web_seed_socks5_pw.cpp │ ├── test_xml.cpp │ ├── udp_tracker.cpp │ ├── udp_tracker.hpp │ ├── utf8_test.txt │ ├── valgrind_suppressions.txt │ ├── vsinstr_excludes.rsp │ ├── web_seed_suite.cpp │ ├── web_seed_suite.hpp │ ├── web_server.py │ └── zeroes.gz └── tools │ ├── CMakeLists.txt │ ├── Jamfile │ ├── Makefile.am │ ├── clean.py │ ├── dht_flood.py │ ├── dht_put.cpp │ ├── gen_fwd.py │ ├── gprof2dot.py │ ├── parse_access_log.cpp │ ├── parse_bandwidth_log.py │ ├── parse_buffer_log.py │ ├── parse_dht_log.py │ ├── parse_dht_rtt.py │ ├── parse_dht_stats.py │ ├── parse_disk_buffer_log.py │ ├── parse_lookup_log.py │ ├── parse_memory_log.py │ ├── parse_peer_log.py │ ├── parse_sample.py │ ├── parse_session_stats.py │ ├── parse_utp_log.py │ ├── run_benchmark.py │ ├── session_log_alerts.cpp │ ├── set_version.py │ ├── test_coverage.sh │ └── update_copyright.py ├── package.json └── test ├── address.js ├── block ├── block.js ├── blockheader.js └── merkleblock.js ├── crypto ├── bn.js ├── ecdsa.js ├── hash.js ├── point.js ├── random.js └── signature.js ├── data ├── bip69.json ├── bitcoind │ ├── base58_keys_invalid.json │ ├── base58_keys_valid.json │ ├── blocks.json │ ├── script_invalid.json │ ├── script_valid.json │ ├── sig_canonical.json │ ├── sig_noncanonical.json │ ├── tx_invalid.json │ └── tx_valid.json ├── blk86756-testnet.dat ├── blk86756-testnet.js ├── blk86756-testnet.json ├── ecdsa.json ├── merkleblocks.js ├── messages.json ├── sighash.json └── tx_creation.json ├── docs.js ├── encoding ├── base58.js ├── base58check.js ├── bufferreader.js ├── bufferwriter.js └── varint.js ├── hdkeys.js ├── hdprivatekey.js ├── hdpublickey.js ├── index.html ├── index.js ├── mocha.opts ├── networks.js ├── opcode.js ├── privatekey.js ├── publickey.js ├── script ├── interpreter.js └── script.js ├── transaction ├── deserialize.js ├── input │ ├── input.js │ ├── multisig.js │ ├── multisigscripthash.js │ ├── publickey.js │ └── publickeyhash.js ├── output.js ├── sighash.js ├── sighashwitness.js ├── signature.js ├── transaction.js └── unspentoutput.js ├── unit.js ├── uri.js └── util ├── buffer.js ├── js.js └── preconditions.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: 5ki6iPbGaiwHzIwcfNDzTXoiqAcffqUQs 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/.jsdoc.conf -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/.travis.yml -------------------------------------------------------------------------------- /.zuul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/.zuul.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CryptoList/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/CryptoList/CONTRIBUTING.md -------------------------------------------------------------------------------- /CryptoList/README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/CryptoList/README-zh.md -------------------------------------------------------------------------------- /CryptoList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/CryptoList/README.md -------------------------------------------------------------------------------- /CryptoList/cryptolist_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/CryptoList/cryptolist_logo.png -------------------------------------------------------------------------------- /CryptoList/donate_cryptolist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/CryptoList/donate_cryptolist.png -------------------------------------------------------------------------------- /CryptoList/social_icons/forum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/CryptoList/social_icons/forum.svg -------------------------------------------------------------------------------- /CryptoList/sponsors/coinpride.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/CryptoList/sponsors/coinpride.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/README.md -------------------------------------------------------------------------------- /Tars/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/.gitignore -------------------------------------------------------------------------------- /Tars/Install.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/Install.en.md -------------------------------------------------------------------------------- /Tars/Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/Install.md -------------------------------------------------------------------------------- /Tars/Install_faq.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/Install_faq.en.md -------------------------------------------------------------------------------- /Tars/Install_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/Install_faq.md -------------------------------------------------------------------------------- /Tars/Introduction.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/Introduction.en.md -------------------------------------------------------------------------------- /Tars/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/Introduction.md -------------------------------------------------------------------------------- /Tars/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/LICENSE.TXT -------------------------------------------------------------------------------- /Tars/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/README.en.md -------------------------------------------------------------------------------- /Tars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/README.md -------------------------------------------------------------------------------- /Tars/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/build/README.md -------------------------------------------------------------------------------- /Tars/build/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/build/clear.sh -------------------------------------------------------------------------------- /Tars/build/conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/build/conf/my.cnf -------------------------------------------------------------------------------- /Tars/build/conf/resin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/build/conf/resin.xml -------------------------------------------------------------------------------- /Tars/build/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/build/install.sh -------------------------------------------------------------------------------- /Tars/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/README.md -------------------------------------------------------------------------------- /Tars/cpp/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/build/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/build/README.md -------------------------------------------------------------------------------- /Tars/cpp/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/build/build.sh -------------------------------------------------------------------------------- /Tars/cpp/examples/PushDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/examples/PushDemo/README.md -------------------------------------------------------------------------------- /Tars/cpp/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/examples/README.md -------------------------------------------------------------------------------- /Tars/cpp/framework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/framework/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/framework/NodeServer/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/framework/NodeServer/util.h -------------------------------------------------------------------------------- /Tars/cpp/framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/framework/README.md -------------------------------------------------------------------------------- /Tars/cpp/framework/conf/tars.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/framework/conf/tars.default -------------------------------------------------------------------------------- /Tars/cpp/framework/conf/tars.tarslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/framework/conf/tars.tarslog -------------------------------------------------------------------------------- /Tars/cpp/framework/sql/db_tars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/framework/sql/db_tars.sql -------------------------------------------------------------------------------- /Tars/cpp/framework/sql/dump-sql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/framework/sql/dump-sql.sh -------------------------------------------------------------------------------- /Tars/cpp/framework/sql/exec-sql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/framework/sql/exec-sql.sh -------------------------------------------------------------------------------- /Tars/cpp/servant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/servant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/README.md -------------------------------------------------------------------------------- /Tars/cpp/servant/jmem/jmem_hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/jmem/jmem_hashmap.h -------------------------------------------------------------------------------- /Tars/cpp/servant/jmem/jmem_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/jmem/jmem_policy.h -------------------------------------------------------------------------------- /Tars/cpp/servant/jmem/jmem_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/jmem/jmem_queue.h -------------------------------------------------------------------------------- /Tars/cpp/servant/jmem/jmem_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/jmem/jmem_rbtree.h -------------------------------------------------------------------------------- /Tars/cpp/servant/promise/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/promise/promise.h -------------------------------------------------------------------------------- /Tars/cpp/servant/promise/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/promise/tuple.h -------------------------------------------------------------------------------- /Tars/cpp/servant/promise/when_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/promise/when_all.h -------------------------------------------------------------------------------- /Tars/cpp/servant/protocol/Auth.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/protocol/Auth.tars -------------------------------------------------------------------------------- /Tars/cpp/servant/protocol/BaseF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/protocol/BaseF.tars -------------------------------------------------------------------------------- /Tars/cpp/servant/protocol/LogF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/protocol/LogF.tars -------------------------------------------------------------------------------- /Tars/cpp/servant/protocol/NodeF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/protocol/NodeF.tars -------------------------------------------------------------------------------- /Tars/cpp/servant/protocol/StatF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/protocol/StatF.tars -------------------------------------------------------------------------------- /Tars/cpp/servant/servant/AppCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/servant/AppCache.h -------------------------------------------------------------------------------- /Tars/cpp/servant/servant/AuthLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/servant/AuthLogic.h -------------------------------------------------------------------------------- /Tars/cpp/servant/servant/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/servant/Global.h -------------------------------------------------------------------------------- /Tars/cpp/servant/servant/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/servant/Message.h -------------------------------------------------------------------------------- /Tars/cpp/servant/servant/Servant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/servant/Servant.h -------------------------------------------------------------------------------- /Tars/cpp/servant/servant/TarsNodeF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/servant/TarsNodeF.h -------------------------------------------------------------------------------- /Tars/cpp/servant/tup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/tup/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/servant/tup/RequestF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/tup/RequestF.tars -------------------------------------------------------------------------------- /Tars/cpp/servant/tup/Tars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/tup/Tars.h -------------------------------------------------------------------------------- /Tars/cpp/servant/tup/TarsDisplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/tup/TarsDisplayer.h -------------------------------------------------------------------------------- /Tars/cpp/servant/tup/TarsType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/tup/TarsType.h -------------------------------------------------------------------------------- /Tars/cpp/servant/tup/tup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/servant/tup/tup.h -------------------------------------------------------------------------------- /Tars/cpp/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/test/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/test/README.md -------------------------------------------------------------------------------- /Tars/cpp/test/testUtil/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/test/testUtil/test.html -------------------------------------------------------------------------------- /Tars/cpp/thirdparty/thirdparty.sh: -------------------------------------------------------------------------------- 1 | git clone https://github.com/Tencent/rapidjson.git -------------------------------------------------------------------------------- /Tars/cpp/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/README.md -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2android/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2android/main.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2c/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2c/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2c/main.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2c/tars2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2c/tars2c.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2c/tars2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2c/tars2c.h -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2cpp/main.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2cpp/tars2cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2cpp/tars2cpp.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2cpp/tars2cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2cpp/tars2cpp.h -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2cs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2cs/main.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2cs/tars2cs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2cs/tars2cs.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2cs/tars2cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2cs/tars2cs.h -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2node/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2node/main.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2node/tars2node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2node/tars2node.h -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2oc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2oc/main.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2oc/tars2oc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2oc/tars2oc.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2oc/tars2oc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2oc/tars2oc.h -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2php/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2php/main.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2php/tars2php.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2php/tars2php.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2php/tars2php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2php/tars2php.h -------------------------------------------------------------------------------- /Tars/cpp/tools/tars2python/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tars2python/main.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tarsgrammar/tars.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tarsgrammar/tars.l -------------------------------------------------------------------------------- /Tars/cpp/tools/tarsgrammar/tars.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tarsgrammar/tars.y -------------------------------------------------------------------------------- /Tars/cpp/tools/tarsparse/element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tarsparse/element.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tarsparse/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tarsparse/element.h -------------------------------------------------------------------------------- /Tars/cpp/tools/tarsparse/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tarsparse/parse.cpp -------------------------------------------------------------------------------- /Tars/cpp/tools/tarsparse/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/tools/tarsparse/parse.h -------------------------------------------------------------------------------- /Tars/cpp/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/util/README.md: -------------------------------------------------------------------------------- 1 | 该工程是Tars基础工具库。 -------------------------------------------------------------------------------- /Tars/cpp/util/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | install(DIRECTORY util DESTINATION include) 3 | 4 | -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_cgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_cgi.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_ex.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_fifo.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_file.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_gzip.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_http.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_lock.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_md5.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_mmap.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_pack.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_sha.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_shm.h -------------------------------------------------------------------------------- /Tars/cpp/util/include/util/tc_tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/include/util/tc_tea.h -------------------------------------------------------------------------------- /Tars/cpp/util/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/CMakeLists.txt -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_base64.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_bitmap.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_buffer.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_buffer_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_buffer_pool.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_cgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_cgi.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_common.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_config.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_dyn_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_dyn_object.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_encoder.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_epoller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_epoller.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_ex.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_fifo.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_file.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_file_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_file_mutex.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_gzip.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_hashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_hashmap.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_http.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_http_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_http_async.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_logger.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_md5.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_mem_chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_mem_chunk.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_mem_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_mem_queue.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_mmap.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_mysql.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_openssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_openssl.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_option.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_pack.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_parsepara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_parsepara.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_rbtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_rbtree.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_sem_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_sem_mutex.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_sha.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_shm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_shm.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_socket.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_sslmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_sslmgr.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_tea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_tea.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_thread.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_thread_cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_thread_cond.cpp -------------------------------------------------------------------------------- /Tars/cpp/util/src/tc_thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/cpp/util/src/tc_thread_pool.cpp -------------------------------------------------------------------------------- /Tars/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/README.md -------------------------------------------------------------------------------- /Tars/docs/images/tars-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars-en.png -------------------------------------------------------------------------------- /Tars/docs/images/tars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_dye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_dye.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_dye_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_dye_en.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_flow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_flow.PNG -------------------------------------------------------------------------------- /Tars/docs/images/tars_idc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_idc.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_idc_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_idc_en.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_idc_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_idc_pic.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_java_evn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_java_evn1.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_java_evn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_java_evn2.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_java_evn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_java_evn3.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_jiaohu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_jiaohu.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_junheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_junheng.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_junheng_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_junheng_en.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_notify.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_overload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_overload.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_property.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_result.PNG -------------------------------------------------------------------------------- /Tars/docs/images/tars_rongcuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_rongcuo.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_rongcuo_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_rongcuo_en.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_set.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_set_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_set_en.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_set_pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_set_pic1.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_set_pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_set_pic2.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_set_pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_set_pic3.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_stat.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_stat_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_stat_en.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_tarsproto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_tarsproto.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_top_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_top_en.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_tuopu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_tuopu.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_tupclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_tupclass.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_tupstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_tupstruct.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_web_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_web_index.png -------------------------------------------------------------------------------- /Tars/docs/images/tars_web_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/images/tars_web_system.png -------------------------------------------------------------------------------- /Tars/docs/question_images/50MB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/question_images/50MB.png -------------------------------------------------------------------------------- /Tars/docs/question_images/resin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/question_images/resin.png -------------------------------------------------------------------------------- /Tars/docs/question_images/stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/question_images/stat.png -------------------------------------------------------------------------------- /Tars/docs/tars_auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_auth.md -------------------------------------------------------------------------------- /Tars/docs/tars_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_config.md -------------------------------------------------------------------------------- /Tars/docs/tars_cpp_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_cpp_faq.md -------------------------------------------------------------------------------- /Tars/docs/tars_cpp_future_promise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_cpp_future_promise.md -------------------------------------------------------------------------------- /Tars/docs/tars_cpp_http_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_cpp_http_demo.md -------------------------------------------------------------------------------- /Tars/docs/tars_cpp_quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_cpp_quickstart.md -------------------------------------------------------------------------------- /Tars/docs/tars_cpp_server_thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_cpp_server_thread.md -------------------------------------------------------------------------------- /Tars/docs/tars_cpp_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_cpp_user_guide.md -------------------------------------------------------------------------------- /Tars/docs/tars_idc_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_idc_set.md -------------------------------------------------------------------------------- /Tars/docs/tars_java_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_java_faq.md -------------------------------------------------------------------------------- /Tars/docs/tars_java_quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_java_quickstart.md -------------------------------------------------------------------------------- /Tars/docs/tars_java_spring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_java_spring.md -------------------------------------------------------------------------------- /Tars/docs/tars_java_spring_cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_java_spring_cloud.md -------------------------------------------------------------------------------- /Tars/docs/tars_java_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_java_user_guide.md -------------------------------------------------------------------------------- /Tars/docs/tars_openssl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_openssl.md -------------------------------------------------------------------------------- /Tars/docs/tars_performce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_performce.md -------------------------------------------------------------------------------- /Tars/docs/tars_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_push.md -------------------------------------------------------------------------------- /Tars/docs/tars_server_monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_server_monitor.md -------------------------------------------------------------------------------- /Tars/docs/tars_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_template.md -------------------------------------------------------------------------------- /Tars/docs/tars_tup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/docs/tars_tup.md -------------------------------------------------------------------------------- /Tars/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/README.md -------------------------------------------------------------------------------- /Tars/java/core/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/core/client.pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/core/client.pom.xml -------------------------------------------------------------------------------- /Tars/java/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/core/pom.xml -------------------------------------------------------------------------------- /Tars/java/core/server.pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/core/server.pom.xml -------------------------------------------------------------------------------- /Tars/java/distributedContext/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/distributedContext/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/distributedContext/pom.xml -------------------------------------------------------------------------------- /Tars/java/examples/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/examples/pom.xml -------------------------------------------------------------------------------- /Tars/java/examples/quickstart-client/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/examples/stress-server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/examples/tars-spring-cloud-client/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/examples/tars-spring-cloud-server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/net/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/net/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/net/pom.xml -------------------------------------------------------------------------------- /Tars/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/pom.xml -------------------------------------------------------------------------------- /Tars/java/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/protobuf/README.md -------------------------------------------------------------------------------- /Tars/java/protobuf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/protobuf/pom.xml -------------------------------------------------------------------------------- /Tars/java/spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/spring/README.md -------------------------------------------------------------------------------- /Tars/java/spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/spring/pom.xml -------------------------------------------------------------------------------- /Tars/java/spring/tars-spring-cloud-starter/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/spring/tars-spring/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/spring/tars-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/spring/tars-spring/pom.xml -------------------------------------------------------------------------------- /Tars/java/tools/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/java/tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/java/tools/pom.xml -------------------------------------------------------------------------------- /Tars/java/tools/tars-maven-plugin/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/README.md -------------------------------------------------------------------------------- /Tars/nodejs/config/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/config/ConfigF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/config/ConfigF.tars -------------------------------------------------------------------------------- /Tars/nodejs/config/ConfigFProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/config/ConfigFProxy.js -------------------------------------------------------------------------------- /Tars/nodejs/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/config/README.md -------------------------------------------------------------------------------- /Tars/nodejs/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/config/index.js -------------------------------------------------------------------------------- /Tars/nodejs/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/config/package.json -------------------------------------------------------------------------------- /Tars/nodejs/deploy/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/deploy/README.md -------------------------------------------------------------------------------- /Tars/nodejs/deploy/bin/tars-deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/deploy/bin/tars-deploy -------------------------------------------------------------------------------- /Tars/nodejs/deploy/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/deploy/deploy.js -------------------------------------------------------------------------------- /Tars/nodejs/deploy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/deploy/package-lock.json -------------------------------------------------------------------------------- /Tars/nodejs/deploy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/deploy/package.json -------------------------------------------------------------------------------- /Tars/nodejs/dyeing/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/dyeing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/dyeing/README.md -------------------------------------------------------------------------------- /Tars/nodejs/dyeing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/dyeing/index.js -------------------------------------------------------------------------------- /Tars/nodejs/dyeing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/dyeing/package.json -------------------------------------------------------------------------------- /Tars/nodejs/logs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/logs/README.md -------------------------------------------------------------------------------- /Tars/nodejs/logs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/logs/index.js -------------------------------------------------------------------------------- /Tars/nodejs/logs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/logs/package.json -------------------------------------------------------------------------------- /Tars/nodejs/monitor/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/monitor/README.md -------------------------------------------------------------------------------- /Tars/nodejs/monitor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/monitor/index.js -------------------------------------------------------------------------------- /Tars/nodejs/monitor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/monitor/package.json -------------------------------------------------------------------------------- /Tars/nodejs/monitor/policy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/monitor/policy/index.js -------------------------------------------------------------------------------- /Tars/nodejs/monitor/stat/StatF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/monitor/stat/StatF.tars -------------------------------------------------------------------------------- /Tars/nodejs/monitor/stat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/monitor/stat/index.js -------------------------------------------------------------------------------- /Tars/nodejs/node-agent/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/node-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/node-agent/README.md -------------------------------------------------------------------------------- /Tars/nodejs/node-agent/lib/CLI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/node-agent/lib/CLI.js -------------------------------------------------------------------------------- /Tars/nodejs/node-agent/lib/God.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/node-agent/lib/God.js -------------------------------------------------------------------------------- /Tars/nodejs/node-agent/lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/node-agent/lib/log.js -------------------------------------------------------------------------------- /Tars/nodejs/node-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/node-agent/package.json -------------------------------------------------------------------------------- /Tars/nodejs/notify/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/notify/NotifyF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/notify/NotifyF.tars -------------------------------------------------------------------------------- /Tars/nodejs/notify/NotifyFProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/notify/NotifyFProxy.js -------------------------------------------------------------------------------- /Tars/nodejs/notify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/notify/README.md -------------------------------------------------------------------------------- /Tars/nodejs/notify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/notify/index.js -------------------------------------------------------------------------------- /Tars/nodejs/notify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/notify/package.json -------------------------------------------------------------------------------- /Tars/nodejs/registry/EndpointF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/registry/EndpointF.tars -------------------------------------------------------------------------------- /Tars/nodejs/registry/QueryF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/registry/QueryF.tars -------------------------------------------------------------------------------- /Tars/nodejs/registry/QueryFProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/registry/QueryFProxy.js -------------------------------------------------------------------------------- /Tars/nodejs/registry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/registry/index.js -------------------------------------------------------------------------------- /Tars/nodejs/registry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/registry/package.json -------------------------------------------------------------------------------- /Tars/nodejs/rpc/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Tars/nodejs/rpc/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .doc 3 | .dev 4 | node_modules -------------------------------------------------------------------------------- /Tars/nodejs/rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/rpc/README.md -------------------------------------------------------------------------------- /Tars/nodejs/rpc/core/util/TQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/rpc/core/util/TQueue.js -------------------------------------------------------------------------------- /Tars/nodejs/rpc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/rpc/package.json -------------------------------------------------------------------------------- /Tars/nodejs/rpc/protal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/rpc/protal.js -------------------------------------------------------------------------------- /Tars/nodejs/stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/stream/README.md -------------------------------------------------------------------------------- /Tars/nodejs/stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/stream/package.json -------------------------------------------------------------------------------- /Tars/nodejs/stream/tars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/stream/tars.js -------------------------------------------------------------------------------- /Tars/nodejs/utils/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/utils/README.md -------------------------------------------------------------------------------- /Tars/nodejs/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/utils/index.js -------------------------------------------------------------------------------- /Tars/nodejs/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/utils/package.json -------------------------------------------------------------------------------- /Tars/nodejs/utils/tars-endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/utils/tars-endpoint.js -------------------------------------------------------------------------------- /Tars/nodejs/utils/tars-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/utils/tars-promise.js -------------------------------------------------------------------------------- /Tars/nodejs/utils/tars-timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/utils/tars-timer.js -------------------------------------------------------------------------------- /Tars/nodejs/winston-tars/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Tars/nodejs/winston-tars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/winston-tars/README.md -------------------------------------------------------------------------------- /Tars/nodejs/winston-tars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/nodejs/winston-tars/index.js -------------------------------------------------------------------------------- /Tars/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/README.md -------------------------------------------------------------------------------- /Tars/php/tarsclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/README.md -------------------------------------------------------------------------------- /Tars/php/tarsclient/example.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/example.tars -------------------------------------------------------------------------------- /Tars/php/tarsclient/ext/auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/ext/auto -------------------------------------------------------------------------------- /Tars/php/tarsclient/ext/auto7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/ext/auto7.sh -------------------------------------------------------------------------------- /Tars/php/tarsclient/ext/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/ext/config.m4 -------------------------------------------------------------------------------- /Tars/php/tarsclient/ext/tars_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/ext/tars_c.c -------------------------------------------------------------------------------- /Tars/php/tarsclient/ext/ttars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/ext/ttars.c -------------------------------------------------------------------------------- /Tars/php/tarsclient/ext/tup_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/ext/tup_c.c -------------------------------------------------------------------------------- /Tars/php/tarsclient/ext/tupapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/ext/tupapi.c -------------------------------------------------------------------------------- /Tars/php/tarsclient/tars2php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/php/tarsclient/tars2php.php -------------------------------------------------------------------------------- /Tars/plugins/README.md: -------------------------------------------------------------------------------- 1 | # 插件 -------------------------------------------------------------------------------- /Tars/tup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/README.md -------------------------------------------------------------------------------- /Tars/tup/tup-c/Tars_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-c/Tars_c.c -------------------------------------------------------------------------------- /Tars/tup/tup-c/Tars_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-c/Tars_c.h -------------------------------------------------------------------------------- /Tars/tup/tup-c/demo/Test.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-c/demo/Test.tars -------------------------------------------------------------------------------- /Tars/tup/tup-c/demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-c/demo/main.c -------------------------------------------------------------------------------- /Tars/tup/tup-c/demo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-c/demo/makefile -------------------------------------------------------------------------------- /Tars/tup/tup-c/tup_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-c/tup_c.c -------------------------------------------------------------------------------- /Tars/tup/tup-c/tup_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-c/tup_c.h -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/Program.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/Test/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/Test/A.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/Test/B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/Test/B.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/Test/Test.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/Test/Test.tars -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/Test/TestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/Test/TestInfo.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/makefile -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/tars/TarsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/tars/TarsUtil.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/tup/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/tup/Const.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/tup/UniPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/tup/UniPacket.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/util/HexUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/util/HexUtil.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/util/QTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/util/QTrace.cs -------------------------------------------------------------------------------- /Tars/tup/tup-csharp/util/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-csharp/util/Utility.cs -------------------------------------------------------------------------------- /Tars/tup/tup-oc/tup/tupTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Tars/tup/tup-php/RequestF_tup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/RequestF_tup.php -------------------------------------------------------------------------------- /Tars/tup/tup-php/demo/Hello.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/demo/Hello.tars -------------------------------------------------------------------------------- /Tars/tup/tup-php/demo/Hello_tup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/demo/Hello_tup.php -------------------------------------------------------------------------------- /Tars/tup/tup-php/demo/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/demo/demo.php -------------------------------------------------------------------------------- /Tars/tup/tup-php/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/makefile -------------------------------------------------------------------------------- /Tars/tup/tup-php/tars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/tars.php -------------------------------------------------------------------------------- /Tars/tup/tup-php/tars_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/tars_exception.php -------------------------------------------------------------------------------- /Tars/tup/tup-php/tars_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/tars_header.php -------------------------------------------------------------------------------- /Tars/tup/tup-php/tup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-php/tup.php -------------------------------------------------------------------------------- /Tars/tup/tup-python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/tup/tup-python/jmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/jmain.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/makefile -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/QueryF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/QueryF.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/__async.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/__logger.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/__packet.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/__rpc.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__tars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/__tars.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/__trans.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__tup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/__tup.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/__util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/__util.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/tars/core.py -------------------------------------------------------------------------------- /Tars/tup/tup-python/tars/tars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tars/tup/tup-python/wmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-python/wmain.py -------------------------------------------------------------------------------- /Tars/tup/tup-windows-cpp/RequestF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-windows-cpp/RequestF.h -------------------------------------------------------------------------------- /Tars/tup/tup-windows-cpp/Tars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-windows-cpp/Tars.h -------------------------------------------------------------------------------- /Tars/tup/tup-windows-cpp/TarsType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-windows-cpp/TarsType.h -------------------------------------------------------------------------------- /Tars/tup/tup-windows-cpp/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-windows-cpp/stdint.h -------------------------------------------------------------------------------- /Tars/tup/tup-windows-cpp/tup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/tup/tup-windows-cpp/tup.h -------------------------------------------------------------------------------- /Tars/web/docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/web/docs/API.md -------------------------------------------------------------------------------- /Tars/web/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/web/docs/README.md -------------------------------------------------------------------------------- /Tars/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/web/pom.xml -------------------------------------------------------------------------------- /Tars/web/src/main/webapp/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/web/src/main/webapp/js/index.js -------------------------------------------------------------------------------- /Tars/web/src/main/webapp/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/Tars/web/src/main/webapp/js/npm.js -------------------------------------------------------------------------------- /benchmark/block-357238.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/benchmark/block-357238.json -------------------------------------------------------------------------------- /benchmark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/benchmark/package.json -------------------------------------------------------------------------------- /benchmark/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/benchmark/script.js -------------------------------------------------------------------------------- /benchmark/serialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/benchmark/serialization.js -------------------------------------------------------------------------------- /bitcore-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/bitcore-lib.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/bower.json -------------------------------------------------------------------------------- /docs/address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/address.md -------------------------------------------------------------------------------- /docs/block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/block.md -------------------------------------------------------------------------------- /docs/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/browser.md -------------------------------------------------------------------------------- /docs/crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/crypto.md -------------------------------------------------------------------------------- /docs/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/encoding.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/hierarchical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/hierarchical.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/networks.md -------------------------------------------------------------------------------- /docs/privatekey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/privatekey.md -------------------------------------------------------------------------------- /docs/publickey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/publickey.md -------------------------------------------------------------------------------- /docs/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/script.md -------------------------------------------------------------------------------- /docs/transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/transaction.md -------------------------------------------------------------------------------- /docs/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/unit.md -------------------------------------------------------------------------------- /docs/unspentoutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/unspentoutput.md -------------------------------------------------------------------------------- /docs/uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/docs/uri.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/index.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/address.js -------------------------------------------------------------------------------- /lib/block/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/block/block.js -------------------------------------------------------------------------------- /lib/block/blockheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/block/blockheader.js -------------------------------------------------------------------------------- /lib/block/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/block/index.js -------------------------------------------------------------------------------- /lib/block/merkleblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/block/merkleblock.js -------------------------------------------------------------------------------- /lib/crypto/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/crypto/bn.js -------------------------------------------------------------------------------- /lib/crypto/ecdsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/crypto/ecdsa.js -------------------------------------------------------------------------------- /lib/crypto/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/crypto/hash.js -------------------------------------------------------------------------------- /lib/crypto/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/crypto/point.js -------------------------------------------------------------------------------- /lib/crypto/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/crypto/random.js -------------------------------------------------------------------------------- /lib/crypto/signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/crypto/signature.js -------------------------------------------------------------------------------- /lib/encoding/base58.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/encoding/base58.js -------------------------------------------------------------------------------- /lib/encoding/base58check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/encoding/base58check.js -------------------------------------------------------------------------------- /lib/encoding/bufferreader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/encoding/bufferreader.js -------------------------------------------------------------------------------- /lib/encoding/bufferwriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/encoding/bufferwriter.js -------------------------------------------------------------------------------- /lib/encoding/varint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/encoding/varint.js -------------------------------------------------------------------------------- /lib/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/errors/index.js -------------------------------------------------------------------------------- /lib/errors/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/errors/spec.js -------------------------------------------------------------------------------- /lib/hdprivatekey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/hdprivatekey.js -------------------------------------------------------------------------------- /lib/hdpublickey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/hdpublickey.js -------------------------------------------------------------------------------- /lib/networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/networks.js -------------------------------------------------------------------------------- /lib/opcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/opcode.js -------------------------------------------------------------------------------- /lib/privatekey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/privatekey.js -------------------------------------------------------------------------------- /lib/publickey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/publickey.js -------------------------------------------------------------------------------- /lib/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/script/index.js -------------------------------------------------------------------------------- /lib/script/interpreter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/script/interpreter.js -------------------------------------------------------------------------------- /lib/script/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/script/script.js -------------------------------------------------------------------------------- /lib/transaction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/index.js -------------------------------------------------------------------------------- /lib/transaction/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/input/index.js -------------------------------------------------------------------------------- /lib/transaction/input/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/input/input.js -------------------------------------------------------------------------------- /lib/transaction/input/multisig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/input/multisig.js -------------------------------------------------------------------------------- /lib/transaction/input/publickey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/input/publickey.js -------------------------------------------------------------------------------- /lib/transaction/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/output.js -------------------------------------------------------------------------------- /lib/transaction/sighash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/sighash.js -------------------------------------------------------------------------------- /lib/transaction/sighashwitness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/sighashwitness.js -------------------------------------------------------------------------------- /lib/transaction/signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/signature.js -------------------------------------------------------------------------------- /lib/transaction/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/transaction.js -------------------------------------------------------------------------------- /lib/transaction/unspentoutput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/transaction/unspentoutput.js -------------------------------------------------------------------------------- /lib/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/unit.js -------------------------------------------------------------------------------- /lib/uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/uri.js -------------------------------------------------------------------------------- /lib/util/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/util/buffer.js -------------------------------------------------------------------------------- /lib/util/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/util/js.js -------------------------------------------------------------------------------- /lib/util/preconditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/lib/util/preconditions.js -------------------------------------------------------------------------------- /libtorrent/.doozer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/.doozer.json -------------------------------------------------------------------------------- /libtorrent/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /libtorrent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/.gitignore -------------------------------------------------------------------------------- /libtorrent/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/.gitmodules -------------------------------------------------------------------------------- /libtorrent/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/.travis.yml -------------------------------------------------------------------------------- /libtorrent/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/AUTHORS -------------------------------------------------------------------------------- /libtorrent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/CMakeLists.txt -------------------------------------------------------------------------------- /libtorrent/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/CONTRIBUTING.rst -------------------------------------------------------------------------------- /libtorrent/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/COPYING -------------------------------------------------------------------------------- /libtorrent/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ChangeLog -------------------------------------------------------------------------------- /libtorrent/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/Jamfile -------------------------------------------------------------------------------- /libtorrent/Jamroot.jam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libtorrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/LICENSE -------------------------------------------------------------------------------- /libtorrent/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/Makefile.am -------------------------------------------------------------------------------- /libtorrent/NEWS: -------------------------------------------------------------------------------- 1 | See ChangeLog 2 | -------------------------------------------------------------------------------- /libtorrent/README-2.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/README-2.MD -------------------------------------------------------------------------------- /libtorrent/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/README.rst -------------------------------------------------------------------------------- /libtorrent/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/appveyor.yml -------------------------------------------------------------------------------- /libtorrent/autotool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/autotool.sh -------------------------------------------------------------------------------- /libtorrent/bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/CMakeLists.txt -------------------------------------------------------------------------------- /libtorrent/bindings/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = python 3 | 4 | EXTRA_DIST = README.txt 5 | -------------------------------------------------------------------------------- /libtorrent/bindings/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/README.txt -------------------------------------------------------------------------------- /libtorrent/bindings/c/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/c/Jamfile -------------------------------------------------------------------------------- /libtorrent/bindings/c/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/c/library.cpp -------------------------------------------------------------------------------- /libtorrent/bindings/c/libtorrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/c/libtorrent.h -------------------------------------------------------------------------------- /libtorrent/bindings/python/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/python/Jamfile -------------------------------------------------------------------------------- /libtorrent/bindings/python/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/python/client.py -------------------------------------------------------------------------------- /libtorrent/bindings/python/compile_cmd.in: -------------------------------------------------------------------------------- 1 | @CXX@ 2 | -------------------------------------------------------------------------------- /libtorrent/bindings/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/python/setup.py -------------------------------------------------------------------------------- /libtorrent/bindings/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/bindings/python/test.py -------------------------------------------------------------------------------- /libtorrent/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./autotool.sh 4 | ./configure $@ 5 | 6 | -------------------------------------------------------------------------------- /libtorrent/build_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/build_dist.sh -------------------------------------------------------------------------------- /libtorrent/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/configure.ac -------------------------------------------------------------------------------- /libtorrent/docs/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/bitcoin.png -------------------------------------------------------------------------------- /libtorrent/docs/building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/building.rst -------------------------------------------------------------------------------- /libtorrent/docs/client_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/client_test.png -------------------------------------------------------------------------------- /libtorrent/docs/client_test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/client_test.rst -------------------------------------------------------------------------------- /libtorrent/docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/contributing.rst -------------------------------------------------------------------------------- /libtorrent/docs/cwnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/cwnd.png -------------------------------------------------------------------------------- /libtorrent/docs/cwnd_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/cwnd_thumb.png -------------------------------------------------------------------------------- /libtorrent/docs/delays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/delays.png -------------------------------------------------------------------------------- /libtorrent/docs/delays_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/delays_thumb.png -------------------------------------------------------------------------------- /libtorrent/docs/dht_extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/dht_extensions.rst -------------------------------------------------------------------------------- /libtorrent/docs/dht_rss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/dht_rss.rst -------------------------------------------------------------------------------- /libtorrent/docs/dht_sec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/dht_sec.rst -------------------------------------------------------------------------------- /libtorrent/docs/dht_store.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/dht_store.rst -------------------------------------------------------------------------------- /libtorrent/docs/disk_cache.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/disk_cache.diagram -------------------------------------------------------------------------------- /libtorrent/docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/examples.rst -------------------------------------------------------------------------------- /libtorrent/docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/features.rst -------------------------------------------------------------------------------- /libtorrent/docs/gen_reference_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/gen_reference_doc.py -------------------------------------------------------------------------------- /libtorrent/docs/gen_settings_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/gen_settings_doc.py -------------------------------------------------------------------------------- /libtorrent/docs/gen_stats_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/gen_stats_doc.py -------------------------------------------------------------------------------- /libtorrent/docs/gen_todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/gen_todo.py -------------------------------------------------------------------------------- /libtorrent/docs/hacking.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/hacking.diagram -------------------------------------------------------------------------------- /libtorrent/docs/hacking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/hacking.rst -------------------------------------------------------------------------------- /libtorrent/docs/hunspell/en_US.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/hunspell/en_US.aff -------------------------------------------------------------------------------- /libtorrent/docs/hunspell/en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/hunspell/en_US.dic -------------------------------------------------------------------------------- /libtorrent/docs/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/img/bg.png -------------------------------------------------------------------------------- /libtorrent/docs/img/blue_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/img/blue_bottom.png -------------------------------------------------------------------------------- /libtorrent/docs/img/blue_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/img/blue_top.png -------------------------------------------------------------------------------- /libtorrent/docs/img/dotline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/img/dotline.gif -------------------------------------------------------------------------------- /libtorrent/docs/img/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/img/minus.gif -------------------------------------------------------------------------------- /libtorrent/docs/img/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/img/orange.png -------------------------------------------------------------------------------- /libtorrent/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/index.rst -------------------------------------------------------------------------------- /libtorrent/docs/ip_id_v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/ip_id_v4.png -------------------------------------------------------------------------------- /libtorrent/docs/ip_id_v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/ip_id_v6.png -------------------------------------------------------------------------------- /libtorrent/docs/join_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/join_rst.py -------------------------------------------------------------------------------- /libtorrent/docs/logo/libtorrent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/logo/libtorrent.svg -------------------------------------------------------------------------------- /libtorrent/docs/logo/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/logo/license -------------------------------------------------------------------------------- /libtorrent/docs/logo/monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/logo/monochrome.png -------------------------------------------------------------------------------- /libtorrent/docs/logo/monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/logo/monochrome.svg -------------------------------------------------------------------------------- /libtorrent/docs/logo/monochrome2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/logo/monochrome2.png -------------------------------------------------------------------------------- /libtorrent/docs/make_thumb.sh: -------------------------------------------------------------------------------- 1 | convert $1 -resize 150x130 $1 2 | 3 | -------------------------------------------------------------------------------- /libtorrent/docs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/makefile -------------------------------------------------------------------------------- /libtorrent/docs/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/manual.rst -------------------------------------------------------------------------------- /libtorrent/docs/merkle_tree.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/merkle_tree.graffle -------------------------------------------------------------------------------- /libtorrent/docs/merkle_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/merkle_tree.png -------------------------------------------------------------------------------- /libtorrent/docs/our_delay_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/our_delay_base.png -------------------------------------------------------------------------------- /libtorrent/docs/projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/projects.rst -------------------------------------------------------------------------------- /libtorrent/docs/python_binding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/python_binding.rst -------------------------------------------------------------------------------- /libtorrent/docs/rst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/rst.css -------------------------------------------------------------------------------- /libtorrent/docs/storage.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/storage.diagram -------------------------------------------------------------------------------- /libtorrent/docs/streaming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/streaming.rst -------------------------------------------------------------------------------- /libtorrent/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/style.css -------------------------------------------------------------------------------- /libtorrent/docs/stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/stylesheet -------------------------------------------------------------------------------- /libtorrent/docs/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/template.txt -------------------------------------------------------------------------------- /libtorrent/docs/template2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/template2.txt -------------------------------------------------------------------------------- /libtorrent/docs/troubleshooting.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/troubleshooting.dot -------------------------------------------------------------------------------- /libtorrent/docs/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/troubleshooting.rst -------------------------------------------------------------------------------- /libtorrent/docs/tuning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/tuning.rst -------------------------------------------------------------------------------- /libtorrent/docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/tutorial.rst -------------------------------------------------------------------------------- /libtorrent/docs/upgrade_to_1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/upgrade_to_1.2.rst -------------------------------------------------------------------------------- /libtorrent/docs/utp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/utp.rst -------------------------------------------------------------------------------- /libtorrent/docs/utp_stack.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/docs/utp_stack.diagram -------------------------------------------------------------------------------- /libtorrent/ed25519/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/readme.md -------------------------------------------------------------------------------- /libtorrent/ed25519/src/fe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/fe.cpp -------------------------------------------------------------------------------- /libtorrent/ed25519/src/fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/fe.h -------------------------------------------------------------------------------- /libtorrent/ed25519/src/fixedint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/fixedint.h -------------------------------------------------------------------------------- /libtorrent/ed25519/src/ge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/ge.cpp -------------------------------------------------------------------------------- /libtorrent/ed25519/src/ge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/ge.h -------------------------------------------------------------------------------- /libtorrent/ed25519/src/keypair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/keypair.cpp -------------------------------------------------------------------------------- /libtorrent/ed25519/src/sc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/sc.cpp -------------------------------------------------------------------------------- /libtorrent/ed25519/src/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/sc.h -------------------------------------------------------------------------------- /libtorrent/ed25519/src/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/sign.cpp -------------------------------------------------------------------------------- /libtorrent/ed25519/src/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/src/verify.cpp -------------------------------------------------------------------------------- /libtorrent/ed25519/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/ed25519/test.c -------------------------------------------------------------------------------- /libtorrent/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libtorrent/examples/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/Jamfile -------------------------------------------------------------------------------- /libtorrent/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/Makefile.am -------------------------------------------------------------------------------- /libtorrent/examples/bt-get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/bt-get.cpp -------------------------------------------------------------------------------- /libtorrent/examples/bt-get2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/bt-get2.cpp -------------------------------------------------------------------------------- /libtorrent/examples/client_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/client_test.cpp -------------------------------------------------------------------------------- /libtorrent/examples/dump_torrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/dump_torrent.cpp -------------------------------------------------------------------------------- /libtorrent/examples/make_torrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/make_torrent.cpp -------------------------------------------------------------------------------- /libtorrent/examples/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/print.cpp -------------------------------------------------------------------------------- /libtorrent/examples/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/print.hpp -------------------------------------------------------------------------------- /libtorrent/examples/session_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/session_view.cpp -------------------------------------------------------------------------------- /libtorrent/examples/session_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/session_view.hpp -------------------------------------------------------------------------------- /libtorrent/examples/torrent_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/torrent_view.cpp -------------------------------------------------------------------------------- /libtorrent/examples/torrent_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/torrent_view.hpp -------------------------------------------------------------------------------- /libtorrent/examples/upnp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/examples/upnp_test.cpp -------------------------------------------------------------------------------- /libtorrent/include/libtorrent/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/include/libtorrent/io.hpp -------------------------------------------------------------------------------- /libtorrent/m4/ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/ax_boost_base.m4 -------------------------------------------------------------------------------- /libtorrent/m4/ax_boost_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/ax_boost_python.m4 -------------------------------------------------------------------------------- /libtorrent/m4/ax_boost_system.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/ax_boost_system.m4 -------------------------------------------------------------------------------- /libtorrent/m4/ax_check_openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/ax_check_openssl.m4 -------------------------------------------------------------------------------- /libtorrent/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /libtorrent/m4/ax_python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/ax_python_devel.m4 -------------------------------------------------------------------------------- /libtorrent/m4/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/config.rpath -------------------------------------------------------------------------------- /libtorrent/m4/gettext-lib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/gettext-lib.m4 -------------------------------------------------------------------------------- /libtorrent/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/iconv.m4 -------------------------------------------------------------------------------- /libtorrent/m4/pkgconfig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/m4/pkgconfig.m4 -------------------------------------------------------------------------------- /libtorrent/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/setup.py -------------------------------------------------------------------------------- /libtorrent/simulation/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/Jamfile -------------------------------------------------------------------------------- /libtorrent/simulation/fake_peer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/fake_peer.hpp -------------------------------------------------------------------------------- /libtorrent/simulation/setup_dht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/setup_dht.cpp -------------------------------------------------------------------------------- /libtorrent/simulation/setup_dht.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/setup_dht.hpp -------------------------------------------------------------------------------- /libtorrent/simulation/test_dht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/test_dht.cpp -------------------------------------------------------------------------------- /libtorrent/simulation/test_pause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/test_pause.cpp -------------------------------------------------------------------------------- /libtorrent/simulation/test_swarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/test_swarm.cpp -------------------------------------------------------------------------------- /libtorrent/simulation/test_utp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/test_utp.cpp -------------------------------------------------------------------------------- /libtorrent/simulation/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/utils.cpp -------------------------------------------------------------------------------- /libtorrent/simulation/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/simulation/utils.hpp -------------------------------------------------------------------------------- /libtorrent/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/sonar-project.properties -------------------------------------------------------------------------------- /libtorrent/src/ConvertUTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/ConvertUTF.cpp -------------------------------------------------------------------------------- /libtorrent/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/Makefile.am -------------------------------------------------------------------------------- /libtorrent/src/alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/alert.cpp -------------------------------------------------------------------------------- /libtorrent/src/alert_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/alert_manager.cpp -------------------------------------------------------------------------------- /libtorrent/src/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/allocator.cpp -------------------------------------------------------------------------------- /libtorrent/src/announce_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/announce_entry.cpp -------------------------------------------------------------------------------- /libtorrent/src/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/assert.cpp -------------------------------------------------------------------------------- /libtorrent/src/bandwidth_limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/bandwidth_limit.cpp -------------------------------------------------------------------------------- /libtorrent/src/bandwidth_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/bandwidth_manager.cpp -------------------------------------------------------------------------------- /libtorrent/src/bdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/bdecode.cpp -------------------------------------------------------------------------------- /libtorrent/src/bitfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/bitfield.cpp -------------------------------------------------------------------------------- /libtorrent/src/block_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/block_cache.cpp -------------------------------------------------------------------------------- /libtorrent/src/bloom_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/bloom_filter.cpp -------------------------------------------------------------------------------- /libtorrent/src/broadcast_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/broadcast_socket.cpp -------------------------------------------------------------------------------- /libtorrent/src/chained_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/chained_buffer.cpp -------------------------------------------------------------------------------- /libtorrent/src/choker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/choker.cpp -------------------------------------------------------------------------------- /libtorrent/src/close_reason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/close_reason.cpp -------------------------------------------------------------------------------- /libtorrent/src/cpuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/cpuid.cpp -------------------------------------------------------------------------------- /libtorrent/src/crc32c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/crc32c.cpp -------------------------------------------------------------------------------- /libtorrent/src/create_torrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/create_torrent.cpp -------------------------------------------------------------------------------- /libtorrent/src/disk_buffer_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/disk_buffer_pool.cpp -------------------------------------------------------------------------------- /libtorrent/src/disk_io_job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/disk_io_job.cpp -------------------------------------------------------------------------------- /libtorrent/src/disk_io_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/disk_io_thread.cpp -------------------------------------------------------------------------------- /libtorrent/src/disk_job_fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/disk_job_fence.cpp -------------------------------------------------------------------------------- /libtorrent/src/disk_job_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/disk_job_pool.cpp -------------------------------------------------------------------------------- /libtorrent/src/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/entry.cpp -------------------------------------------------------------------------------- /libtorrent/src/enum_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/enum_net.cpp -------------------------------------------------------------------------------- /libtorrent/src/error_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/error_code.cpp -------------------------------------------------------------------------------- /libtorrent/src/escape_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/escape_string.cpp -------------------------------------------------------------------------------- /libtorrent/src/ffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/ffs.cpp -------------------------------------------------------------------------------- /libtorrent/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/file.cpp -------------------------------------------------------------------------------- /libtorrent/src/file_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/file_pool.cpp -------------------------------------------------------------------------------- /libtorrent/src/file_progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/file_progress.cpp -------------------------------------------------------------------------------- /libtorrent/src/file_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/file_storage.cpp -------------------------------------------------------------------------------- /libtorrent/src/fingerprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/fingerprint.cpp -------------------------------------------------------------------------------- /libtorrent/src/gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/gzip.cpp -------------------------------------------------------------------------------- /libtorrent/src/hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/hasher.cpp -------------------------------------------------------------------------------- /libtorrent/src/hasher512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/hasher512.cpp -------------------------------------------------------------------------------- /libtorrent/src/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/hex.cpp -------------------------------------------------------------------------------- /libtorrent/src/http_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/http_connection.cpp -------------------------------------------------------------------------------- /libtorrent/src/http_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/http_parser.cpp -------------------------------------------------------------------------------- /libtorrent/src/http_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/http_stream.cpp -------------------------------------------------------------------------------- /libtorrent/src/i2p_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/i2p_stream.cpp -------------------------------------------------------------------------------- /libtorrent/src/identify_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/identify_client.cpp -------------------------------------------------------------------------------- /libtorrent/src/ip_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/ip_filter.cpp -------------------------------------------------------------------------------- /libtorrent/src/ip_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/ip_notifier.cpp -------------------------------------------------------------------------------- /libtorrent/src/ip_voter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/ip_voter.cpp -------------------------------------------------------------------------------- /libtorrent/src/kademlia/ed25519.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/kademlia/ed25519.cpp -------------------------------------------------------------------------------- /libtorrent/src/kademlia/get_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/kademlia/get_item.cpp -------------------------------------------------------------------------------- /libtorrent/src/kademlia/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/kademlia/item.cpp -------------------------------------------------------------------------------- /libtorrent/src/kademlia/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/kademlia/msg.cpp -------------------------------------------------------------------------------- /libtorrent/src/kademlia/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/kademlia/node.cpp -------------------------------------------------------------------------------- /libtorrent/src/kademlia/node_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/kademlia/node_id.cpp -------------------------------------------------------------------------------- /libtorrent/src/kademlia/put_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/kademlia/put_data.cpp -------------------------------------------------------------------------------- /libtorrent/src/kademlia/refresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/kademlia/refresh.cpp -------------------------------------------------------------------------------- /libtorrent/src/lazy_bdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/lazy_bdecode.cpp -------------------------------------------------------------------------------- /libtorrent/src/lsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/lsd.cpp -------------------------------------------------------------------------------- /libtorrent/src/magnet_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/magnet_uri.cpp -------------------------------------------------------------------------------- /libtorrent/src/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/merkle.cpp -------------------------------------------------------------------------------- /libtorrent/src/natpmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/natpmp.cpp -------------------------------------------------------------------------------- /libtorrent/src/packet_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/packet_buffer.cpp -------------------------------------------------------------------------------- /libtorrent/src/parse_url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/parse_url.cpp -------------------------------------------------------------------------------- /libtorrent/src/part_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/part_file.cpp -------------------------------------------------------------------------------- /libtorrent/src/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/path.cpp -------------------------------------------------------------------------------- /libtorrent/src/pe_crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/pe_crypto.cpp -------------------------------------------------------------------------------- /libtorrent/src/peer_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/peer_class.cpp -------------------------------------------------------------------------------- /libtorrent/src/peer_class_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/peer_class_set.cpp -------------------------------------------------------------------------------- /libtorrent/src/peer_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/peer_connection.cpp -------------------------------------------------------------------------------- /libtorrent/src/peer_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/peer_info.cpp -------------------------------------------------------------------------------- /libtorrent/src/peer_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/peer_list.cpp -------------------------------------------------------------------------------- /libtorrent/src/piece_picker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/piece_picker.cpp -------------------------------------------------------------------------------- /libtorrent/src/platform_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/platform_util.cpp -------------------------------------------------------------------------------- /libtorrent/src/proxy_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/proxy_base.cpp -------------------------------------------------------------------------------- /libtorrent/src/proxy_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/proxy_settings.cpp -------------------------------------------------------------------------------- /libtorrent/src/puff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/puff.cpp -------------------------------------------------------------------------------- /libtorrent/src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/random.cpp -------------------------------------------------------------------------------- /libtorrent/src/read_resume_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/read_resume_data.cpp -------------------------------------------------------------------------------- /libtorrent/src/receive_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/receive_buffer.cpp -------------------------------------------------------------------------------- /libtorrent/src/request_blocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/request_blocks.cpp -------------------------------------------------------------------------------- /libtorrent/src/resolve_links.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/resolve_links.cpp -------------------------------------------------------------------------------- /libtorrent/src/resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/resolver.cpp -------------------------------------------------------------------------------- /libtorrent/src/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/session.cpp -------------------------------------------------------------------------------- /libtorrent/src/session_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/session_call.cpp -------------------------------------------------------------------------------- /libtorrent/src/session_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/session_handle.cpp -------------------------------------------------------------------------------- /libtorrent/src/session_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/session_impl.cpp -------------------------------------------------------------------------------- /libtorrent/src/session_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/session_settings.cpp -------------------------------------------------------------------------------- /libtorrent/src/session_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/session_stats.cpp -------------------------------------------------------------------------------- /libtorrent/src/settings_pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/settings_pack.cpp -------------------------------------------------------------------------------- /libtorrent/src/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/sha1.cpp -------------------------------------------------------------------------------- /libtorrent/src/sha1_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/sha1_hash.cpp -------------------------------------------------------------------------------- /libtorrent/src/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/sha512.cpp -------------------------------------------------------------------------------- /libtorrent/src/smart_ban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/smart_ban.cpp -------------------------------------------------------------------------------- /libtorrent/src/socket_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/socket_io.cpp -------------------------------------------------------------------------------- /libtorrent/src/socket_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/socket_type.cpp -------------------------------------------------------------------------------- /libtorrent/src/socks5_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/socks5_stream.cpp -------------------------------------------------------------------------------- /libtorrent/src/stack_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/stack_allocator.cpp -------------------------------------------------------------------------------- /libtorrent/src/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/stat.cpp -------------------------------------------------------------------------------- /libtorrent/src/stat_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/stat_cache.cpp -------------------------------------------------------------------------------- /libtorrent/src/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/storage.cpp -------------------------------------------------------------------------------- /libtorrent/src/storage_piece_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/storage_piece_set.cpp -------------------------------------------------------------------------------- /libtorrent/src/storage_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/storage_utils.cpp -------------------------------------------------------------------------------- /libtorrent/src/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/string_util.cpp -------------------------------------------------------------------------------- /libtorrent/src/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/time.cpp -------------------------------------------------------------------------------- /libtorrent/src/timestamp_history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/timestamp_history.cpp -------------------------------------------------------------------------------- /libtorrent/src/torrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/torrent.cpp -------------------------------------------------------------------------------- /libtorrent/src/torrent_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/torrent_handle.cpp -------------------------------------------------------------------------------- /libtorrent/src/torrent_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/torrent_info.cpp -------------------------------------------------------------------------------- /libtorrent/src/torrent_peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/torrent_peer.cpp -------------------------------------------------------------------------------- /libtorrent/src/torrent_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/torrent_status.cpp -------------------------------------------------------------------------------- /libtorrent/src/tracker_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/tracker_manager.cpp -------------------------------------------------------------------------------- /libtorrent/src/udp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/udp_socket.cpp -------------------------------------------------------------------------------- /libtorrent/src/upnp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/upnp.cpp -------------------------------------------------------------------------------- /libtorrent/src/ut_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/ut_metadata.cpp -------------------------------------------------------------------------------- /libtorrent/src/ut_pex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/ut_pex.cpp -------------------------------------------------------------------------------- /libtorrent/src/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/utf8.cpp -------------------------------------------------------------------------------- /libtorrent/src/utp_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/utp_stream.cpp -------------------------------------------------------------------------------- /libtorrent/src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/version.cpp -------------------------------------------------------------------------------- /libtorrent/src/write_resume_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/write_resume_data.cpp -------------------------------------------------------------------------------- /libtorrent/src/xml_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/src/xml_parse.cpp -------------------------------------------------------------------------------- /libtorrent/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/CMakeLists.txt -------------------------------------------------------------------------------- /libtorrent/test/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/Jamfile -------------------------------------------------------------------------------- /libtorrent/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/Makefile.am -------------------------------------------------------------------------------- /libtorrent/test/bittorrent_peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/bittorrent_peer.cpp -------------------------------------------------------------------------------- /libtorrent/test/bittorrent_peer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/bittorrent_peer.hpp -------------------------------------------------------------------------------- /libtorrent/test/corrupt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/corrupt.gz -------------------------------------------------------------------------------- /libtorrent/test/dht_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/dht_server.cpp -------------------------------------------------------------------------------- /libtorrent/test/dht_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/dht_server.hpp -------------------------------------------------------------------------------- /libtorrent/test/enum_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/enum_if.cpp -------------------------------------------------------------------------------- /libtorrent/test/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/http.py -------------------------------------------------------------------------------- /libtorrent/test/invalid1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/invalid1.gz -------------------------------------------------------------------------------- /libtorrent/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/main.cpp -------------------------------------------------------------------------------- /libtorrent/test/make_torrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/make_torrent.cpp -------------------------------------------------------------------------------- /libtorrent/test/make_torrent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/make_torrent.hpp -------------------------------------------------------------------------------- /libtorrent/test/peer_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/peer_server.cpp -------------------------------------------------------------------------------- /libtorrent/test/peer_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/peer_server.hpp -------------------------------------------------------------------------------- /libtorrent/test/print_alerts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/print_alerts.cpp -------------------------------------------------------------------------------- /libtorrent/test/print_alerts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/print_alerts.hpp -------------------------------------------------------------------------------- /libtorrent/test/root1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/root1.xml -------------------------------------------------------------------------------- /libtorrent/test/root2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/root2.xml -------------------------------------------------------------------------------- /libtorrent/test/root3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/root3.xml -------------------------------------------------------------------------------- /libtorrent/test/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/settings.cpp -------------------------------------------------------------------------------- /libtorrent/test/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/settings.hpp -------------------------------------------------------------------------------- /libtorrent/test/setup_transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/setup_transfer.cpp -------------------------------------------------------------------------------- /libtorrent/test/setup_transfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/setup_transfer.hpp -------------------------------------------------------------------------------- /libtorrent/test/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/socks.py -------------------------------------------------------------------------------- /libtorrent/test/ssl/cert_request.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/ssl/cert_request.pem -------------------------------------------------------------------------------- /libtorrent/test/ssl/dhparams.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/ssl/dhparams.pem -------------------------------------------------------------------------------- /libtorrent/test/ssl/root_ca_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/ssl/root_ca_cert.pem -------------------------------------------------------------------------------- /libtorrent/test/ssl/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/ssl/server.pem -------------------------------------------------------------------------------- /libtorrent/test/swarm_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/swarm_suite.cpp -------------------------------------------------------------------------------- /libtorrent/test/swarm_suite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/swarm_suite.hpp -------------------------------------------------------------------------------- /libtorrent/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test.cpp -------------------------------------------------------------------------------- /libtorrent/test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test.hpp -------------------------------------------------------------------------------- /libtorrent/test/test_alert_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_alert_types.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_alloca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_alloca.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_bdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_bdecode.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_bencoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_bencoding.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_bitfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_bitfield.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_block_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_block_cache.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_buffer.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_checking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_checking.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_crc32.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_dht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_dht.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_dht_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_dht_storage.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_direct_dht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_direct_dht.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_dos_blocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_dos_blocker.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_ed25519.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_ed25519.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_enum_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_enum_net.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_fence.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_ffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_ffs.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_file.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_flags.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_gzip.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_hasher.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_hasher512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_hasher512.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_http_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_http_parser.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_ip_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_ip_filter.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_ip_voter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_ip_voter.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_lsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_lsd.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_magnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_magnet.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_merkle.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_natpmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_natpmp.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_pex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_pex.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_priority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_priority.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_privacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_privacy.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_random.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_recheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_recheck.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_resume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_resume.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_session.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_span.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_ssl.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_storage.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_string.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_threads.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_time.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_torrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_torrent.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_torrents/string.torrent: -------------------------------------------------------------------------------- 1 | 10:libtorrent 2 | -------------------------------------------------------------------------------- /libtorrent/test/test_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_tracker.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_transfer.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_upnp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_upnp.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_url_seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_url_seed.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_utf8.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_utils.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_utils.hpp -------------------------------------------------------------------------------- /libtorrent/test/test_utp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_utp.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_web_seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_web_seed.cpp -------------------------------------------------------------------------------- /libtorrent/test/test_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/test_xml.cpp -------------------------------------------------------------------------------- /libtorrent/test/udp_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/udp_tracker.cpp -------------------------------------------------------------------------------- /libtorrent/test/udp_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/udp_tracker.hpp -------------------------------------------------------------------------------- /libtorrent/test/utf8_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/utf8_test.txt -------------------------------------------------------------------------------- /libtorrent/test/web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/web_server.py -------------------------------------------------------------------------------- /libtorrent/test/zeroes.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/test/zeroes.gz -------------------------------------------------------------------------------- /libtorrent/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/CMakeLists.txt -------------------------------------------------------------------------------- /libtorrent/tools/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/Jamfile -------------------------------------------------------------------------------- /libtorrent/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/Makefile.am -------------------------------------------------------------------------------- /libtorrent/tools/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/clean.py -------------------------------------------------------------------------------- /libtorrent/tools/dht_flood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/dht_flood.py -------------------------------------------------------------------------------- /libtorrent/tools/dht_put.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/dht_put.cpp -------------------------------------------------------------------------------- /libtorrent/tools/gen_fwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/gen_fwd.py -------------------------------------------------------------------------------- /libtorrent/tools/gprof2dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/gprof2dot.py -------------------------------------------------------------------------------- /libtorrent/tools/parse_dht_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/parse_dht_log.py -------------------------------------------------------------------------------- /libtorrent/tools/parse_dht_rtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/parse_dht_rtt.py -------------------------------------------------------------------------------- /libtorrent/tools/parse_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/parse_sample.py -------------------------------------------------------------------------------- /libtorrent/tools/parse_utp_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/parse_utp_log.py -------------------------------------------------------------------------------- /libtorrent/tools/run_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/run_benchmark.py -------------------------------------------------------------------------------- /libtorrent/tools/set_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/set_version.py -------------------------------------------------------------------------------- /libtorrent/tools/test_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/libtorrent/tools/test_coverage.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/package.json -------------------------------------------------------------------------------- /test/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/address.js -------------------------------------------------------------------------------- /test/block/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/block/block.js -------------------------------------------------------------------------------- /test/block/blockheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/block/blockheader.js -------------------------------------------------------------------------------- /test/block/merkleblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/block/merkleblock.js -------------------------------------------------------------------------------- /test/crypto/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/crypto/bn.js -------------------------------------------------------------------------------- /test/crypto/ecdsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/crypto/ecdsa.js -------------------------------------------------------------------------------- /test/crypto/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/crypto/hash.js -------------------------------------------------------------------------------- /test/crypto/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/crypto/point.js -------------------------------------------------------------------------------- /test/crypto/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/crypto/random.js -------------------------------------------------------------------------------- /test/crypto/signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/crypto/signature.js -------------------------------------------------------------------------------- /test/data/bip69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/bip69.json -------------------------------------------------------------------------------- /test/data/bitcoind/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/bitcoind/blocks.json -------------------------------------------------------------------------------- /test/data/bitcoind/tx_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/bitcoind/tx_valid.json -------------------------------------------------------------------------------- /test/data/blk86756-testnet.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/blk86756-testnet.dat -------------------------------------------------------------------------------- /test/data/blk86756-testnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/blk86756-testnet.js -------------------------------------------------------------------------------- /test/data/blk86756-testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/blk86756-testnet.json -------------------------------------------------------------------------------- /test/data/ecdsa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/ecdsa.json -------------------------------------------------------------------------------- /test/data/merkleblocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/merkleblocks.js -------------------------------------------------------------------------------- /test/data/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/messages.json -------------------------------------------------------------------------------- /test/data/sighash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/sighash.json -------------------------------------------------------------------------------- /test/data/tx_creation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/data/tx_creation.json -------------------------------------------------------------------------------- /test/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/docs.js -------------------------------------------------------------------------------- /test/encoding/base58.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/encoding/base58.js -------------------------------------------------------------------------------- /test/encoding/base58check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/encoding/base58check.js -------------------------------------------------------------------------------- /test/encoding/bufferreader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/encoding/bufferreader.js -------------------------------------------------------------------------------- /test/encoding/bufferwriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/encoding/bufferwriter.js -------------------------------------------------------------------------------- /test/encoding/varint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/encoding/varint.js -------------------------------------------------------------------------------- /test/hdkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/hdkeys.js -------------------------------------------------------------------------------- /test/hdprivatekey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/hdprivatekey.js -------------------------------------------------------------------------------- /test/hdpublickey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/hdpublickey.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --timeout 5000 3 | -------------------------------------------------------------------------------- /test/networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/networks.js -------------------------------------------------------------------------------- /test/opcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/opcode.js -------------------------------------------------------------------------------- /test/privatekey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/privatekey.js -------------------------------------------------------------------------------- /test/publickey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/publickey.js -------------------------------------------------------------------------------- /test/script/interpreter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/script/interpreter.js -------------------------------------------------------------------------------- /test/script/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/script/script.js -------------------------------------------------------------------------------- /test/transaction/deserialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/transaction/deserialize.js -------------------------------------------------------------------------------- /test/transaction/input/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/transaction/input/input.js -------------------------------------------------------------------------------- /test/transaction/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/transaction/output.js -------------------------------------------------------------------------------- /test/transaction/sighash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/transaction/sighash.js -------------------------------------------------------------------------------- /test/transaction/signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/transaction/signature.js -------------------------------------------------------------------------------- /test/transaction/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/transaction/transaction.js -------------------------------------------------------------------------------- /test/transaction/unspentoutput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/transaction/unspentoutput.js -------------------------------------------------------------------------------- /test/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/unit.js -------------------------------------------------------------------------------- /test/uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/uri.js -------------------------------------------------------------------------------- /test/util/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/util/buffer.js -------------------------------------------------------------------------------- /test/util/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/util/js.js -------------------------------------------------------------------------------- /test/util/preconditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixAINetwork/Libraries/HEAD/test/util/preconditions.js --------------------------------------------------------------------------------