├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── engine └── main.cpp ├── fflib ├── base │ ├── anytype.h │ ├── arg_helper.h │ ├── atomic_op.h │ ├── daemon_tool.h │ ├── event_bus.cpp │ ├── event_bus.h │ ├── fftype.h │ ├── func.h │ ├── gencode.py │ ├── lock.cpp │ ├── lock.h │ ├── log.cpp │ ├── log.h │ ├── os_tool.h │ ├── osdef.h │ ├── perf_monitor.cpp │ ├── perf_monitor.h │ ├── signal_helper.h │ ├── singleton.h │ ├── smart_ptr.h │ ├── str_tool.h │ ├── task_queue.h │ ├── thread.cpp │ ├── thread.h │ ├── time_tool.h │ └── timer_service.h ├── db │ ├── db_ops.h │ ├── ffdb.cpp │ ├── ffdb.h │ ├── mysql_ops.cpp │ ├── mysql_ops.h │ ├── sqlite3.c │ ├── sqlite3.h │ ├── sqlite3ext.h │ ├── sqlite_ops.cpp │ └── sqlite_ops.h ├── net │ ├── acceptor.h │ ├── acceptortcp.cpp │ ├── acceptortcp.h │ ├── connector.h │ ├── ffnet.h │ ├── ioevent.h │ ├── ioevent_epoll.cpp │ ├── ioevent_epoll.h │ ├── ioevent_select.cpp │ ├── ioevent_select.h │ ├── message.h │ ├── msg_sender.h │ ├── socket.h │ ├── socket_op.h │ ├── socket_protocol.h │ ├── sockettcp.cpp │ ├── sockettcp.h │ ├── udp_socket.h │ └── wsprotocol.h ├── python │ ├── ffpython.cpp │ └── ffpython.h ├── rpc │ ├── ffbroker.cpp │ ├── ffbroker.h │ ├── ffrpc.cpp │ ├── ffrpc.h │ ├── ffrpc_msg.thrift │ ├── msg_def │ │ ├── ffrpc_msg_constants.cpp │ │ ├── ffrpc_msg_constants.h │ │ ├── ffrpc_msg_types.cpp │ │ └── ffrpc_msg_types.h │ └── rpcbase.h ├── server │ ├── cmd_util.cpp │ ├── cmd_util.h │ ├── db_mgr.cpp │ ├── db_mgr.h │ ├── entity.cpp │ ├── entity.h │ ├── ffgate.cpp │ ├── ffgate.h │ ├── fftask_processor.h │ ├── ffworker.cpp │ ├── ffworker.h │ ├── gen-cpp │ │ ├── msg_constants.cpp │ │ ├── msg_constants.h │ │ ├── msg_types.cpp │ │ └── msg_types.h │ ├── http_mgr.cpp │ ├── http_mgr.h │ ├── prop.h │ ├── script.h │ └── script_cache.h └── xml │ ├── ffxml.cpp │ ├── ffxml.h │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp ├── h2.conf ├── lib3party ├── php │ ├── TSRM │ │ ├── TSRM.h │ │ ├── readdir.h │ │ ├── tsrm_config.h │ │ ├── tsrm_config.w32.h │ │ ├── tsrm_config_common.h │ │ ├── tsrm_nw.h │ │ ├── tsrm_strtok_r.h │ │ └── tsrm_win32.h │ ├── Zend │ │ ├── zend.h │ │ ├── zend_API.h │ │ ├── zend_alloc.h │ │ ├── zend_ast.h │ │ ├── zend_build.h │ │ ├── zend_builtin_functions.h │ │ ├── zend_closures.h │ │ ├── zend_compile.h │ │ ├── zend_config.h │ │ ├── zend_config.nw.h │ │ ├── zend_config.w32.h │ │ ├── zend_constants.h │ │ ├── zend_dtrace.h │ │ ├── zend_dynamic_array.h │ │ ├── zend_errors.h │ │ ├── zend_exceptions.h │ │ ├── zend_execute.h │ │ ├── zend_extensions.h │ │ ├── zend_float.h │ │ ├── zend_gc.h │ │ ├── zend_generators.h │ │ ├── zend_globals.h │ │ ├── zend_globals_macros.h │ │ ├── zend_hash.h │ │ ├── zend_highlight.h │ │ ├── zend_indent.h │ │ ├── zend_ini.h │ │ ├── zend_ini_parser.h │ │ ├── zend_ini_scanner.h │ │ ├── zend_ini_scanner_defs.h │ │ ├── zend_interfaces.h │ │ ├── zend_istdiostream.h │ │ ├── zend_iterators.h │ │ ├── zend_language_parser.h │ │ ├── zend_language_scanner.h │ │ ├── zend_language_scanner_defs.h │ │ ├── zend_list.h │ │ ├── zend_llist.h │ │ ├── zend_modules.h │ │ ├── zend_multibyte.h │ │ ├── zend_multiply.h │ │ ├── zend_object_handlers.h │ │ ├── zend_objects.h │ │ ├── zend_objects_API.h │ │ ├── zend_operators.h │ │ ├── zend_ptr_stack.h │ │ ├── zend_qsort.h │ │ ├── zend_signal.h │ │ ├── zend_stack.h │ │ ├── zend_static_allocator.h │ │ ├── zend_stream.h │ │ ├── zend_string.h │ │ ├── zend_strtod.h │ │ ├── zend_ts_hash.h │ │ ├── zend_types.h │ │ ├── zend_variables.h │ │ ├── zend_virtual_cwd.h │ │ ├── zend_vm.h │ │ ├── zend_vm_def.h │ │ ├── zend_vm_execute.h │ │ └── zend_vm_opcodes.h │ ├── embed │ │ └── php_embed.h │ ├── ext │ │ ├── date │ │ │ ├── lib │ │ │ │ ├── timelib.h │ │ │ │ ├── timelib_config.h │ │ │ │ └── timelib_structs.h │ │ │ └── php_date.h │ │ ├── dom │ │ │ └── xml_common.h │ │ ├── ereg │ │ │ ├── php_ereg.h │ │ │ ├── php_regex.h │ │ │ └── regex │ │ │ │ ├── cclass.h │ │ │ │ ├── cname.h │ │ │ │ ├── regex.h │ │ │ │ ├── regex2.h │ │ │ │ └── utils.h │ │ ├── filter │ │ │ └── php_filter.h │ │ ├── hash │ │ │ ├── php_hash.h │ │ │ ├── php_hash_adler32.h │ │ │ ├── php_hash_crc32.h │ │ │ ├── php_hash_fnv.h │ │ │ ├── php_hash_gost.h │ │ │ ├── php_hash_haval.h │ │ │ ├── php_hash_joaat.h │ │ │ ├── php_hash_md.h │ │ │ ├── php_hash_ripemd.h │ │ │ ├── php_hash_sha.h │ │ │ ├── php_hash_snefru.h │ │ │ ├── php_hash_tiger.h │ │ │ └── php_hash_whirlpool.h │ │ ├── iconv │ │ │ ├── php_have_bsd_iconv.h │ │ │ ├── php_have_glibc_iconv.h │ │ │ ├── php_have_ibm_iconv.h │ │ │ ├── php_have_iconv.h │ │ │ ├── php_have_libiconv.h │ │ │ ├── php_iconv.h │ │ │ ├── php_iconv_aliased_libiconv.h │ │ │ ├── php_iconv_broken_ignore.h │ │ │ ├── php_iconv_supports_errno.h │ │ │ ├── php_php_iconv_h_path.h │ │ │ └── php_php_iconv_impl.h │ │ ├── json │ │ │ └── php_json.h │ │ ├── libxml │ │ │ └── php_libxml.h │ │ ├── pcre │ │ │ ├── pcrelib │ │ │ │ ├── config.h │ │ │ │ ├── pcre.h │ │ │ │ ├── pcre_internal.h │ │ │ │ ├── pcreposix.h │ │ │ │ └── ucp.h │ │ │ └── php_pcre.h │ │ ├── pdo │ │ │ ├── php_pdo.h │ │ │ ├── php_pdo_driver.h │ │ │ └── php_pdo_error.h │ │ ├── phar │ │ │ └── php_phar.h │ │ ├── session │ │ │ ├── mod_files.h │ │ │ ├── mod_user.h │ │ │ └── php_session.h │ │ ├── simplexml │ │ │ ├── php_simplexml.h │ │ │ └── php_simplexml_exports.h │ │ ├── spl │ │ │ ├── php_spl.h │ │ │ ├── spl_array.h │ │ │ ├── spl_directory.h │ │ │ ├── spl_dllist.h │ │ │ ├── spl_engine.h │ │ │ ├── spl_exceptions.h │ │ │ ├── spl_fixedarray.h │ │ │ ├── spl_functions.h │ │ │ ├── spl_heap.h │ │ │ ├── spl_iterators.h │ │ │ └── spl_observer.h │ │ ├── sqlite3 │ │ │ └── libsqlite │ │ │ │ └── sqlite3.h │ │ ├── standard │ │ │ ├── base64.h │ │ │ ├── basic_functions.h │ │ │ ├── crc32.h │ │ │ ├── credits.h │ │ │ ├── credits_ext.h │ │ │ ├── credits_sapi.h │ │ │ ├── crypt_blowfish.h │ │ │ ├── crypt_freesec.h │ │ │ ├── css.h │ │ │ ├── cyr_convert.h │ │ │ ├── datetime.h │ │ │ ├── dl.h │ │ │ ├── exec.h │ │ │ ├── file.h │ │ │ ├── flock_compat.h │ │ │ ├── fsock.h │ │ │ ├── head.h │ │ │ ├── html.h │ │ │ ├── html_tables.h │ │ │ ├── info.h │ │ │ ├── md5.h │ │ │ ├── microtime.h │ │ │ ├── pack.h │ │ │ ├── pageinfo.h │ │ │ ├── php_array.h │ │ │ ├── php_assert.h │ │ │ ├── php_browscap.h │ │ │ ├── php_crypt.h │ │ │ ├── php_crypt_r.h │ │ │ ├── php_dir.h │ │ │ ├── php_dns.h │ │ │ ├── php_ext_syslog.h │ │ │ ├── php_filestat.h │ │ │ ├── php_fopen_wrappers.h │ │ │ ├── php_ftok.h │ │ │ ├── php_http.h │ │ │ ├── php_image.h │ │ │ ├── php_incomplete_class.h │ │ │ ├── php_iptc.h │ │ │ ├── php_lcg.h │ │ │ ├── php_link.h │ │ │ ├── php_mail.h │ │ │ ├── php_math.h │ │ │ ├── php_metaphone.h │ │ │ ├── php_password.h │ │ │ ├── php_rand.h │ │ │ ├── php_smart_str.h │ │ │ ├── php_smart_str_public.h │ │ │ ├── php_standard.h │ │ │ ├── php_string.h │ │ │ ├── php_type.h │ │ │ ├── php_uuencode.h │ │ │ ├── php_var.h │ │ │ ├── php_versioning.h │ │ │ ├── proc_open.h │ │ │ ├── quot_print.h │ │ │ ├── scanf.h │ │ │ ├── sha1.h │ │ │ ├── streamsfuncs.h │ │ │ ├── uniqid.h │ │ │ ├── url.h │ │ │ ├── url_scanner_ex.h │ │ │ └── winver.h │ │ └── xml │ │ │ ├── expat_compat.h │ │ │ └── php_xml.h │ ├── main │ │ ├── SAPI.h │ │ ├── build-defs.h │ │ ├── fopen_wrappers.h │ │ ├── php.h │ │ ├── php_compat.h │ │ ├── php_config.h │ │ ├── php_content_types.h │ │ ├── php_getopt.h │ │ ├── php_globals.h │ │ ├── php_ini.h │ │ ├── php_main.h │ │ ├── php_memory_streams.h │ │ ├── php_network.h │ │ ├── php_open_temporary_file.h │ │ ├── php_output.h │ │ ├── php_reentrancy.h │ │ ├── php_scandir.h │ │ ├── php_stdint.h │ │ ├── php_streams.h │ │ ├── php_syslog.h │ │ ├── php_ticks.h │ │ ├── php_variables.h │ │ ├── php_version.h │ │ ├── rfc1867.h │ │ ├── snprintf.h │ │ ├── spprintf.h │ │ ├── streams │ │ │ ├── php_stream_context.h │ │ │ ├── php_stream_filter_api.h │ │ │ ├── php_stream_glob_wrapper.h │ │ │ ├── php_stream_mmap.h │ │ │ ├── php_stream_plain_wrapper.h │ │ │ ├── php_stream_transport.h │ │ │ ├── php_stream_userspace.h │ │ │ └── php_streams_int.h │ │ ├── win32_internal_function_disabled.h │ │ └── win95nt.h │ └── sapi │ │ └── cli │ │ └── cli.h ├── rapidjson │ ├── document.h │ ├── filestream.h │ ├── internal │ │ ├── pow10.h │ │ ├── stack.h │ │ └── strfunc.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── stringbuffer.h │ └── writer.h └── thrift │ ├── FFThrift.h │ ├── TApplicationException.h │ ├── Thrift.h │ ├── ThriftConfig.h │ ├── cxxfunctional.h │ ├── protocol │ ├── TBinaryProtocol.h │ ├── TProtocol.h │ ├── TProtocolException.h │ └── TVirtualProtocol.h │ └── transport │ ├── FFTransport.h │ ├── TTransport.h │ ├── TTransportException.h │ └── TVirtualTransport.h ├── main.js ├── main.lua ├── main.php ├── main.py ├── src ├── chat │ ├── chat.cpp │ └── chat.h ├── common │ ├── common_def.h │ └── game_event.h ├── game.thrift ├── item │ ├── item.cpp │ └── item.h ├── map │ ├── map.cpp │ └── map.h ├── npc │ ├── npc.cpp │ └── npc.h ├── player │ ├── player.cpp │ └── player.h ├── setup.cpp ├── skill │ ├── skill.cpp │ └── skill.h └── task │ ├── task.cpp │ └── task.h ├── tool ├── Makefile.example ├── h2client │ └── index.htm ├── thrift-0.9.1.exe └── thrift-lua.exe ├── winbuild ├── h2.workspace ├── h2.workspace.layout ├── h2engine.cbp ├── h2engine.depend ├── h2engine.layout ├── h2workercpp.cbp ├── h2workercpp.depend ├── h2workercpp.layout ├── h2workerlua.cbp ├── h2workerlua.depend ├── h2workerlua.layout ├── h2workerpy.cbp ├── h2workerpy.depend ├── h2workerpy.layout ├── include │ ├── crypt-private.h │ ├── crypt.h │ ├── curl │ │ ├── curl.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ └── types.h │ ├── lauxlib.h │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ ├── lualib.h │ ├── luna.hpp │ ├── md5.h │ ├── mysql │ │ ├── config-netware.h │ │ ├── config-os2.h │ │ ├── config-win.h │ │ ├── errmsg.h │ │ ├── m_ctype.h │ │ ├── m_string.h │ │ ├── my_alloc.h │ │ ├── my_dbug.h │ │ ├── my_getopt.h │ │ ├── my_global.h │ │ ├── my_list.h │ │ ├── my_pthread.h │ │ ├── my_sys.h │ │ ├── mysql.h │ │ ├── mysql_com.h │ │ ├── mysql_embed.h │ │ ├── mysql_time.h │ │ ├── mysql_version.h │ │ ├── mysqld_ername.h │ │ ├── mysqld_error.h │ │ ├── raid.h │ │ └── typelib.h │ ├── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── cast.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pq_compat.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── sha.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── tmdiff.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h │ ├── ufc-crypt.h │ ├── zconf.h │ └── zlib.h ├── lib │ ├── libcrypto.a │ ├── libcurl.a │ ├── liblua.a │ ├── libmysql.a │ ├── libpython27.a │ ├── libssl.a │ └── libz.a ├── libmysql.dll └── python27.dll ├── workercpp ├── ffworker_cpp.cpp ├── ffworker_cpp.h └── main.cpp ├── workercs ├── Makefile ├── bin │ └── Release │ │ └── netcoreapp2.1 │ │ ├── workercs.deps.json │ │ ├── workercs.dll │ │ ├── workercs.pdb │ │ ├── workercs.runtimeconfig.dev.json │ │ └── workercs.runtimeconfig.json ├── fflib │ ├── RpcMsg │ │ ├── BrokerRouteMsgReq.cs │ │ ├── EmptyMsgRet.cs │ │ ├── GateBroadcastMsgToSessionReq.cs │ │ ├── GateChangeLogicNodeReq.cs │ │ ├── GateCloseSessionReq.cs │ │ ├── GateRouteMsgToSessionReq.cs │ │ ├── RegisterToBrokerReq.cs │ │ ├── RegisterToBrokerRet.cs │ │ ├── RouteLogicMsgReq.cs │ │ ├── SessionEnterWorkerReq.cs │ │ ├── SessionOfflineReq.cs │ │ ├── VarData.cs │ │ ├── WorkerCallMsgReq.cs │ │ └── WorkerCallMsgRet.cs │ ├── acceptor.cs │ ├── cfgtool.cs │ ├── csvtool.cs │ ├── dbmgr.cs │ ├── dbops.cs │ ├── entity.cs │ ├── event_bus.cs │ ├── ffbroker.cs │ ├── ffnet.cs │ ├── ffrpc.cs │ ├── ffsocket.cs │ ├── gate.cs │ ├── log.cs │ ├── mysqlops.cs │ ├── perf.cs │ ├── pyscript.cs │ ├── task_queue.cs │ ├── util.cs │ ├── worker.cs │ └── wsprotocol.cs ├── main.cs ├── src │ ├── Pbmsg.cs │ ├── game_util.cs │ ├── monster.cs │ ├── player.cs │ └── role.cs ├── thrift │ ├── Collections │ │ ├── TCollections.cs │ │ └── THashSet.cs │ ├── Net35 │ │ └── ExtensionsNet35.cs │ ├── Protocol │ │ ├── TAbstractBase.cs │ │ ├── TBase.cs │ │ ├── TBase64Utils.cs │ │ ├── TBinaryProtocol.cs │ │ ├── TCompactProtocol.cs │ │ ├── TField.cs │ │ ├── TJSONProtocol.cs │ │ ├── TList.cs │ │ ├── TMap.cs │ │ ├── TMessage.cs │ │ ├── TMessageType.cs │ │ ├── TMultiplexedProcessor.cs │ │ ├── TMultiplexedProtocol.cs │ │ ├── TProtocol.cs │ │ ├── TProtocolDecorator.cs │ │ ├── TProtocolException.cs │ │ ├── TProtocolFactory.cs │ │ ├── TProtocolUtil.cs │ │ ├── TSet.cs │ │ ├── TStruct.cs │ │ └── TType.cs │ ├── Server │ │ ├── TServer.cs │ │ ├── TServerEventHandler.cs │ │ ├── TSimpleServer.cs │ │ ├── TThreadPoolServer.cs │ │ └── TThreadedServer.cs │ ├── TApplicationException.cs │ ├── TAsyncProcessor.cs │ ├── TControllingHandler.cs │ ├── TException.cs │ ├── TProcessor.cs │ ├── TProcessorFactory.cs │ ├── TPrototypeProcessorFactory.cs │ ├── TSingletonProcessorFactory.cs │ └── Transport │ │ ├── TBufferedTransport.cs │ │ ├── TFramedTransport.cs │ │ ├── THttpClient.cs │ │ ├── TMemoryBuffer.cs │ │ ├── TServerSocket.cs │ │ ├── TServerTransport.cs │ │ ├── TSilverlightSocket.cs │ │ ├── TSocket.cs │ │ ├── TSocketVersionizer.cs │ │ ├── TStreamTransport.cs │ │ ├── TTLSServerSocket.cs │ │ ├── TTLSSocket.cs │ │ ├── TTransport.cs │ │ ├── TTransportException.cs │ │ └── TTransportFactory.cs ├── workercs.csproj └── workercs.sln ├── workerjs ├── ffworker_js.cpp ├── ffworker_js.h └── main.cpp ├── workerlua ├── ffworker_lua.cpp ├── ffworker_lua.h ├── luaops.h └── main.cpp ├── workerphp ├── ffworker_php.cpp ├── ffworker_php.h └── main.cpp └── workerpy ├── ffworker_python.cpp ├── ffworker_python.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/README.md -------------------------------------------------------------------------------- /engine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/engine/main.cpp -------------------------------------------------------------------------------- /fflib/base/anytype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/anytype.h -------------------------------------------------------------------------------- /fflib/base/arg_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/arg_helper.h -------------------------------------------------------------------------------- /fflib/base/atomic_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/atomic_op.h -------------------------------------------------------------------------------- /fflib/base/daemon_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/daemon_tool.h -------------------------------------------------------------------------------- /fflib/base/event_bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/event_bus.cpp -------------------------------------------------------------------------------- /fflib/base/event_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/event_bus.h -------------------------------------------------------------------------------- /fflib/base/fftype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/fftype.h -------------------------------------------------------------------------------- /fflib/base/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/func.h -------------------------------------------------------------------------------- /fflib/base/gencode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/gencode.py -------------------------------------------------------------------------------- /fflib/base/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/lock.cpp -------------------------------------------------------------------------------- /fflib/base/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/lock.h -------------------------------------------------------------------------------- /fflib/base/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/log.cpp -------------------------------------------------------------------------------- /fflib/base/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/log.h -------------------------------------------------------------------------------- /fflib/base/os_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/os_tool.h -------------------------------------------------------------------------------- /fflib/base/osdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/osdef.h -------------------------------------------------------------------------------- /fflib/base/perf_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/perf_monitor.cpp -------------------------------------------------------------------------------- /fflib/base/perf_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/perf_monitor.h -------------------------------------------------------------------------------- /fflib/base/signal_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/signal_helper.h -------------------------------------------------------------------------------- /fflib/base/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/singleton.h -------------------------------------------------------------------------------- /fflib/base/smart_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/smart_ptr.h -------------------------------------------------------------------------------- /fflib/base/str_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/str_tool.h -------------------------------------------------------------------------------- /fflib/base/task_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/task_queue.h -------------------------------------------------------------------------------- /fflib/base/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/thread.cpp -------------------------------------------------------------------------------- /fflib/base/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/thread.h -------------------------------------------------------------------------------- /fflib/base/time_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/time_tool.h -------------------------------------------------------------------------------- /fflib/base/timer_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/base/timer_service.h -------------------------------------------------------------------------------- /fflib/db/db_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/db_ops.h -------------------------------------------------------------------------------- /fflib/db/ffdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/ffdb.cpp -------------------------------------------------------------------------------- /fflib/db/ffdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/ffdb.h -------------------------------------------------------------------------------- /fflib/db/mysql_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/mysql_ops.cpp -------------------------------------------------------------------------------- /fflib/db/mysql_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/mysql_ops.h -------------------------------------------------------------------------------- /fflib/db/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/sqlite3.c -------------------------------------------------------------------------------- /fflib/db/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/sqlite3.h -------------------------------------------------------------------------------- /fflib/db/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/sqlite3ext.h -------------------------------------------------------------------------------- /fflib/db/sqlite_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/sqlite_ops.cpp -------------------------------------------------------------------------------- /fflib/db/sqlite_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/db/sqlite_ops.h -------------------------------------------------------------------------------- /fflib/net/acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/acceptor.h -------------------------------------------------------------------------------- /fflib/net/acceptortcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/acceptortcp.cpp -------------------------------------------------------------------------------- /fflib/net/acceptortcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/acceptortcp.h -------------------------------------------------------------------------------- /fflib/net/connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/connector.h -------------------------------------------------------------------------------- /fflib/net/ffnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/ffnet.h -------------------------------------------------------------------------------- /fflib/net/ioevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/ioevent.h -------------------------------------------------------------------------------- /fflib/net/ioevent_epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/ioevent_epoll.cpp -------------------------------------------------------------------------------- /fflib/net/ioevent_epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/ioevent_epoll.h -------------------------------------------------------------------------------- /fflib/net/ioevent_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/ioevent_select.cpp -------------------------------------------------------------------------------- /fflib/net/ioevent_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/ioevent_select.h -------------------------------------------------------------------------------- /fflib/net/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/message.h -------------------------------------------------------------------------------- /fflib/net/msg_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/msg_sender.h -------------------------------------------------------------------------------- /fflib/net/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/socket.h -------------------------------------------------------------------------------- /fflib/net/socket_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/socket_op.h -------------------------------------------------------------------------------- /fflib/net/socket_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/socket_protocol.h -------------------------------------------------------------------------------- /fflib/net/sockettcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/sockettcp.cpp -------------------------------------------------------------------------------- /fflib/net/sockettcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/sockettcp.h -------------------------------------------------------------------------------- /fflib/net/udp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/udp_socket.h -------------------------------------------------------------------------------- /fflib/net/wsprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/net/wsprotocol.h -------------------------------------------------------------------------------- /fflib/python/ffpython.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/python/ffpython.cpp -------------------------------------------------------------------------------- /fflib/python/ffpython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/python/ffpython.h -------------------------------------------------------------------------------- /fflib/rpc/ffbroker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/ffbroker.cpp -------------------------------------------------------------------------------- /fflib/rpc/ffbroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/ffbroker.h -------------------------------------------------------------------------------- /fflib/rpc/ffrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/ffrpc.cpp -------------------------------------------------------------------------------- /fflib/rpc/ffrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/ffrpc.h -------------------------------------------------------------------------------- /fflib/rpc/ffrpc_msg.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/ffrpc_msg.thrift -------------------------------------------------------------------------------- /fflib/rpc/msg_def/ffrpc_msg_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/msg_def/ffrpc_msg_constants.cpp -------------------------------------------------------------------------------- /fflib/rpc/msg_def/ffrpc_msg_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/msg_def/ffrpc_msg_constants.h -------------------------------------------------------------------------------- /fflib/rpc/msg_def/ffrpc_msg_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/msg_def/ffrpc_msg_types.cpp -------------------------------------------------------------------------------- /fflib/rpc/msg_def/ffrpc_msg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/msg_def/ffrpc_msg_types.h -------------------------------------------------------------------------------- /fflib/rpc/rpcbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/rpc/rpcbase.h -------------------------------------------------------------------------------- /fflib/server/cmd_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/cmd_util.cpp -------------------------------------------------------------------------------- /fflib/server/cmd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/cmd_util.h -------------------------------------------------------------------------------- /fflib/server/db_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/db_mgr.cpp -------------------------------------------------------------------------------- /fflib/server/db_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/db_mgr.h -------------------------------------------------------------------------------- /fflib/server/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/entity.cpp -------------------------------------------------------------------------------- /fflib/server/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/entity.h -------------------------------------------------------------------------------- /fflib/server/ffgate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/ffgate.cpp -------------------------------------------------------------------------------- /fflib/server/ffgate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/ffgate.h -------------------------------------------------------------------------------- /fflib/server/fftask_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/fftask_processor.h -------------------------------------------------------------------------------- /fflib/server/ffworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/ffworker.cpp -------------------------------------------------------------------------------- /fflib/server/ffworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/ffworker.h -------------------------------------------------------------------------------- /fflib/server/gen-cpp/msg_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/gen-cpp/msg_constants.cpp -------------------------------------------------------------------------------- /fflib/server/gen-cpp/msg_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/gen-cpp/msg_constants.h -------------------------------------------------------------------------------- /fflib/server/gen-cpp/msg_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/gen-cpp/msg_types.cpp -------------------------------------------------------------------------------- /fflib/server/gen-cpp/msg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/gen-cpp/msg_types.h -------------------------------------------------------------------------------- /fflib/server/http_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/http_mgr.cpp -------------------------------------------------------------------------------- /fflib/server/http_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/http_mgr.h -------------------------------------------------------------------------------- /fflib/server/prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/prop.h -------------------------------------------------------------------------------- /fflib/server/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/script.h -------------------------------------------------------------------------------- /fflib/server/script_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/server/script_cache.h -------------------------------------------------------------------------------- /fflib/xml/ffxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/xml/ffxml.cpp -------------------------------------------------------------------------------- /fflib/xml/ffxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/xml/ffxml.h -------------------------------------------------------------------------------- /fflib/xml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/xml/tinystr.cpp -------------------------------------------------------------------------------- /fflib/xml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/xml/tinystr.h -------------------------------------------------------------------------------- /fflib/xml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/xml/tinyxml.cpp -------------------------------------------------------------------------------- /fflib/xml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/xml/tinyxml.h -------------------------------------------------------------------------------- /fflib/xml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/xml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /fflib/xml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/fflib/xml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /h2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/h2.conf -------------------------------------------------------------------------------- /lib3party/php/TSRM/TSRM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/TSRM/TSRM.h -------------------------------------------------------------------------------- /lib3party/php/TSRM/readdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/TSRM/readdir.h -------------------------------------------------------------------------------- /lib3party/php/TSRM/tsrm_config.h: -------------------------------------------------------------------------------- 1 | #include <../main/php_config.h> 2 | -------------------------------------------------------------------------------- /lib3party/php/TSRM/tsrm_config.w32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/TSRM/tsrm_config.w32.h -------------------------------------------------------------------------------- /lib3party/php/TSRM/tsrm_config_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/TSRM/tsrm_config_common.h -------------------------------------------------------------------------------- /lib3party/php/TSRM/tsrm_nw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/TSRM/tsrm_nw.h -------------------------------------------------------------------------------- /lib3party/php/TSRM/tsrm_strtok_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/TSRM/tsrm_strtok_r.h -------------------------------------------------------------------------------- /lib3party/php/TSRM/tsrm_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/TSRM/tsrm_win32.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_API.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_alloc.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_ast.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_build.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_builtin_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_builtin_functions.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_closures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_closures.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_compile.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_config.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_config.nw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_config.nw.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_config.w32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_config.w32.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_constants.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_dtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_dtrace.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_dynamic_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_dynamic_array.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_errors.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_exceptions.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_execute.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_extensions.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_float.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_gc.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_generators.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_globals.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_globals_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_globals_macros.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_hash.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_highlight.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_indent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_indent.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_ini.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_ini_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_ini_parser.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_ini_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_ini_scanner.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_ini_scanner_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_ini_scanner_defs.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_interfaces.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_istdiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_istdiostream.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_iterators.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_language_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_language_parser.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_language_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_language_scanner.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_language_scanner_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_language_scanner_defs.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_list.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_llist.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_modules.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_multibyte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_multibyte.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_multiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_multiply.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_object_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_object_handlers.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_objects.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_objects_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_objects_API.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_operators.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_ptr_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_ptr_stack.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_qsort.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_signal.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_stack.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_static_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_static_allocator.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_stream.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_string.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_strtod.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_ts_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_ts_hash.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_types.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_variables.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_virtual_cwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_virtual_cwd.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_vm.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_vm_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_vm_def.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_vm_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_vm_execute.h -------------------------------------------------------------------------------- /lib3party/php/Zend/zend_vm_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/Zend/zend_vm_opcodes.h -------------------------------------------------------------------------------- /lib3party/php/embed/php_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/embed/php_embed.h -------------------------------------------------------------------------------- /lib3party/php/ext/date/lib/timelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/date/lib/timelib.h -------------------------------------------------------------------------------- /lib3party/php/ext/date/lib/timelib_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/date/lib/timelib_config.h -------------------------------------------------------------------------------- /lib3party/php/ext/date/lib/timelib_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/date/lib/timelib_structs.h -------------------------------------------------------------------------------- /lib3party/php/ext/date/php_date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/date/php_date.h -------------------------------------------------------------------------------- /lib3party/php/ext/dom/xml_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/dom/xml_common.h -------------------------------------------------------------------------------- /lib3party/php/ext/ereg/php_ereg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/ereg/php_ereg.h -------------------------------------------------------------------------------- /lib3party/php/ext/ereg/php_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/ereg/php_regex.h -------------------------------------------------------------------------------- /lib3party/php/ext/ereg/regex/cclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/ereg/regex/cclass.h -------------------------------------------------------------------------------- /lib3party/php/ext/ereg/regex/cname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/ereg/regex/cname.h -------------------------------------------------------------------------------- /lib3party/php/ext/ereg/regex/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/ereg/regex/regex.h -------------------------------------------------------------------------------- /lib3party/php/ext/ereg/regex/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/ereg/regex/regex2.h -------------------------------------------------------------------------------- /lib3party/php/ext/ereg/regex/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/ereg/regex/utils.h -------------------------------------------------------------------------------- /lib3party/php/ext/filter/php_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/filter/php_filter.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_adler32.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_crc32.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_fnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_fnv.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_gost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_gost.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_haval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_haval.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_joaat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_joaat.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_md.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_ripemd.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_sha.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_snefru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_snefru.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_tiger.h -------------------------------------------------------------------------------- /lib3party/php/ext/hash/php_hash_whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/hash/php_hash_whirlpool.h -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_have_bsd_iconv.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_have_glibc_iconv.h: -------------------------------------------------------------------------------- 1 | #define HAVE_GLIBC_ICONV 1 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_have_ibm_iconv.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_have_iconv.h: -------------------------------------------------------------------------------- 1 | #define HAVE_ICONV 1 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_have_libiconv.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/iconv/php_iconv.h -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_iconv_aliased_libiconv.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_iconv_broken_ignore.h: -------------------------------------------------------------------------------- 1 | #define ICONV_BROKEN_IGNORE 1 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_iconv_supports_errno.h: -------------------------------------------------------------------------------- 1 | #define ICONV_SUPPORTS_ERRNO 1 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_php_iconv_h_path.h: -------------------------------------------------------------------------------- 1 | #define PHP_ICONV_H_PATH 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/iconv/php_php_iconv_impl.h: -------------------------------------------------------------------------------- 1 | #define PHP_ICONV_IMPL "glibc" 2 | -------------------------------------------------------------------------------- /lib3party/php/ext/json/php_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/json/php_json.h -------------------------------------------------------------------------------- /lib3party/php/ext/libxml/php_libxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/libxml/php_libxml.h -------------------------------------------------------------------------------- /lib3party/php/ext/pcre/pcrelib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pcre/pcrelib/config.h -------------------------------------------------------------------------------- /lib3party/php/ext/pcre/pcrelib/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pcre/pcrelib/pcre.h -------------------------------------------------------------------------------- /lib3party/php/ext/pcre/pcrelib/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pcre/pcrelib/pcre_internal.h -------------------------------------------------------------------------------- /lib3party/php/ext/pcre/pcrelib/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pcre/pcrelib/pcreposix.h -------------------------------------------------------------------------------- /lib3party/php/ext/pcre/pcrelib/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pcre/pcrelib/ucp.h -------------------------------------------------------------------------------- /lib3party/php/ext/pcre/php_pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pcre/php_pcre.h -------------------------------------------------------------------------------- /lib3party/php/ext/pdo/php_pdo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pdo/php_pdo.h -------------------------------------------------------------------------------- /lib3party/php/ext/pdo/php_pdo_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pdo/php_pdo_driver.h -------------------------------------------------------------------------------- /lib3party/php/ext/pdo/php_pdo_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/pdo/php_pdo_error.h -------------------------------------------------------------------------------- /lib3party/php/ext/phar/php_phar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/phar/php_phar.h -------------------------------------------------------------------------------- /lib3party/php/ext/session/mod_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/session/mod_files.h -------------------------------------------------------------------------------- /lib3party/php/ext/session/mod_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/session/mod_user.h -------------------------------------------------------------------------------- /lib3party/php/ext/session/php_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/session/php_session.h -------------------------------------------------------------------------------- /lib3party/php/ext/simplexml/php_simplexml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/simplexml/php_simplexml.h -------------------------------------------------------------------------------- /lib3party/php/ext/simplexml/php_simplexml_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/simplexml/php_simplexml_exports.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/php_spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/php_spl.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_array.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_directory.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_dllist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_dllist.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_engine.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_exceptions.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_fixedarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_fixedarray.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_functions.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_heap.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_iterators.h -------------------------------------------------------------------------------- /lib3party/php/ext/spl/spl_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/spl/spl_observer.h -------------------------------------------------------------------------------- /lib3party/php/ext/sqlite3/libsqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/sqlite3/libsqlite/sqlite3.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/base64.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/basic_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/basic_functions.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/crc32.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/credits.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/credits_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/credits_ext.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/credits_sapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/credits_sapi.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/crypt_blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/crypt_blowfish.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/crypt_freesec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/crypt_freesec.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/css.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/cyr_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/cyr_convert.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/datetime.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/dl.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/exec.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/file.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/flock_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/flock_compat.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/fsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/fsock.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/head.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/html.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/html_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/html_tables.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/info.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/md5.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/microtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/microtime.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/pack.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/pageinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/pageinfo.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_array.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_assert.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_browscap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_browscap.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_crypt.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_crypt_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_crypt_r.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_dir.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_dns.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_ext_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_ext_syslog.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_filestat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_filestat.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_fopen_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_fopen_wrappers.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_ftok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_ftok.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_http.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_image.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_incomplete_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_incomplete_class.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_iptc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_iptc.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_lcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_lcg.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_link.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_mail.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_math.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_metaphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_metaphone.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_password.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_rand.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_smart_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_smart_str.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_smart_str_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_smart_str_public.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_standard.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_string.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_type.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_uuencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_uuencode.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_var.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/php_versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/php_versioning.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/proc_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/proc_open.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/quot_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/quot_print.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/scanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/scanf.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/sha1.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/streamsfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/streamsfuncs.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/uniqid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/uniqid.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/url.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/url_scanner_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/url_scanner_ex.h -------------------------------------------------------------------------------- /lib3party/php/ext/standard/winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/standard/winver.h -------------------------------------------------------------------------------- /lib3party/php/ext/xml/expat_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/xml/expat_compat.h -------------------------------------------------------------------------------- /lib3party/php/ext/xml/php_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/ext/xml/php_xml.h -------------------------------------------------------------------------------- /lib3party/php/main/SAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/SAPI.h -------------------------------------------------------------------------------- /lib3party/php/main/build-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/build-defs.h -------------------------------------------------------------------------------- /lib3party/php/main/fopen_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/fopen_wrappers.h -------------------------------------------------------------------------------- /lib3party/php/main/php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php.h -------------------------------------------------------------------------------- /lib3party/php/main/php_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_compat.h -------------------------------------------------------------------------------- /lib3party/php/main/php_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_config.h -------------------------------------------------------------------------------- /lib3party/php/main/php_content_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_content_types.h -------------------------------------------------------------------------------- /lib3party/php/main/php_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_getopt.h -------------------------------------------------------------------------------- /lib3party/php/main/php_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_globals.h -------------------------------------------------------------------------------- /lib3party/php/main/php_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_ini.h -------------------------------------------------------------------------------- /lib3party/php/main/php_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_main.h -------------------------------------------------------------------------------- /lib3party/php/main/php_memory_streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_memory_streams.h -------------------------------------------------------------------------------- /lib3party/php/main/php_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_network.h -------------------------------------------------------------------------------- /lib3party/php/main/php_open_temporary_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_open_temporary_file.h -------------------------------------------------------------------------------- /lib3party/php/main/php_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_output.h -------------------------------------------------------------------------------- /lib3party/php/main/php_reentrancy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_reentrancy.h -------------------------------------------------------------------------------- /lib3party/php/main/php_scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_scandir.h -------------------------------------------------------------------------------- /lib3party/php/main/php_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_stdint.h -------------------------------------------------------------------------------- /lib3party/php/main/php_streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_streams.h -------------------------------------------------------------------------------- /lib3party/php/main/php_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_syslog.h -------------------------------------------------------------------------------- /lib3party/php/main/php_ticks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_ticks.h -------------------------------------------------------------------------------- /lib3party/php/main/php_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_variables.h -------------------------------------------------------------------------------- /lib3party/php/main/php_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/php_version.h -------------------------------------------------------------------------------- /lib3party/php/main/rfc1867.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/rfc1867.h -------------------------------------------------------------------------------- /lib3party/php/main/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/snprintf.h -------------------------------------------------------------------------------- /lib3party/php/main/spprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/spprintf.h -------------------------------------------------------------------------------- /lib3party/php/main/streams/php_stream_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/streams/php_stream_context.h -------------------------------------------------------------------------------- /lib3party/php/main/streams/php_stream_filter_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/streams/php_stream_filter_api.h -------------------------------------------------------------------------------- /lib3party/php/main/streams/php_stream_glob_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/streams/php_stream_glob_wrapper.h -------------------------------------------------------------------------------- /lib3party/php/main/streams/php_stream_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/streams/php_stream_mmap.h -------------------------------------------------------------------------------- /lib3party/php/main/streams/php_stream_plain_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/streams/php_stream_plain_wrapper.h -------------------------------------------------------------------------------- /lib3party/php/main/streams/php_stream_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/streams/php_stream_transport.h -------------------------------------------------------------------------------- /lib3party/php/main/streams/php_stream_userspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/streams/php_stream_userspace.h -------------------------------------------------------------------------------- /lib3party/php/main/streams/php_streams_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/streams/php_streams_int.h -------------------------------------------------------------------------------- /lib3party/php/main/win32_internal_function_disabled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/win32_internal_function_disabled.h -------------------------------------------------------------------------------- /lib3party/php/main/win95nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/main/win95nt.h -------------------------------------------------------------------------------- /lib3party/php/sapi/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/php/sapi/cli/cli.h -------------------------------------------------------------------------------- /lib3party/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/document.h -------------------------------------------------------------------------------- /lib3party/rapidjson/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/filestream.h -------------------------------------------------------------------------------- /lib3party/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /lib3party/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /lib3party/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /lib3party/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /lib3party/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /lib3party/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/reader.h -------------------------------------------------------------------------------- /lib3party/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /lib3party/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/rapidjson/writer.h -------------------------------------------------------------------------------- /lib3party/thrift/FFThrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/FFThrift.h -------------------------------------------------------------------------------- /lib3party/thrift/TApplicationException.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib3party/thrift/Thrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/Thrift.h -------------------------------------------------------------------------------- /lib3party/thrift/ThriftConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/ThriftConfig.h -------------------------------------------------------------------------------- /lib3party/thrift/cxxfunctional.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lib3party/thrift/protocol/TBinaryProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/protocol/TBinaryProtocol.h -------------------------------------------------------------------------------- /lib3party/thrift/protocol/TProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/protocol/TProtocol.h -------------------------------------------------------------------------------- /lib3party/thrift/protocol/TProtocolException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/protocol/TProtocolException.h -------------------------------------------------------------------------------- /lib3party/thrift/protocol/TVirtualProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/protocol/TVirtualProtocol.h -------------------------------------------------------------------------------- /lib3party/thrift/transport/FFTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/transport/FFTransport.h -------------------------------------------------------------------------------- /lib3party/thrift/transport/TTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/transport/TTransport.h -------------------------------------------------------------------------------- /lib3party/thrift/transport/TTransportException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/transport/TTransportException.h -------------------------------------------------------------------------------- /lib3party/thrift/transport/TVirtualTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/lib3party/thrift/transport/TVirtualTransport.h -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/main.js -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/main.lua -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/main.php -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/main.py -------------------------------------------------------------------------------- /src/chat/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/chat/chat.cpp -------------------------------------------------------------------------------- /src/chat/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/chat/chat.h -------------------------------------------------------------------------------- /src/common/common_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/common/common_def.h -------------------------------------------------------------------------------- /src/common/game_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/common/game_event.h -------------------------------------------------------------------------------- /src/game.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/game.thrift -------------------------------------------------------------------------------- /src/item/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/item/item.cpp -------------------------------------------------------------------------------- /src/item/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/item/item.h -------------------------------------------------------------------------------- /src/map/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/map/map.cpp -------------------------------------------------------------------------------- /src/map/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/map/map.h -------------------------------------------------------------------------------- /src/npc/npc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/npc/npc.cpp -------------------------------------------------------------------------------- /src/npc/npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/npc/npc.h -------------------------------------------------------------------------------- /src/player/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/player/player.cpp -------------------------------------------------------------------------------- /src/player/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/player/player.h -------------------------------------------------------------------------------- /src/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/setup.cpp -------------------------------------------------------------------------------- /src/skill/skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/skill/skill.cpp -------------------------------------------------------------------------------- /src/skill/skill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/skill/skill.h -------------------------------------------------------------------------------- /src/task/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/task/task.cpp -------------------------------------------------------------------------------- /src/task/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/src/task/task.h -------------------------------------------------------------------------------- /tool/Makefile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/tool/Makefile.example -------------------------------------------------------------------------------- /tool/h2client/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/tool/h2client/index.htm -------------------------------------------------------------------------------- /tool/thrift-0.9.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/tool/thrift-0.9.1.exe -------------------------------------------------------------------------------- /tool/thrift-lua.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/tool/thrift-lua.exe -------------------------------------------------------------------------------- /winbuild/h2.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2.workspace -------------------------------------------------------------------------------- /winbuild/h2.workspace.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2.workspace.layout -------------------------------------------------------------------------------- /winbuild/h2engine.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2engine.cbp -------------------------------------------------------------------------------- /winbuild/h2engine.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2engine.depend -------------------------------------------------------------------------------- /winbuild/h2engine.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2engine.layout -------------------------------------------------------------------------------- /winbuild/h2workercpp.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workercpp.cbp -------------------------------------------------------------------------------- /winbuild/h2workercpp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workercpp.depend -------------------------------------------------------------------------------- /winbuild/h2workercpp.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workercpp.layout -------------------------------------------------------------------------------- /winbuild/h2workerlua.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workerlua.cbp -------------------------------------------------------------------------------- /winbuild/h2workerlua.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workerlua.depend -------------------------------------------------------------------------------- /winbuild/h2workerlua.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workerlua.layout -------------------------------------------------------------------------------- /winbuild/h2workerpy.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workerpy.cbp -------------------------------------------------------------------------------- /winbuild/h2workerpy.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workerpy.depend -------------------------------------------------------------------------------- /winbuild/h2workerpy.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/h2workerpy.layout -------------------------------------------------------------------------------- /winbuild/include/crypt-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/crypt-private.h -------------------------------------------------------------------------------- /winbuild/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/crypt.h -------------------------------------------------------------------------------- /winbuild/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/curl/curl.h -------------------------------------------------------------------------------- /winbuild/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/curl/curlver.h -------------------------------------------------------------------------------- /winbuild/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/curl/easy.h -------------------------------------------------------------------------------- /winbuild/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/curl/mprintf.h -------------------------------------------------------------------------------- /winbuild/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/curl/multi.h -------------------------------------------------------------------------------- /winbuild/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /winbuild/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /winbuild/include/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/lauxlib.h -------------------------------------------------------------------------------- /winbuild/include/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/lua.h -------------------------------------------------------------------------------- /winbuild/include/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/lua.hpp -------------------------------------------------------------------------------- /winbuild/include/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/luaconf.h -------------------------------------------------------------------------------- /winbuild/include/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/lualib.h -------------------------------------------------------------------------------- /winbuild/include/luna.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/luna.hpp -------------------------------------------------------------------------------- /winbuild/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/md5.h -------------------------------------------------------------------------------- /winbuild/include/mysql/config-netware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/config-netware.h -------------------------------------------------------------------------------- /winbuild/include/mysql/config-os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/config-os2.h -------------------------------------------------------------------------------- /winbuild/include/mysql/config-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/config-win.h -------------------------------------------------------------------------------- /winbuild/include/mysql/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/errmsg.h -------------------------------------------------------------------------------- /winbuild/include/mysql/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/m_ctype.h -------------------------------------------------------------------------------- /winbuild/include/mysql/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/m_string.h -------------------------------------------------------------------------------- /winbuild/include/mysql/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/my_alloc.h -------------------------------------------------------------------------------- /winbuild/include/mysql/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/my_dbug.h -------------------------------------------------------------------------------- /winbuild/include/mysql/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/my_getopt.h -------------------------------------------------------------------------------- /winbuild/include/mysql/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/my_global.h -------------------------------------------------------------------------------- /winbuild/include/mysql/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/my_list.h -------------------------------------------------------------------------------- /winbuild/include/mysql/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/my_pthread.h -------------------------------------------------------------------------------- /winbuild/include/mysql/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/my_sys.h -------------------------------------------------------------------------------- /winbuild/include/mysql/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/mysql.h -------------------------------------------------------------------------------- /winbuild/include/mysql/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/mysql_com.h -------------------------------------------------------------------------------- /winbuild/include/mysql/mysql_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/mysql_embed.h -------------------------------------------------------------------------------- /winbuild/include/mysql/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/mysql_time.h -------------------------------------------------------------------------------- /winbuild/include/mysql/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/mysql_version.h -------------------------------------------------------------------------------- /winbuild/include/mysql/mysqld_ername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/mysqld_ername.h -------------------------------------------------------------------------------- /winbuild/include/mysql/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/mysqld_error.h -------------------------------------------------------------------------------- /winbuild/include/mysql/raid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/raid.h -------------------------------------------------------------------------------- /winbuild/include/mysql/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/mysql/typelib.h -------------------------------------------------------------------------------- /winbuild/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/aes.h -------------------------------------------------------------------------------- /winbuild/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/asn1.h -------------------------------------------------------------------------------- /winbuild/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /winbuild/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/asn1t.h -------------------------------------------------------------------------------- /winbuild/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/bio.h -------------------------------------------------------------------------------- /winbuild/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/blowfish.h -------------------------------------------------------------------------------- /winbuild/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/bn.h -------------------------------------------------------------------------------- /winbuild/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/buffer.h -------------------------------------------------------------------------------- /winbuild/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/cast.h -------------------------------------------------------------------------------- /winbuild/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/comp.h -------------------------------------------------------------------------------- /winbuild/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/conf.h -------------------------------------------------------------------------------- /winbuild/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/conf_api.h -------------------------------------------------------------------------------- /winbuild/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/crypto.h -------------------------------------------------------------------------------- /winbuild/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/des.h -------------------------------------------------------------------------------- /winbuild/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/des_old.h -------------------------------------------------------------------------------- /winbuild/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/dh.h -------------------------------------------------------------------------------- /winbuild/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/dsa.h -------------------------------------------------------------------------------- /winbuild/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/dso.h -------------------------------------------------------------------------------- /winbuild/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/dtls1.h -------------------------------------------------------------------------------- /winbuild/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/e_os2.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ec.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ecdh.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /winbuild/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/engine.h -------------------------------------------------------------------------------- /winbuild/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/err.h -------------------------------------------------------------------------------- /winbuild/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/evp.h -------------------------------------------------------------------------------- /winbuild/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/hmac.h -------------------------------------------------------------------------------- /winbuild/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/idea.h -------------------------------------------------------------------------------- /winbuild/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /winbuild/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/kssl.h -------------------------------------------------------------------------------- /winbuild/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/lhash.h -------------------------------------------------------------------------------- /winbuild/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/md2.h -------------------------------------------------------------------------------- /winbuild/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/md4.h -------------------------------------------------------------------------------- /winbuild/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/md5.h -------------------------------------------------------------------------------- /winbuild/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /winbuild/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/objects.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ocsp.h -------------------------------------------------------------------------------- /winbuild/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /winbuild/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/opensslv.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /winbuild/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/pem.h -------------------------------------------------------------------------------- /winbuild/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/pem2.h -------------------------------------------------------------------------------- /winbuild/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /winbuild/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /winbuild/include/openssl/pq_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/pq_compat.h -------------------------------------------------------------------------------- /winbuild/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/pqueue.h -------------------------------------------------------------------------------- /winbuild/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/rand.h -------------------------------------------------------------------------------- /winbuild/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/rc2.h -------------------------------------------------------------------------------- /winbuild/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/rc4.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ripemd.h -------------------------------------------------------------------------------- /winbuild/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/rsa.h -------------------------------------------------------------------------------- /winbuild/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/safestack.h -------------------------------------------------------------------------------- /winbuild/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/sha.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ssl.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ssl2.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ssl23.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ssl3.h -------------------------------------------------------------------------------- /winbuild/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/stack.h -------------------------------------------------------------------------------- /winbuild/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/store.h -------------------------------------------------------------------------------- /winbuild/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/symhacks.h -------------------------------------------------------------------------------- /winbuild/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/tls1.h -------------------------------------------------------------------------------- /winbuild/include/openssl/tmdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/tmdiff.h -------------------------------------------------------------------------------- /winbuild/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/txt_db.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ui.h -------------------------------------------------------------------------------- /winbuild/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /winbuild/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/x509.h -------------------------------------------------------------------------------- /winbuild/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /winbuild/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/openssl/x509v3.h -------------------------------------------------------------------------------- /winbuild/include/ufc-crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/ufc-crypt.h -------------------------------------------------------------------------------- /winbuild/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/zconf.h -------------------------------------------------------------------------------- /winbuild/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/include/zlib.h -------------------------------------------------------------------------------- /winbuild/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/lib/libcrypto.a -------------------------------------------------------------------------------- /winbuild/lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/lib/libcurl.a -------------------------------------------------------------------------------- /winbuild/lib/liblua.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/lib/liblua.a -------------------------------------------------------------------------------- /winbuild/lib/libmysql.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/lib/libmysql.a -------------------------------------------------------------------------------- /winbuild/lib/libpython27.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/lib/libpython27.a -------------------------------------------------------------------------------- /winbuild/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/lib/libssl.a -------------------------------------------------------------------------------- /winbuild/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/lib/libz.a -------------------------------------------------------------------------------- /winbuild/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/libmysql.dll -------------------------------------------------------------------------------- /winbuild/python27.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/winbuild/python27.dll -------------------------------------------------------------------------------- /workercpp/ffworker_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercpp/ffworker_cpp.cpp -------------------------------------------------------------------------------- /workercpp/ffworker_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercpp/ffworker_cpp.h -------------------------------------------------------------------------------- /workercpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercpp/main.cpp -------------------------------------------------------------------------------- /workercs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/Makefile -------------------------------------------------------------------------------- /workercs/bin/Release/netcoreapp2.1/workercs.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/bin/Release/netcoreapp2.1/workercs.deps.json -------------------------------------------------------------------------------- /workercs/bin/Release/netcoreapp2.1/workercs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/bin/Release/netcoreapp2.1/workercs.dll -------------------------------------------------------------------------------- /workercs/bin/Release/netcoreapp2.1/workercs.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/bin/Release/netcoreapp2.1/workercs.pdb -------------------------------------------------------------------------------- /workercs/bin/Release/netcoreapp2.1/workercs.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/bin/Release/netcoreapp2.1/workercs.runtimeconfig.dev.json -------------------------------------------------------------------------------- /workercs/bin/Release/netcoreapp2.1/workercs.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/bin/Release/netcoreapp2.1/workercs.runtimeconfig.json -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/BrokerRouteMsgReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/BrokerRouteMsgReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/EmptyMsgRet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/EmptyMsgRet.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/GateBroadcastMsgToSessionReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/GateBroadcastMsgToSessionReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/GateChangeLogicNodeReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/GateChangeLogicNodeReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/GateCloseSessionReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/GateCloseSessionReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/GateRouteMsgToSessionReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/GateRouteMsgToSessionReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/RegisterToBrokerReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/RegisterToBrokerReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/RegisterToBrokerRet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/RegisterToBrokerRet.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/RouteLogicMsgReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/RouteLogicMsgReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/SessionEnterWorkerReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/SessionEnterWorkerReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/SessionOfflineReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/SessionOfflineReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/VarData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/VarData.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/WorkerCallMsgReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/WorkerCallMsgReq.cs -------------------------------------------------------------------------------- /workercs/fflib/RpcMsg/WorkerCallMsgRet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/RpcMsg/WorkerCallMsgRet.cs -------------------------------------------------------------------------------- /workercs/fflib/acceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/acceptor.cs -------------------------------------------------------------------------------- /workercs/fflib/cfgtool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/cfgtool.cs -------------------------------------------------------------------------------- /workercs/fflib/csvtool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/csvtool.cs -------------------------------------------------------------------------------- /workercs/fflib/dbmgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/dbmgr.cs -------------------------------------------------------------------------------- /workercs/fflib/dbops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/dbops.cs -------------------------------------------------------------------------------- /workercs/fflib/entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/entity.cs -------------------------------------------------------------------------------- /workercs/fflib/event_bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/event_bus.cs -------------------------------------------------------------------------------- /workercs/fflib/ffbroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/ffbroker.cs -------------------------------------------------------------------------------- /workercs/fflib/ffnet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/ffnet.cs -------------------------------------------------------------------------------- /workercs/fflib/ffrpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/ffrpc.cs -------------------------------------------------------------------------------- /workercs/fflib/ffsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/ffsocket.cs -------------------------------------------------------------------------------- /workercs/fflib/gate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/gate.cs -------------------------------------------------------------------------------- /workercs/fflib/log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/log.cs -------------------------------------------------------------------------------- /workercs/fflib/mysqlops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/mysqlops.cs -------------------------------------------------------------------------------- /workercs/fflib/perf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/perf.cs -------------------------------------------------------------------------------- /workercs/fflib/pyscript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/pyscript.cs -------------------------------------------------------------------------------- /workercs/fflib/task_queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/task_queue.cs -------------------------------------------------------------------------------- /workercs/fflib/util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/util.cs -------------------------------------------------------------------------------- /workercs/fflib/worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/worker.cs -------------------------------------------------------------------------------- /workercs/fflib/wsprotocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/fflib/wsprotocol.cs -------------------------------------------------------------------------------- /workercs/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/main.cs -------------------------------------------------------------------------------- /workercs/src/Pbmsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/src/Pbmsg.cs -------------------------------------------------------------------------------- /workercs/src/game_util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/src/game_util.cs -------------------------------------------------------------------------------- /workercs/src/monster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/src/monster.cs -------------------------------------------------------------------------------- /workercs/src/player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/src/player.cs -------------------------------------------------------------------------------- /workercs/src/role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/src/role.cs -------------------------------------------------------------------------------- /workercs/thrift/Collections/TCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Collections/TCollections.cs -------------------------------------------------------------------------------- /workercs/thrift/Collections/THashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Collections/THashSet.cs -------------------------------------------------------------------------------- /workercs/thrift/Net35/ExtensionsNet35.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Net35/ExtensionsNet35.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TAbstractBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TAbstractBase.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TBase.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TBase64Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TBase64Utils.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TBinaryProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TBinaryProtocol.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TCompactProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TCompactProtocol.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TField.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TJSONProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TJSONProtocol.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TList.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TMap.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TMessage.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TMessageType.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TMultiplexedProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TMultiplexedProcessor.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TMultiplexedProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TMultiplexedProtocol.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TProtocol.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TProtocolDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TProtocolDecorator.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TProtocolException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TProtocolException.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TProtocolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TProtocolFactory.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TProtocolUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TProtocolUtil.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TSet.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TStruct.cs -------------------------------------------------------------------------------- /workercs/thrift/Protocol/TType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Protocol/TType.cs -------------------------------------------------------------------------------- /workercs/thrift/Server/TServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Server/TServer.cs -------------------------------------------------------------------------------- /workercs/thrift/Server/TServerEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Server/TServerEventHandler.cs -------------------------------------------------------------------------------- /workercs/thrift/Server/TSimpleServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Server/TSimpleServer.cs -------------------------------------------------------------------------------- /workercs/thrift/Server/TThreadPoolServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Server/TThreadPoolServer.cs -------------------------------------------------------------------------------- /workercs/thrift/Server/TThreadedServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Server/TThreadedServer.cs -------------------------------------------------------------------------------- /workercs/thrift/TApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/TApplicationException.cs -------------------------------------------------------------------------------- /workercs/thrift/TAsyncProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/TAsyncProcessor.cs -------------------------------------------------------------------------------- /workercs/thrift/TControllingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/TControllingHandler.cs -------------------------------------------------------------------------------- /workercs/thrift/TException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/TException.cs -------------------------------------------------------------------------------- /workercs/thrift/TProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/TProcessor.cs -------------------------------------------------------------------------------- /workercs/thrift/TProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/TProcessorFactory.cs -------------------------------------------------------------------------------- /workercs/thrift/TPrototypeProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/TPrototypeProcessorFactory.cs -------------------------------------------------------------------------------- /workercs/thrift/TSingletonProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/TSingletonProcessorFactory.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TBufferedTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TBufferedTransport.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TFramedTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TFramedTransport.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/THttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/THttpClient.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TMemoryBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TMemoryBuffer.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TServerSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TServerSocket.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TServerTransport.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TSilverlightSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TSilverlightSocket.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TSocket.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TSocketVersionizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TSocketVersionizer.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TStreamTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TStreamTransport.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TTLSServerSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TTLSServerSocket.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TTLSSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TTLSSocket.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TTransport.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TTransportException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TTransportException.cs -------------------------------------------------------------------------------- /workercs/thrift/Transport/TTransportFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/thrift/Transport/TTransportFactory.cs -------------------------------------------------------------------------------- /workercs/workercs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/workercs.csproj -------------------------------------------------------------------------------- /workercs/workercs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workercs/workercs.sln -------------------------------------------------------------------------------- /workerjs/ffworker_js.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerjs/ffworker_js.cpp -------------------------------------------------------------------------------- /workerjs/ffworker_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerjs/ffworker_js.h -------------------------------------------------------------------------------- /workerjs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerjs/main.cpp -------------------------------------------------------------------------------- /workerlua/ffworker_lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerlua/ffworker_lua.cpp -------------------------------------------------------------------------------- /workerlua/ffworker_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerlua/ffworker_lua.h -------------------------------------------------------------------------------- /workerlua/luaops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerlua/luaops.h -------------------------------------------------------------------------------- /workerlua/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerlua/main.cpp -------------------------------------------------------------------------------- /workerphp/ffworker_php.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerphp/ffworker_php.cpp -------------------------------------------------------------------------------- /workerphp/ffworker_php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerphp/ffworker_php.h -------------------------------------------------------------------------------- /workerphp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerphp/main.cpp -------------------------------------------------------------------------------- /workerpy/ffworker_python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerpy/ffworker_python.cpp -------------------------------------------------------------------------------- /workerpy/ffworker_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerpy/ffworker_python.h -------------------------------------------------------------------------------- /workerpy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanchy/h2engine/HEAD/workerpy/main.cpp --------------------------------------------------------------------------------