├── .gitattributes ├── .gitignore ├── README.md ├── bin └── server │ ├── kill_server.bat │ ├── libmysql.dll │ ├── libmysql_release.dll │ ├── server │ ├── dbtable │ │ └── dota_players.xml │ ├── dbtables.xml │ ├── kbengine_defs.xml │ └── log4cxx_properties │ │ ├── baseapp.properties │ │ ├── baseappmgr.properties │ │ ├── bots.properties │ │ ├── cellapp.properties │ │ ├── cellappmgr.properties │ │ ├── dbmgr.properties │ │ ├── interfaces.properties │ │ ├── logger.properties │ │ ├── loginapp.properties │ │ ├── machine.properties │ │ └── unknown.properties │ ├── serverConfig.xml │ └── start_server.bat ├── doc ├── class.png ├── compents.png └── dbconfig.png ├── src ├── lib │ ├── Makefile │ ├── common │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── blowfish.cpp │ │ ├── blowfish.h │ │ ├── common.cpp │ │ ├── common.h │ │ ├── common.vcxproj │ │ ├── common.vcxproj.filters │ │ ├── deadline.h │ │ ├── format.cpp │ │ ├── format.h │ │ ├── kbekey.cpp │ │ ├── kbekey.h │ │ ├── kbemalloc.h │ │ ├── kbeversion.cpp │ │ ├── kbeversion.h │ │ ├── md5.cpp │ │ ├── md5.h │ │ ├── memorystream.cpp │ │ ├── memorystream.h │ │ ├── memorystream_converter.h │ │ ├── objectpool.h │ │ ├── platform.h │ │ ├── refcountable.h │ │ ├── rsa.cpp │ │ ├── rsa.h │ │ ├── sha1.cpp │ │ ├── sha1.h │ │ ├── singleton.h │ │ ├── smartpointer.h │ │ ├── stdfindif_handers.h │ │ ├── stringconv.h │ │ ├── strutil.cpp │ │ ├── strutil.h │ │ ├── task.h │ │ ├── tasks.cpp │ │ ├── tasks.h │ │ ├── timer.cpp │ │ ├── timer.h │ │ ├── timer.inl │ │ ├── timestamp.cpp │ │ └── timestamp.h │ ├── db_interface │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── db_interface.cpp │ │ ├── db_interface.h │ │ ├── db_interface.vcxproj │ │ ├── db_interface.vcxproj.filters │ │ ├── db_tasks.cpp │ │ ├── db_tasks.h │ │ ├── db_threadpool.cpp │ │ ├── db_threadpool.h │ │ ├── entity_table.cpp │ │ ├── entity_table.h │ │ ├── kbe_tables.cpp │ │ └── kbe_tables.h │ ├── db_mysql │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── common.cpp │ │ ├── common.h │ │ ├── db_context.h │ │ ├── db_exception.cpp │ │ ├── db_exception.h │ │ ├── db_interface_mysql.cpp │ │ ├── db_interface_mysql.h │ │ ├── db_mysql.vcxproj │ │ ├── db_mysql.vcxproj.filters │ │ ├── db_transaction.cpp │ │ ├── db_transaction.h │ │ ├── entity_table_mysql.cpp │ │ ├── entity_table_mysql.h │ │ ├── entity_table_mysql.inl │ │ ├── kbe_table_mysql.cpp │ │ ├── kbe_table_mysql.h │ │ ├── read_entity_helper.h │ │ ├── remove_entity_helper.h │ │ ├── sqlstatement.h │ │ └── write_entity_helper.h │ ├── db_redis │ │ ├── ClassDiagram.cd │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── common.cpp │ │ ├── common.h │ │ ├── db_interface_redis.cpp │ │ ├── db_interface_redis.h │ │ ├── db_redis.vcxproj │ │ └── db_redis.vcxproj.filters │ ├── dependencies │ │ ├── apr-util │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Makefile.win │ │ │ ├── NOTICE │ │ │ ├── NWGNUmakefile │ │ │ ├── README │ │ │ ├── README.cmake │ │ │ ├── apr-util.pc.in │ │ │ ├── apr-util.spec │ │ │ ├── aprutil.dep │ │ │ ├── aprutil.dsp │ │ │ ├── aprutil.dsw │ │ │ ├── aprutil.mak │ │ │ ├── aprutil.vcproj │ │ │ ├── aprutil.vcxproj │ │ │ ├── aprutil.vcxproj.filters │ │ │ ├── apu-config.in │ │ │ ├── buckets │ │ │ │ ├── apr_brigade.c │ │ │ │ ├── apr_buckets.c │ │ │ │ ├── apr_buckets_alloc.c │ │ │ │ ├── apr_buckets_eos.c │ │ │ │ ├── apr_buckets_file.c │ │ │ │ ├── apr_buckets_flush.c │ │ │ │ ├── apr_buckets_heap.c │ │ │ │ ├── apr_buckets_mmap.c │ │ │ │ ├── apr_buckets_pipe.c │ │ │ │ ├── apr_buckets_pool.c │ │ │ │ ├── apr_buckets_refcount.c │ │ │ │ ├── apr_buckets_simple.c │ │ │ │ └── apr_buckets_socket.c │ │ │ ├── build-outputs.mk │ │ │ ├── build.conf │ │ │ ├── build │ │ │ │ ├── apr_common.m4 │ │ │ │ ├── apu-conf.m4 │ │ │ │ ├── apu-hints.m4 │ │ │ │ ├── apu-iconv.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── crypto.m4 │ │ │ │ ├── dbd.m4 │ │ │ │ ├── dbm.m4 │ │ │ │ ├── dso.m4 │ │ │ │ ├── find_apr.m4 │ │ │ │ ├── find_apu.m4 │ │ │ │ ├── get-version.sh │ │ │ │ ├── install.sh │ │ │ │ ├── mkdir.sh │ │ │ │ ├── nw_apu_export.inc │ │ │ │ ├── pkg │ │ │ │ │ ├── README │ │ │ │ │ ├── buildpkg.sh │ │ │ │ │ └── pkginfo.in │ │ │ │ ├── preaprutil.dsp │ │ │ │ ├── rpm │ │ │ │ │ └── apr-util.spec.in │ │ │ │ └── w32locatedb.pl │ │ │ ├── buildconf │ │ │ ├── config.layout │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crypto │ │ │ │ ├── apr_crypto.c │ │ │ │ ├── apr_crypto_nss.c │ │ │ │ ├── apr_crypto_nss.dep │ │ │ │ ├── apr_crypto_nss.dsp │ │ │ │ ├── apr_crypto_nss.mak │ │ │ │ ├── apr_crypto_openssl.c │ │ │ │ ├── apr_crypto_openssl.dep │ │ │ │ ├── apr_crypto_openssl.dsp │ │ │ │ ├── apr_crypto_openssl.mak │ │ │ │ ├── apr_md4.c │ │ │ │ ├── apr_md5.c │ │ │ │ ├── apr_passwd.c │ │ │ │ ├── apr_sha1.c │ │ │ │ ├── crypt_blowfish.c │ │ │ │ ├── crypt_blowfish.h │ │ │ │ ├── getuuid.c │ │ │ │ └── uuid.c │ │ │ ├── dbd │ │ │ │ ├── NWGNUdbdfreetds │ │ │ │ ├── NWGNUdbdmysql │ │ │ │ ├── NWGNUdbdpgsql │ │ │ │ ├── NWGNUdbdsqli2 │ │ │ │ ├── NWGNUdbdsqli3 │ │ │ │ ├── NWGNUmakefile │ │ │ │ ├── apr_dbd.c │ │ │ │ ├── apr_dbd_freetds.c │ │ │ │ ├── apr_dbd_freetds.dep │ │ │ │ ├── apr_dbd_freetds.dsp │ │ │ │ ├── apr_dbd_freetds.mak │ │ │ │ ├── apr_dbd_mysql.c │ │ │ │ ├── apr_dbd_mysql.dep │ │ │ │ ├── apr_dbd_mysql.dsp │ │ │ │ ├── apr_dbd_mysql.mak │ │ │ │ ├── apr_dbd_odbc.c │ │ │ │ ├── apr_dbd_odbc.dep │ │ │ │ ├── apr_dbd_odbc.dsp │ │ │ │ ├── apr_dbd_odbc.mak │ │ │ │ ├── apr_dbd_oracle.c │ │ │ │ ├── apr_dbd_oracle.dep │ │ │ │ ├── apr_dbd_oracle.dsp │ │ │ │ ├── apr_dbd_oracle.mak │ │ │ │ ├── apr_dbd_pgsql.c │ │ │ │ ├── apr_dbd_pgsql.dep │ │ │ │ ├── apr_dbd_pgsql.dsp │ │ │ │ ├── apr_dbd_pgsql.mak │ │ │ │ ├── apr_dbd_sqlite2.c │ │ │ │ ├── apr_dbd_sqlite2.dep │ │ │ │ ├── apr_dbd_sqlite2.dsp │ │ │ │ ├── apr_dbd_sqlite2.mak │ │ │ │ ├── apr_dbd_sqlite3.c │ │ │ │ ├── apr_dbd_sqlite3.dep │ │ │ │ ├── apr_dbd_sqlite3.dsp │ │ │ │ └── apr_dbd_sqlite3.mak │ │ │ ├── dbm │ │ │ │ ├── NWGNUdbmdb │ │ │ │ ├── NWGNUdbmgdbm │ │ │ │ ├── NWGNUmakefile │ │ │ │ ├── apr_dbm.c │ │ │ │ ├── apr_dbm_berkeleydb.c │ │ │ │ ├── apr_dbm_db.dep │ │ │ │ ├── apr_dbm_db.dsp │ │ │ │ ├── apr_dbm_db.mak │ │ │ │ ├── apr_dbm_gdbm.c │ │ │ │ ├── apr_dbm_gdbm.dep │ │ │ │ ├── apr_dbm_gdbm.dsp │ │ │ │ ├── apr_dbm_gdbm.mak │ │ │ │ ├── apr_dbm_ndbm.c │ │ │ │ ├── apr_dbm_sdbm.c │ │ │ │ └── sdbm │ │ │ │ │ ├── sdbm.c │ │ │ │ │ ├── sdbm_hash.c │ │ │ │ │ ├── sdbm_lock.c │ │ │ │ │ ├── sdbm_pair.c │ │ │ │ │ ├── sdbm_pair.h │ │ │ │ │ ├── sdbm_private.h │ │ │ │ │ └── sdbm_tune.h │ │ │ ├── docs │ │ │ │ └── doxygen.conf │ │ │ ├── encoding │ │ │ │ └── apr_base64.c │ │ │ ├── export_vars.sh.in │ │ │ ├── hooks │ │ │ │ └── apr_hooks.c │ │ │ ├── include │ │ │ │ ├── apr_anylock.h │ │ │ │ ├── apr_base64.h │ │ │ │ ├── apr_buckets.h │ │ │ │ ├── apr_crypto.h │ │ │ │ ├── apr_date.h │ │ │ │ ├── apr_dbd.h │ │ │ │ ├── apr_dbm.h │ │ │ │ ├── apr_hooks.h │ │ │ │ ├── apr_ldap.h.in │ │ │ │ ├── apr_ldap.hnw │ │ │ │ ├── apr_ldap.hw │ │ │ │ ├── apr_ldap.hwc │ │ │ │ ├── apr_ldap_init.h │ │ │ │ ├── apr_ldap_option.h │ │ │ │ ├── apr_ldap_rebind.h │ │ │ │ ├── apr_ldap_url.h │ │ │ │ ├── apr_md4.h │ │ │ │ ├── apr_md5.h │ │ │ │ ├── apr_memcache.h │ │ │ │ ├── apr_optional.h │ │ │ │ ├── apr_optional_hooks.h │ │ │ │ ├── apr_queue.h │ │ │ │ ├── apr_reslist.h │ │ │ │ ├── apr_rmm.h │ │ │ │ ├── apr_sdbm.h │ │ │ │ ├── apr_sha1.h │ │ │ │ ├── apr_strmatch.h │ │ │ │ ├── apr_thread_pool.h │ │ │ │ ├── apr_uri.h │ │ │ │ ├── apr_uuid.h │ │ │ │ ├── apr_xlate.h │ │ │ │ ├── apr_xml.h │ │ │ │ ├── apu.h.in │ │ │ │ ├── apu.hnw │ │ │ │ ├── apu.hw │ │ │ │ ├── apu.hwc │ │ │ │ ├── apu_errno.h │ │ │ │ ├── apu_version.h │ │ │ │ ├── apu_want.h.in │ │ │ │ ├── apu_want.hnw │ │ │ │ ├── apu_want.hw │ │ │ │ └── private │ │ │ │ │ ├── apr_crypto_internal.h │ │ │ │ │ ├── apr_dbd_internal.h │ │ │ │ │ ├── apr_dbd_odbc_v2.h │ │ │ │ │ ├── apr_dbm_private.h │ │ │ │ │ ├── apu_config.h.in │ │ │ │ │ ├── apu_config.hnw │ │ │ │ │ ├── apu_config.hw │ │ │ │ │ ├── apu_internal.h │ │ │ │ │ ├── apu_select_dbm.h.in │ │ │ │ │ └── apu_select_dbm.hw │ │ │ ├── ldap │ │ │ │ ├── NWGNUmakefile │ │ │ │ ├── apr_ldap.dep │ │ │ │ ├── apr_ldap.dsp │ │ │ │ ├── apr_ldap.mak │ │ │ │ ├── apr_ldap_init.c │ │ │ │ ├── apr_ldap_option.c │ │ │ │ ├── apr_ldap_rebind.c │ │ │ │ ├── apr_ldap_stub.c │ │ │ │ └── apr_ldap_url.c │ │ │ ├── libaprutil.dep │ │ │ ├── libaprutil.dsp │ │ │ ├── libaprutil.mak │ │ │ ├── libaprutil.rc │ │ │ ├── memcache │ │ │ │ └── apr_memcache.c │ │ │ ├── misc │ │ │ │ ├── apr_date.c │ │ │ │ ├── apr_queue.c │ │ │ │ ├── apr_reslist.c │ │ │ │ ├── apr_rmm.c │ │ │ │ ├── apr_thread_pool.c │ │ │ │ ├── apu_dso.c │ │ │ │ └── apu_version.c │ │ │ ├── renames_pending │ │ │ ├── strmatch │ │ │ │ └── apr_strmatch.c │ │ │ ├── test │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.win │ │ │ │ ├── NWGNUaputest │ │ │ │ ├── NWGNUmakefile │ │ │ │ ├── abts.c │ │ │ │ ├── abts.h │ │ │ │ ├── abts_tests.h │ │ │ │ ├── data │ │ │ │ │ └── billion-laughs.xml │ │ │ │ ├── dbd.c │ │ │ │ ├── nw_misc.c │ │ │ │ ├── test_apu.h │ │ │ │ ├── testall.dsw │ │ │ │ ├── testbuckets.c │ │ │ │ ├── testcrypto.c │ │ │ │ ├── testdate.c │ │ │ │ ├── testdbd.c │ │ │ │ ├── testdbm.c │ │ │ │ ├── testldap.c │ │ │ │ ├── testmd4.c │ │ │ │ ├── testmd5.c │ │ │ │ ├── testmemcache.c │ │ │ │ ├── testpass.c │ │ │ │ ├── testqueue.c │ │ │ │ ├── testreslist.c │ │ │ │ ├── testrmm.c │ │ │ │ ├── teststrmatch.c │ │ │ │ ├── testuri.c │ │ │ │ ├── testutil.c │ │ │ │ ├── testutil.h │ │ │ │ ├── testutildll.dsp │ │ │ │ ├── testutillib.dsp │ │ │ │ ├── testuuid.c │ │ │ │ ├── testxlate.c │ │ │ │ └── testxml.c │ │ │ ├── uri │ │ │ │ └── apr_uri.c │ │ │ ├── xlate │ │ │ │ └── xlate.c │ │ │ └── xml │ │ │ │ ├── NWGNUmakefile │ │ │ │ ├── apr_xml.c │ │ │ │ └── expat │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── buildconf.sh │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── conftools │ │ │ │ ├── PrintPath │ │ │ │ ├── ac_c_bigendian_cross.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── install-sh │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltmain.sh │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ └── mkinstalldirs │ │ │ │ ├── expat_config.h.in │ │ │ │ ├── lib │ │ │ │ ├── ascii.h │ │ │ │ ├── asciitab.h │ │ │ │ ├── expat.dsp │ │ │ │ ├── expat.h │ │ │ │ ├── expat.vcproj │ │ │ │ ├── expat.vcxproj │ │ │ │ ├── expat.vcxproj.filters │ │ │ │ ├── expat_config.hnw │ │ │ │ ├── iasciitab.h │ │ │ │ ├── internal.h │ │ │ │ ├── latin1tab.h │ │ │ │ ├── map_osd_ebcdic_df04_1.h │ │ │ │ ├── nametab.h │ │ │ │ ├── osd_ebcdic_df04_1.h │ │ │ │ ├── utf8tab.h │ │ │ │ ├── winconfig.h │ │ │ │ ├── xml.dep │ │ │ │ ├── xml.dsp │ │ │ │ ├── xml.mak │ │ │ │ ├── xml.vcproj │ │ │ │ ├── xmlparse.c │ │ │ │ ├── xmlrole.c │ │ │ │ ├── xmlrole.h │ │ │ │ ├── xmltok.c │ │ │ │ ├── xmltok.h │ │ │ │ ├── xmltok_impl.c │ │ │ │ ├── xmltok_impl.h │ │ │ │ └── xmltok_ns.c │ │ │ │ └── win32 │ │ │ │ ├── MANIFEST.txt │ │ │ │ └── expat.iss │ │ ├── apr │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Makefile.win │ │ │ ├── NOTICE │ │ │ ├── NWGNUmakefile │ │ │ ├── README │ │ │ ├── README.cmake │ │ │ ├── apr-config.in │ │ │ ├── apr.dep │ │ │ ├── apr.dsp │ │ │ ├── apr.dsw │ │ │ ├── apr.mak │ │ │ ├── apr.pc.in │ │ │ ├── apr.spec │ │ │ ├── apr.vcproj │ │ │ ├── apr.vcxproj │ │ │ ├── apr.vcxproj.filters │ │ │ ├── atomic │ │ │ │ ├── netware │ │ │ │ │ └── apr_atomic.c │ │ │ │ ├── os390 │ │ │ │ │ └── atomic.c │ │ │ │ ├── unix │ │ │ │ │ ├── builtins.c │ │ │ │ │ ├── ia32.c │ │ │ │ │ ├── mutex.c │ │ │ │ │ ├── ppc.c │ │ │ │ │ ├── s390.c │ │ │ │ │ └── solaris.c │ │ │ │ └── win32 │ │ │ │ │ └── apr_atomic.c │ │ │ ├── build-outputs.mk │ │ │ ├── build.conf │ │ │ ├── build │ │ │ │ ├── MakeEtags │ │ │ │ ├── NWGNUenvironment.inc │ │ │ │ ├── NWGNUhead.inc │ │ │ │ ├── NWGNUmakefile │ │ │ │ ├── NWGNUtail.inc │ │ │ │ ├── PrintPath │ │ │ │ ├── aplibtool.c │ │ │ │ ├── apr_common.m4 │ │ │ │ ├── apr_hints.m4 │ │ │ │ ├── apr_network.m4 │ │ │ │ ├── apr_rules.mk.in │ │ │ │ ├── apr_threads.m4 │ │ │ │ ├── apr_win32.m4 │ │ │ │ ├── aprapp.dep │ │ │ │ ├── aprapp.dsp │ │ │ │ ├── aprapp.mak │ │ │ │ ├── buildcheck.sh │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── cvtdsp.pl │ │ │ │ ├── find_apr.m4 │ │ │ │ ├── fixwin32mak.pl │ │ │ │ ├── gen-build.py │ │ │ │ ├── get-version.sh │ │ │ │ ├── install.sh │ │ │ │ ├── jlibtool.c │ │ │ │ ├── libaprapp.dep │ │ │ │ ├── libaprapp.dsp │ │ │ │ ├── libaprapp.mak │ │ │ │ ├── libtool.m4 │ │ │ │ ├── lineends.pl │ │ │ │ ├── ltmain.sh │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ ├── make_exports.awk │ │ │ │ ├── make_nw_export.awk │ │ │ │ ├── make_var_export.awk │ │ │ │ ├── mkdir.sh │ │ │ │ ├── nw_export.inc │ │ │ │ ├── nw_make_header.awk │ │ │ │ ├── nw_ver.awk │ │ │ │ ├── pkg │ │ │ │ │ ├── README │ │ │ │ │ ├── buildpkg.sh │ │ │ │ │ └── pkginfo.in │ │ │ │ ├── preaprapp.dsp │ │ │ │ ├── prelibaprapp.dsp │ │ │ │ ├── rpm │ │ │ │ │ └── apr.spec.in │ │ │ │ ├── run-gcov.sh │ │ │ │ └── win32ver.awk │ │ │ ├── buildconf │ │ │ ├── config.layout │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── docs │ │ │ │ ├── APRDesign.html │ │ │ │ ├── canonical_filenames.html │ │ │ │ ├── doxygen.conf │ │ │ │ ├── incomplete_types │ │ │ │ ├── non_apr_programs │ │ │ │ ├── pool-design.html │ │ │ │ └── win32_builds.html │ │ │ ├── dso │ │ │ │ ├── aix │ │ │ │ │ └── dso.c │ │ │ │ ├── beos │ │ │ │ │ └── dso.c │ │ │ │ ├── netware │ │ │ │ │ └── dso.c │ │ │ │ ├── os2 │ │ │ │ │ └── dso.c │ │ │ │ ├── os390 │ │ │ │ │ └── dso.c │ │ │ │ ├── unix │ │ │ │ │ └── dso.c │ │ │ │ └── win32 │ │ │ │ │ └── dso.c │ │ │ ├── emacs-mode │ │ │ ├── encoding │ │ │ │ └── apr_escape.c │ │ │ ├── file_io │ │ │ │ ├── netware │ │ │ │ │ ├── filepath.c │ │ │ │ │ ├── filestat.c │ │ │ │ │ ├── filesys.c │ │ │ │ │ ├── flock.c │ │ │ │ │ ├── mktemp.c │ │ │ │ │ └── pipe.c │ │ │ │ ├── os2 │ │ │ │ │ ├── buffer.c │ │ │ │ │ ├── copy.c │ │ │ │ │ ├── dir.c │ │ │ │ │ ├── dir_make_recurse.c │ │ │ │ │ ├── fileacc.c │ │ │ │ │ ├── filedup.c │ │ │ │ │ ├── filepath.c │ │ │ │ │ ├── filepath_util.c │ │ │ │ │ ├── filestat.c │ │ │ │ │ ├── filesys.c │ │ │ │ │ ├── flock.c │ │ │ │ │ ├── fullrw.c │ │ │ │ │ ├── maperrorcode.c │ │ │ │ │ ├── mktemp.c │ │ │ │ │ ├── open.c │ │ │ │ │ ├── pipe.c │ │ │ │ │ ├── readwrite.c │ │ │ │ │ ├── seek.c │ │ │ │ │ └── tempdir.c │ │ │ │ ├── unix │ │ │ │ │ ├── buffer.c │ │ │ │ │ ├── copy.c │ │ │ │ │ ├── dir.c │ │ │ │ │ ├── fileacc.c │ │ │ │ │ ├── filedup.c │ │ │ │ │ ├── filepath.c │ │ │ │ │ ├── filepath_util.c │ │ │ │ │ ├── filestat.c │ │ │ │ │ ├── flock.c │ │ │ │ │ ├── fullrw.c │ │ │ │ │ ├── mktemp.c │ │ │ │ │ ├── open.c │ │ │ │ │ ├── pipe.c │ │ │ │ │ ├── readwrite.c │ │ │ │ │ ├── seek.c │ │ │ │ │ └── tempdir.c │ │ │ │ └── win32 │ │ │ │ │ ├── buffer.c │ │ │ │ │ ├── dir.c │ │ │ │ │ ├── filedup.c │ │ │ │ │ ├── filepath.c │ │ │ │ │ ├── filestat.c │ │ │ │ │ ├── filesys.c │ │ │ │ │ ├── flock.c │ │ │ │ │ ├── open.c │ │ │ │ │ ├── pipe.c │ │ │ │ │ ├── readwrite.c │ │ │ │ │ └── seek.c │ │ │ ├── helpers │ │ │ │ └── apr_rename.pl │ │ │ ├── include │ │ │ │ ├── apr.h.in │ │ │ │ ├── apr.hnw │ │ │ │ ├── apr.hw │ │ │ │ ├── apr.hwc │ │ │ │ ├── apr_allocator.h │ │ │ │ ├── apr_atomic.h │ │ │ │ ├── apr_dso.h │ │ │ │ ├── apr_env.h │ │ │ │ ├── apr_errno.h │ │ │ │ ├── apr_escape.h │ │ │ │ ├── apr_file_info.h │ │ │ │ ├── apr_file_io.h │ │ │ │ ├── apr_fnmatch.h │ │ │ │ ├── apr_general.h │ │ │ │ ├── apr_getopt.h │ │ │ │ ├── apr_global_mutex.h │ │ │ │ ├── apr_hash.h │ │ │ │ ├── apr_inherit.h │ │ │ │ ├── apr_lib.h │ │ │ │ ├── apr_mmap.h │ │ │ │ ├── apr_network_io.h │ │ │ │ ├── apr_poll.h │ │ │ │ ├── apr_pools.h │ │ │ │ ├── apr_portable.h │ │ │ │ ├── apr_proc_mutex.h │ │ │ │ ├── apr_random.h │ │ │ │ ├── apr_ring.h │ │ │ │ ├── apr_shm.h │ │ │ │ ├── apr_signal.h │ │ │ │ ├── apr_skiplist.h │ │ │ │ ├── apr_strings.h │ │ │ │ ├── apr_support.h │ │ │ │ ├── apr_tables.h │ │ │ │ ├── apr_thread_cond.h │ │ │ │ ├── apr_thread_mutex.h │ │ │ │ ├── apr_thread_proc.h │ │ │ │ ├── apr_thread_rwlock.h │ │ │ │ ├── apr_time.h │ │ │ │ ├── apr_user.h │ │ │ │ ├── apr_version.h │ │ │ │ ├── apr_want.h │ │ │ │ └── arch │ │ │ │ │ ├── aix │ │ │ │ │ └── apr_arch_dso.h │ │ │ │ │ ├── apr_private_common.h │ │ │ │ │ ├── beos │ │ │ │ │ ├── apr_arch_dso.h │ │ │ │ │ ├── apr_arch_proc_mutex.h │ │ │ │ │ ├── apr_arch_thread_cond.h │ │ │ │ │ ├── apr_arch_thread_mutex.h │ │ │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ │ │ └── apr_arch_threadproc.h │ │ │ │ │ ├── netware │ │ │ │ │ ├── apr_arch_dso.h │ │ │ │ │ ├── apr_arch_file_io.h │ │ │ │ │ ├── apr_arch_global_mutex.h │ │ │ │ │ ├── apr_arch_internal_time.h │ │ │ │ │ ├── apr_arch_networkio.h │ │ │ │ │ ├── apr_arch_pre_nw.h │ │ │ │ │ ├── apr_arch_proc_mutex.h │ │ │ │ │ ├── apr_arch_thread_cond.h │ │ │ │ │ ├── apr_arch_thread_mutex.h │ │ │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ │ │ ├── apr_arch_threadproc.h │ │ │ │ │ └── apr_private.h │ │ │ │ │ ├── os2 │ │ │ │ │ ├── apr_arch_dso.h │ │ │ │ │ ├── apr_arch_file_io.h │ │ │ │ │ ├── apr_arch_inherit.h │ │ │ │ │ ├── apr_arch_networkio.h │ │ │ │ │ ├── apr_arch_os2calls.h │ │ │ │ │ ├── apr_arch_proc_mutex.h │ │ │ │ │ ├── apr_arch_thread_cond.h │ │ │ │ │ ├── apr_arch_thread_mutex.h │ │ │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ │ │ └── apr_arch_threadproc.h │ │ │ │ │ ├── os390 │ │ │ │ │ └── apr_arch_dso.h │ │ │ │ │ ├── unix │ │ │ │ │ ├── apr_arch_atomic.h │ │ │ │ │ ├── apr_arch_dso.h │ │ │ │ │ ├── apr_arch_file_io.h │ │ │ │ │ ├── apr_arch_global_mutex.h │ │ │ │ │ ├── apr_arch_inherit.h │ │ │ │ │ ├── apr_arch_internal_time.h │ │ │ │ │ ├── apr_arch_misc.h │ │ │ │ │ ├── apr_arch_networkio.h │ │ │ │ │ ├── apr_arch_poll_private.h │ │ │ │ │ ├── apr_arch_proc_mutex.h │ │ │ │ │ ├── apr_arch_shm.h │ │ │ │ │ ├── apr_arch_thread_cond.h │ │ │ │ │ ├── apr_arch_thread_mutex.h │ │ │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ │ │ ├── apr_arch_threadproc.h │ │ │ │ │ └── apr_private.h.in │ │ │ │ │ └── win32 │ │ │ │ │ ├── apr_arch_atime.h │ │ │ │ │ ├── apr_arch_dso.h │ │ │ │ │ ├── apr_arch_file_io.h │ │ │ │ │ ├── apr_arch_inherit.h │ │ │ │ │ ├── apr_arch_misc.h │ │ │ │ │ ├── apr_arch_networkio.h │ │ │ │ │ ├── apr_arch_proc_mutex.h │ │ │ │ │ ├── apr_arch_thread_cond.h │ │ │ │ │ ├── apr_arch_thread_mutex.h │ │ │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ │ │ ├── apr_arch_threadproc.h │ │ │ │ │ ├── apr_arch_utf8.h │ │ │ │ │ ├── apr_dbg_win32_handles.h │ │ │ │ │ └── apr_private.h │ │ │ ├── kbe_changes.log │ │ │ ├── libapr.dep │ │ │ ├── libapr.dsp │ │ │ ├── libapr.mak │ │ │ ├── libapr.rc │ │ │ ├── locks │ │ │ │ ├── beos │ │ │ │ │ ├── proc_mutex.c │ │ │ │ │ ├── thread_cond.c │ │ │ │ │ ├── thread_mutex.c │ │ │ │ │ └── thread_rwlock.c │ │ │ │ ├── netware │ │ │ │ │ ├── proc_mutex.c │ │ │ │ │ ├── thread_cond.c │ │ │ │ │ ├── thread_mutex.c │ │ │ │ │ └── thread_rwlock.c │ │ │ │ ├── os2 │ │ │ │ │ ├── proc_mutex.c │ │ │ │ │ ├── thread_cond.c │ │ │ │ │ ├── thread_mutex.c │ │ │ │ │ └── thread_rwlock.c │ │ │ │ ├── unix │ │ │ │ │ ├── global_mutex.c │ │ │ │ │ ├── proc_mutex.c │ │ │ │ │ ├── thread_cond.c │ │ │ │ │ ├── thread_mutex.c │ │ │ │ │ └── thread_rwlock.c │ │ │ │ └── win32 │ │ │ │ │ ├── proc_mutex.c │ │ │ │ │ ├── thread_cond.c │ │ │ │ │ ├── thread_mutex.c │ │ │ │ │ └── thread_rwlock.c │ │ │ ├── memory │ │ │ │ └── unix │ │ │ │ │ └── apr_pools.c │ │ │ ├── misc │ │ │ │ ├── netware │ │ │ │ │ ├── apr.xdc │ │ │ │ │ ├── aprlib.def │ │ │ │ │ ├── charset.c │ │ │ │ │ ├── libprews.c │ │ │ │ │ ├── rand.c │ │ │ │ │ └── start.c │ │ │ │ ├── unix │ │ │ │ │ ├── charset.c │ │ │ │ │ ├── env.c │ │ │ │ │ ├── errorcodes.c │ │ │ │ │ ├── getopt.c │ │ │ │ │ ├── otherchild.c │ │ │ │ │ ├── rand.c │ │ │ │ │ ├── randbyte_os2.inc │ │ │ │ │ ├── start.c │ │ │ │ │ └── version.c │ │ │ │ └── win32 │ │ │ │ │ ├── apr_app.c │ │ │ │ │ ├── charset.c │ │ │ │ │ ├── env.c │ │ │ │ │ ├── internal.c │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── rand.c │ │ │ │ │ ├── start.c │ │ │ │ │ └── utf8.c │ │ │ ├── mmap │ │ │ │ ├── unix │ │ │ │ │ ├── common.c │ │ │ │ │ └── mmap.c │ │ │ │ └── win32 │ │ │ │ │ └── mmap.c │ │ │ ├── network_io │ │ │ │ ├── beos │ │ │ │ │ ├── sendrecv.c │ │ │ │ │ └── socketcommon.c │ │ │ │ ├── os2 │ │ │ │ │ ├── inet_ntop.c │ │ │ │ │ ├── inet_pton.c │ │ │ │ │ ├── os2calls.c │ │ │ │ │ ├── sendrecv.c │ │ │ │ │ ├── sendrecv_udp.c │ │ │ │ │ ├── sockaddr.c │ │ │ │ │ ├── socket_util.c │ │ │ │ │ ├── sockets.c │ │ │ │ │ └── sockopt.c │ │ │ │ ├── unix │ │ │ │ │ ├── inet_ntop.c │ │ │ │ │ ├── inet_pton.c │ │ │ │ │ ├── multicast.c │ │ │ │ │ ├── sendrecv.c │ │ │ │ │ ├── sockaddr.c │ │ │ │ │ ├── socket_util.c │ │ │ │ │ ├── sockets.c │ │ │ │ │ └── sockopt.c │ │ │ │ └── win32 │ │ │ │ │ ├── sendrecv.c │ │ │ │ │ ├── sockets.c │ │ │ │ │ └── sockopt.c │ │ │ ├── passwd │ │ │ │ └── apr_getpass.c │ │ │ ├── poll │ │ │ │ ├── os2 │ │ │ │ │ ├── poll.c │ │ │ │ │ └── pollset.c │ │ │ │ └── unix │ │ │ │ │ ├── epoll.c │ │ │ │ │ ├── kqueue.c │ │ │ │ │ ├── poll.c │ │ │ │ │ ├── pollcb.c │ │ │ │ │ ├── pollset.c │ │ │ │ │ ├── port.c │ │ │ │ │ ├── select.c │ │ │ │ │ └── z_asio.c │ │ │ ├── random │ │ │ │ └── unix │ │ │ │ │ ├── apr_random.c │ │ │ │ │ ├── sha2.c │ │ │ │ │ ├── sha2.h │ │ │ │ │ └── sha2_glue.c │ │ │ ├── shmem │ │ │ │ ├── beos │ │ │ │ │ └── shm.c │ │ │ │ ├── os2 │ │ │ │ │ └── shm.c │ │ │ │ ├── unix │ │ │ │ │ └── shm.c │ │ │ │ └── win32 │ │ │ │ │ └── shm.c │ │ │ ├── strings │ │ │ │ ├── apr_cpystrn.c │ │ │ │ ├── apr_fnmatch.c │ │ │ │ ├── apr_snprintf.c │ │ │ │ ├── apr_strings.c │ │ │ │ ├── apr_strnatcmp.c │ │ │ │ └── apr_strtok.c │ │ │ ├── support │ │ │ │ └── unix │ │ │ │ │ └── waitio.c │ │ │ ├── tables │ │ │ │ ├── apr_hash.c │ │ │ │ ├── apr_skiplist.c │ │ │ │ └── apr_tables.c │ │ │ ├── test │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.win │ │ │ │ ├── NWGNUaprtest │ │ │ │ ├── NWGNUechod │ │ │ │ ├── NWGNUglobalmutexchild │ │ │ │ ├── NWGNUmakefile │ │ │ │ ├── NWGNUmod_test │ │ │ │ ├── NWGNUproc_child │ │ │ │ ├── NWGNUreadchild │ │ │ │ ├── NWGNUsockchild │ │ │ │ ├── NWGNUsockperf │ │ │ │ ├── NWGNUtestatmc │ │ │ │ ├── NWGNUtryread │ │ │ │ ├── README │ │ │ │ ├── abts.c │ │ │ │ ├── abts.h │ │ │ │ ├── abts_tests.h │ │ │ │ ├── data │ │ │ │ │ ├── file_datafile.txt │ │ │ │ │ └── mmap_datafile.txt │ │ │ │ ├── echod.c │ │ │ │ ├── globalmutexchild.c │ │ │ │ ├── internal │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── testregex.c │ │ │ │ │ └── testucs.c │ │ │ │ ├── mod_test.c │ │ │ │ ├── nw_misc.c │ │ │ │ ├── occhild.c │ │ │ │ ├── proc_child.c │ │ │ │ ├── readchild.c │ │ │ │ ├── sendfile.c │ │ │ │ ├── sockchild.c │ │ │ │ ├── sockperf.c │ │ │ │ ├── testall.dsw │ │ │ │ ├── testapp.c │ │ │ │ ├── testargs.c │ │ │ │ ├── testatomic.c │ │ │ │ ├── testcond.c │ │ │ │ ├── testdir.c │ │ │ │ ├── testdll.dsp │ │ │ │ ├── testdso.c │ │ │ │ ├── testdup.c │ │ │ │ ├── testenv.c │ │ │ │ ├── testescape.c │ │ │ │ ├── testfile.c │ │ │ │ ├── testfilecopy.c │ │ │ │ ├── testfileinfo.c │ │ │ │ ├── testflock.c │ │ │ │ ├── testflock.h │ │ │ │ ├── testfmt.c │ │ │ │ ├── testfnmatch.c │ │ │ │ ├── testglobalmutex.c │ │ │ │ ├── testglobalmutex.h │ │ │ │ ├── testhash.c │ │ │ │ ├── testipsub.c │ │ │ │ ├── testlfs.c │ │ │ │ ├── testlib.dsp │ │ │ │ ├── testlock.c │ │ │ │ ├── testlockperf.c │ │ │ │ ├── testmmap.c │ │ │ │ ├── testmutexscope.c │ │ │ │ ├── testnames.c │ │ │ │ ├── testoc.c │ │ │ │ ├── testpath.c │ │ │ │ ├── testpipe.c │ │ │ │ ├── testpoll.c │ │ │ │ ├── testpools.c │ │ │ │ ├── testproc.c │ │ │ │ ├── testprocmutex.c │ │ │ │ ├── testrand.c │ │ │ │ ├── testshm.c │ │ │ │ ├── testshm.h │ │ │ │ ├── testshmconsumer.c │ │ │ │ ├── testshmproducer.c │ │ │ │ ├── testsleep.c │ │ │ │ ├── testsock.c │ │ │ │ ├── testsock.h │ │ │ │ ├── testsockets.c │ │ │ │ ├── testsockopt.c │ │ │ │ ├── teststr.c │ │ │ │ ├── teststrnatcmp.c │ │ │ │ ├── testtable.c │ │ │ │ ├── testtemp.c │ │ │ │ ├── testthread.c │ │ │ │ ├── testtime.c │ │ │ │ ├── testud.c │ │ │ │ ├── testuser.c │ │ │ │ ├── testutil.c │ │ │ │ ├── testutil.h │ │ │ │ ├── testvsn.c │ │ │ │ └── tryread.c │ │ │ ├── threadproc │ │ │ │ ├── beos │ │ │ │ │ ├── apr_proc_stub.c │ │ │ │ │ ├── proc.c │ │ │ │ │ ├── thread.c │ │ │ │ │ ├── threadpriv.c │ │ │ │ │ └── threadproc_common.c │ │ │ │ ├── netware │ │ │ │ │ ├── proc.c │ │ │ │ │ ├── procsup.c │ │ │ │ │ ├── signals.c │ │ │ │ │ ├── thread.c │ │ │ │ │ └── threadpriv.c │ │ │ │ ├── os2 │ │ │ │ │ ├── proc.c │ │ │ │ │ ├── signals.c │ │ │ │ │ ├── thread.c │ │ │ │ │ └── threadpriv.c │ │ │ │ ├── unix │ │ │ │ │ ├── proc.c │ │ │ │ │ ├── procsup.c │ │ │ │ │ ├── signals.c │ │ │ │ │ ├── thread.c │ │ │ │ │ └── threadpriv.c │ │ │ │ └── win32 │ │ │ │ │ ├── proc.c │ │ │ │ │ ├── signals.c │ │ │ │ │ ├── thread.c │ │ │ │ │ └── threadpriv.c │ │ │ ├── time │ │ │ │ ├── unix │ │ │ │ │ ├── time.c │ │ │ │ │ └── timestr.c │ │ │ │ └── win32 │ │ │ │ │ ├── time.c │ │ │ │ │ └── timestr.c │ │ │ ├── tools │ │ │ │ └── gen_test_char.c │ │ │ └── user │ │ │ │ ├── netware │ │ │ │ ├── groupinfo.c │ │ │ │ └── userinfo.c │ │ │ │ ├── unix │ │ │ │ ├── groupinfo.c │ │ │ │ └── userinfo.c │ │ │ │ └── win32 │ │ │ │ ├── groupinfo.c │ │ │ │ └── userinfo.c │ │ ├── expat │ │ │ ├── CMake.README │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── Changes │ │ │ ├── ConfigureChecks.cmake │ │ │ ├── MANIFEST │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── amiga │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── expat.xml │ │ │ │ ├── expat_68k.c │ │ │ │ ├── expat_68k.h │ │ │ │ ├── expat_68k_handler_stubs.c │ │ │ │ ├── expat_base.h │ │ │ │ ├── expat_lib.c │ │ │ │ ├── expat_vectors.c │ │ │ │ ├── include │ │ │ │ │ ├── inline4 │ │ │ │ │ │ └── expat.h │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── expat.h │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── expat.h │ │ │ │ │ └── proto │ │ │ │ │ │ └── expat.h │ │ │ │ └── launch.c │ │ │ ├── bcb5 │ │ │ │ ├── README.txt │ │ │ │ ├── all_projects.bpg │ │ │ │ ├── elements.bpf │ │ │ │ ├── elements.bpr │ │ │ │ ├── elements.mak │ │ │ │ ├── expat.bpf │ │ │ │ ├── expat.bpr │ │ │ │ ├── expat.mak │ │ │ │ ├── expat_static.bpf │ │ │ │ ├── expat_static.bpr │ │ │ │ ├── expat_static.mak │ │ │ │ ├── expatw.bpf │ │ │ │ ├── expatw.bpr │ │ │ │ ├── expatw.mak │ │ │ │ ├── expatw_static.bpf │ │ │ │ ├── expatw_static.bpr │ │ │ │ ├── expatw_static.mak │ │ │ │ ├── libexpat_mtd.def │ │ │ │ ├── libexpatw_mtd.def │ │ │ │ ├── makefile.mak │ │ │ │ ├── outline.bpf │ │ │ │ ├── outline.bpr │ │ │ │ ├── outline.mak │ │ │ │ ├── setup.bat │ │ │ │ ├── xmlwf.bpf │ │ │ │ ├── xmlwf.bpr │ │ │ │ └── xmlwf.mak │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── conftools │ │ │ │ ├── PrintPath │ │ │ │ ├── ac_c_bigendian_cross.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── expat.m4 │ │ │ │ ├── get-version.sh │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ └── mkinstalldirs │ │ │ ├── doc │ │ │ │ ├── expat.png │ │ │ │ ├── reference.html │ │ │ │ ├── style.css │ │ │ │ ├── valid-xhtml10.png │ │ │ │ ├── xmlwf.1 │ │ │ │ └── xmlwf.sgml │ │ │ ├── examples │ │ │ │ ├── elements.c │ │ │ │ ├── elements.dsp │ │ │ │ ├── outline.c │ │ │ │ └── outline.dsp │ │ │ ├── expat.dsw │ │ │ ├── expat.pc.in │ │ │ ├── expat_config.h.cmake │ │ │ ├── expat_config.h.in │ │ │ ├── lib │ │ │ │ ├── Makefile.MPW │ │ │ │ ├── amigaconfig.h │ │ │ │ ├── ascii.h │ │ │ │ ├── asciitab.h │ │ │ │ ├── expat.dsp │ │ │ │ ├── expat.h │ │ │ │ ├── expat_external.h │ │ │ │ ├── expat_static.dsp │ │ │ │ ├── expat_static.vcxproj │ │ │ │ ├── expatw.dsp │ │ │ │ ├── expatw_static.dsp │ │ │ │ ├── iasciitab.h │ │ │ │ ├── internal.h │ │ │ │ ├── latin1tab.h │ │ │ │ ├── libexpat.def │ │ │ │ ├── libexpatw.def │ │ │ │ ├── macconfig.h │ │ │ │ ├── nametab.h │ │ │ │ ├── utf8tab.h │ │ │ │ ├── winconfig.h │ │ │ │ ├── xmlparse.c │ │ │ │ ├── xmlrole.c │ │ │ │ ├── xmlrole.h │ │ │ │ ├── xmltok.c │ │ │ │ ├── xmltok.h │ │ │ │ ├── xmltok_impl.c │ │ │ │ ├── xmltok_impl.h │ │ │ │ └── xmltok_ns.c │ │ │ ├── m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ ├── tests │ │ │ │ ├── README.txt │ │ │ │ ├── benchmark │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── benchmark.c │ │ │ │ │ ├── benchmark.dsp │ │ │ │ │ └── benchmark.dsw │ │ │ │ ├── chardata.c │ │ │ │ ├── chardata.h │ │ │ │ ├── minicheck.c │ │ │ │ ├── minicheck.h │ │ │ │ ├── runtests.c │ │ │ │ ├── runtestspp.cpp │ │ │ │ └── xmltest.sh │ │ │ ├── vms │ │ │ │ ├── README.vms │ │ │ │ ├── descrip.mms │ │ │ │ └── expat_config.h │ │ │ ├── win32 │ │ │ │ ├── MANIFEST.txt │ │ │ │ ├── README.txt │ │ │ │ └── expat.iss │ │ │ └── xmlwf │ │ │ │ ├── codepage.c │ │ │ │ ├── codepage.h │ │ │ │ ├── ct.c │ │ │ │ ├── filemap.h │ │ │ │ ├── readfilemap.c │ │ │ │ ├── unixfilemap.c │ │ │ │ ├── win32filemap.c │ │ │ │ ├── xmlfile.c │ │ │ │ ├── xmlfile.h │ │ │ │ ├── xmlmime.c │ │ │ │ ├── xmlmime.h │ │ │ │ ├── xmltchar.h │ │ │ │ ├── xmlurl.h │ │ │ │ ├── xmlwf.c │ │ │ │ ├── xmlwf.dsp │ │ │ │ └── xmlwin32url.cxx │ │ ├── g3dlite │ │ │ ├── AABox.cpp │ │ │ ├── Box.cpp │ │ │ ├── Crypto.cpp │ │ │ ├── G3D │ │ │ │ ├── AABox.h │ │ │ │ ├── Array.h │ │ │ │ ├── Box.h │ │ │ │ ├── CollisionDetection.h │ │ │ │ ├── CoordinateFrame.h │ │ │ │ ├── Crypto.h │ │ │ │ ├── GCamera.h │ │ │ │ ├── Line.h │ │ │ │ ├── Matrix3.h │ │ │ │ ├── Plane.h │ │ │ │ ├── Quat.h │ │ │ │ ├── Quat.inl │ │ │ │ ├── Ray.h │ │ │ │ ├── RegistryUtil.h │ │ │ │ ├── Sphere.h │ │ │ │ ├── System.h │ │ │ │ ├── Table.h │ │ │ │ ├── Triangle.h │ │ │ │ ├── Vector2.h │ │ │ │ ├── Vector2.inl │ │ │ │ ├── Vector2int16.h │ │ │ │ ├── Vector3.h │ │ │ │ ├── Vector3.inl │ │ │ │ ├── Vector3int16.h │ │ │ │ ├── Vector4.h │ │ │ │ ├── Vector4.inl │ │ │ │ ├── debug.h │ │ │ │ ├── format.h │ │ │ │ ├── g3dmath.h │ │ │ │ ├── g3dmath.inl │ │ │ │ ├── platform.h │ │ │ │ └── stringutils.h │ │ │ ├── Makefile │ │ │ ├── Matrix3.cpp │ │ │ ├── Plane.cpp │ │ │ ├── System.cpp │ │ │ ├── Triangle.cpp │ │ │ ├── Vector3.cpp │ │ │ ├── Vector4.cpp │ │ │ ├── format.cpp │ │ │ └── license.html │ │ ├── hiredis │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ ├── ae.h │ │ │ │ ├── glib.h │ │ │ │ ├── ivykis.h │ │ │ │ ├── libev.h │ │ │ │ ├── libevent.h │ │ │ │ ├── libuv.h │ │ │ │ ├── macosx.h │ │ │ │ └── qt.h │ │ │ ├── async.c │ │ │ ├── async.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── examples │ │ │ │ ├── example-ae.c │ │ │ │ ├── example-glib.c │ │ │ │ ├── example-ivykis.c │ │ │ │ ├── example-libev.c │ │ │ │ ├── example-libevent.c │ │ │ │ ├── example-libuv.c │ │ │ │ ├── example-macosx.c │ │ │ │ ├── example-qt.cpp │ │ │ │ ├── example-qt.h │ │ │ │ └── example.c │ │ │ ├── fmacros.h │ │ │ ├── hiredis.c │ │ │ ├── hiredis.h │ │ │ ├── net.c │ │ │ ├── net.h │ │ │ ├── read.c │ │ │ ├── read.h │ │ │ ├── redis-win │ │ │ │ ├── deps │ │ │ │ │ └── hiredis │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── ae.h │ │ │ │ │ │ ├── libev.h │ │ │ │ │ │ └── libevent.h │ │ │ │ │ │ ├── async.c │ │ │ │ │ │ ├── async.h │ │ │ │ │ │ ├── dict.c │ │ │ │ │ │ ├── dict.h │ │ │ │ │ │ ├── fmacros.h │ │ │ │ │ │ ├── hiredis.c │ │ │ │ │ │ ├── hiredis.h │ │ │ │ │ │ ├── net.c │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ ├── sds.c │ │ │ │ │ │ ├── sds.h │ │ │ │ │ │ └── test.c │ │ │ │ └── msvs │ │ │ │ │ └── hiredis │ │ │ │ │ └── hiredis.vcxproj │ │ │ ├── sds.c │ │ │ ├── sds.h │ │ │ ├── test.c │ │ │ └── win32.h │ │ ├── jemalloc │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── autogen.sh │ │ │ ├── bin │ │ │ │ ├── jemalloc.sh.in │ │ │ │ └── pprof │ │ │ ├── config.guess │ │ │ ├── config.stamp.in │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── coverage.sh │ │ │ ├── doc │ │ │ │ ├── html.xsl.in │ │ │ │ ├── jemalloc.3 │ │ │ │ ├── jemalloc.html │ │ │ │ ├── jemalloc.xml.in │ │ │ │ ├── manpages.xsl.in │ │ │ │ └── stylesheet.xsl │ │ │ ├── include │ │ │ │ ├── jemalloc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── arena.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── bitmap.h │ │ │ │ │ │ ├── chunk.h │ │ │ │ │ │ ├── chunk_dss.h │ │ │ │ │ │ ├── chunk_mmap.h │ │ │ │ │ │ ├── ckh.h │ │ │ │ │ │ ├── ctl.h │ │ │ │ │ │ ├── extent.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── huge.h │ │ │ │ │ │ ├── jemalloc_internal.h │ │ │ │ │ │ ├── jemalloc_internal.h.in │ │ │ │ │ │ ├── jemalloc_internal_defs.h │ │ │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ │ │ ├── mb.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── private_namespace.h │ │ │ │ │ │ ├── private_namespace.sh │ │ │ │ │ │ ├── private_symbols.txt │ │ │ │ │ │ ├── private_unnamespace.h │ │ │ │ │ │ ├── private_unnamespace.sh │ │ │ │ │ │ ├── prng.h │ │ │ │ │ │ ├── prof.h │ │ │ │ │ │ ├── public_namespace.h │ │ │ │ │ │ ├── public_namespace.sh │ │ │ │ │ │ ├── public_symbols.txt │ │ │ │ │ │ ├── public_unnamespace.h │ │ │ │ │ │ ├── public_unnamespace.sh │ │ │ │ │ │ ├── ql.h │ │ │ │ │ │ ├── qr.h │ │ │ │ │ │ ├── quarantine.h │ │ │ │ │ │ ├── rb.h │ │ │ │ │ │ ├── rtree.h │ │ │ │ │ │ ├── size_classes.h │ │ │ │ │ │ ├── size_classes.sh │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ ├── tcache.h │ │ │ │ │ │ ├── tsd.h │ │ │ │ │ │ └── util.h │ │ │ │ │ ├── jemalloc.h │ │ │ │ │ ├── jemalloc.sh │ │ │ │ │ ├── jemalloc_defs.h │ │ │ │ │ ├── jemalloc_defs.h.in │ │ │ │ │ ├── jemalloc_macros.h │ │ │ │ │ ├── jemalloc_macros.h.in │ │ │ │ │ ├── jemalloc_mangle.h │ │ │ │ │ ├── jemalloc_mangle.sh │ │ │ │ │ ├── jemalloc_mangle_jet.h │ │ │ │ │ ├── jemalloc_protos.h │ │ │ │ │ ├── jemalloc_protos.h.in │ │ │ │ │ ├── jemalloc_protos_jet.h │ │ │ │ │ ├── jemalloc_rename.h │ │ │ │ │ └── jemalloc_rename.sh │ │ │ │ └── msvc_compat │ │ │ │ │ ├── inttypes.h │ │ │ │ │ ├── stdbool.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ └── strings.h │ │ │ ├── install-sh │ │ │ ├── kbe_changes.log │ │ │ ├── src │ │ │ │ ├── arena.c │ │ │ │ ├── atomic.c │ │ │ │ ├── base.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── chunk.c │ │ │ │ ├── chunk_dss.c │ │ │ │ ├── chunk_mmap.c │ │ │ │ ├── ckh.c │ │ │ │ ├── ctl.c │ │ │ │ ├── extent.c │ │ │ │ ├── hash.c │ │ │ │ ├── huge.c │ │ │ │ ├── jemalloc.c │ │ │ │ ├── mb.c │ │ │ │ ├── mutex.c │ │ │ │ ├── prof.c │ │ │ │ ├── quarantine.c │ │ │ │ ├── rtree.c │ │ │ │ ├── stats.c │ │ │ │ ├── tcache.c │ │ │ │ ├── tsd.c │ │ │ │ ├── util.c │ │ │ │ └── zone.c │ │ │ └── test │ │ │ │ ├── include │ │ │ │ └── test │ │ │ │ │ ├── SFMT-alti.h │ │ │ │ │ ├── SFMT-params.h │ │ │ │ │ ├── SFMT-params11213.h │ │ │ │ │ ├── SFMT-params1279.h │ │ │ │ │ ├── SFMT-params132049.h │ │ │ │ │ ├── SFMT-params19937.h │ │ │ │ │ ├── SFMT-params216091.h │ │ │ │ │ ├── SFMT-params2281.h │ │ │ │ │ ├── SFMT-params4253.h │ │ │ │ │ ├── SFMT-params44497.h │ │ │ │ │ ├── SFMT-params607.h │ │ │ │ │ ├── SFMT-params86243.h │ │ │ │ │ ├── SFMT-sse2.h │ │ │ │ │ ├── SFMT.h │ │ │ │ │ ├── jemalloc_test.h.in │ │ │ │ │ ├── jemalloc_test_defs.h.in │ │ │ │ │ ├── math.h │ │ │ │ │ ├── mq.h │ │ │ │ │ ├── mtx.h │ │ │ │ │ ├── test.h │ │ │ │ │ └── thd.h │ │ │ │ ├── integration │ │ │ │ ├── MALLOCX_ARENA.c │ │ │ │ ├── aligned_alloc.c │ │ │ │ ├── allocated.c │ │ │ │ ├── allocm.c │ │ │ │ ├── mallocx.c │ │ │ │ ├── mremap.c │ │ │ │ ├── posix_memalign.c │ │ │ │ ├── rallocm.c │ │ │ │ ├── rallocx.c │ │ │ │ ├── thread_arena.c │ │ │ │ ├── thread_tcache_enabled.c │ │ │ │ └── xallocx.c │ │ │ │ ├── src │ │ │ │ ├── SFMT.c │ │ │ │ ├── math.c │ │ │ │ ├── mtx.c │ │ │ │ ├── test.c │ │ │ │ └── thd.c │ │ │ │ ├── test.sh.in │ │ │ │ └── unit │ │ │ │ ├── SFMT.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── ckh.c │ │ │ │ ├── hash.c │ │ │ │ ├── junk.c │ │ │ │ ├── mallctl.c │ │ │ │ ├── math.c │ │ │ │ ├── mq.c │ │ │ │ ├── mtx.c │ │ │ │ ├── prof_accum.c │ │ │ │ ├── prof_accum.h │ │ │ │ ├── prof_accum_a.c │ │ │ │ ├── prof_accum_b.c │ │ │ │ ├── prof_gdump.c │ │ │ │ ├── prof_idump.c │ │ │ │ ├── ql.c │ │ │ │ ├── qr.c │ │ │ │ ├── quarantine.c │ │ │ │ ├── rb.c │ │ │ │ ├── rtree.c │ │ │ │ ├── stats.c │ │ │ │ ├── tsd.c │ │ │ │ ├── util.c │ │ │ │ └── zero.c │ │ ├── log4cxx │ │ │ ├── INSTALL │ │ │ ├── KEYS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NOTICE │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── build.xml │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure-aprutil.bat │ │ │ ├── configure.bat │ │ │ ├── configure.in │ │ │ ├── depcomp │ │ │ ├── find_apr.m4 │ │ │ ├── find_apu.m4 │ │ │ ├── install-sh │ │ │ ├── liblog4cxx.pc.in │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ ├── pom.xml │ │ │ ├── projects │ │ │ │ ├── console.dsp │ │ │ │ ├── console.dsw │ │ │ │ ├── console.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── delayedloop.dsp │ │ │ │ ├── delayedloop.dsw │ │ │ │ ├── delayedloop.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── log4cxx.dsp │ │ │ │ ├── log4cxx.dsw │ │ │ │ ├── log4cxx.sln │ │ │ │ ├── log4cxx.vcproj │ │ │ │ ├── log4cxx.vcxproj │ │ │ │ ├── log4cxx.vcxproj.filters │ │ │ │ ├── log4cxx.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── stream.dsp │ │ │ │ ├── stream.dsw │ │ │ │ ├── stream.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── testsuite-standalone.dsp │ │ │ │ ├── testsuite-standalone.dsw │ │ │ │ ├── testsuite-standalone.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── testsuite.dsp │ │ │ │ ├── testsuite.dsw │ │ │ │ ├── testsuite.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── trivial.dsp │ │ │ │ ├── trivial.dsw │ │ │ │ └── trivial.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── site │ │ │ │ ├── .htaccess │ │ │ │ ├── apidocs │ │ │ │ │ ├── absolutetimedateformat_8h.html │ │ │ │ │ ├── action_8h.html │ │ │ │ │ ├── andfilter_8h.html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── appender_8h.html │ │ │ │ │ ├── appenderattachable_8h.html │ │ │ │ │ ├── appenderattachableimpl_8h.html │ │ │ │ │ ├── appenderskeleton_8h.html │ │ │ │ │ ├── aprinitializer_8h.html │ │ │ │ │ ├── asyncappender_8h.html │ │ │ │ │ ├── basicconfigurator_8h.html │ │ │ │ │ ├── bufferedoutputstream_8h.html │ │ │ │ │ ├── bufferedwriter_8h.html │ │ │ │ │ ├── bytearrayinputstream_8h.html │ │ │ │ │ ├── bytearrayoutputstream_8h.html │ │ │ │ │ ├── bytebuffer_8h.html │ │ │ │ │ ├── cacheddateformat_8h.html │ │ │ │ │ ├── charsetdecoder_8h.html │ │ │ │ │ ├── charsetencoder_8h.html │ │ │ │ │ ├── class_8h.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── classlog4cxx_1_1_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1_appender.html │ │ │ │ │ ├── classlog4cxx_1_1_appender_skeleton-members.html │ │ │ │ │ ├── classlog4cxx_1_1_appender_skeleton.html │ │ │ │ │ ├── classlog4cxx_1_1_async_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1_async_appender.html │ │ │ │ │ ├── classlog4cxx_1_1_basic_configurator-members.html │ │ │ │ │ ├── classlog4cxx_1_1_basic_configurator.html │ │ │ │ │ ├── classlog4cxx_1_1_console_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1_console_appender.html │ │ │ │ │ ├── classlog4cxx_1_1_daily_rolling_file_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1_daily_rolling_file_appender.html │ │ │ │ │ ├── classlog4cxx_1_1_default_configurator-members.html │ │ │ │ │ ├── classlog4cxx_1_1_default_configurator.html │ │ │ │ │ ├── classlog4cxx_1_1_default_logger_factory-members.html │ │ │ │ │ ├── classlog4cxx_1_1_default_logger_factory.html │ │ │ │ │ ├── classlog4cxx_1_1_file-members.html │ │ │ │ │ ├── classlog4cxx_1_1_file.html │ │ │ │ │ ├── classlog4cxx_1_1_file_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1_file_appender.html │ │ │ │ │ ├── classlog4cxx_1_1_h_t_m_l_layout-members.html │ │ │ │ │ ├── classlog4cxx_1_1_h_t_m_l_layout.html │ │ │ │ │ ├── classlog4cxx_1_1_hierarchy-members.html │ │ │ │ │ ├── classlog4cxx_1_1_hierarchy.html │ │ │ │ │ ├── classlog4cxx_1_1_layout-members.html │ │ │ │ │ ├── classlog4cxx_1_1_layout.html │ │ │ │ │ ├── classlog4cxx_1_1_level-members.html │ │ │ │ │ ├── classlog4cxx_1_1_level.html │ │ │ │ │ ├── classlog4cxx_1_1_level_1_1_level_class-members.html │ │ │ │ │ ├── classlog4cxx_1_1_level_1_1_level_class.html │ │ │ │ │ ├── classlog4cxx_1_1_log_manager-members.html │ │ │ │ │ ├── classlog4cxx_1_1_log_manager.html │ │ │ │ │ ├── classlog4cxx_1_1_logger-members.html │ │ │ │ │ ├── classlog4cxx_1_1_logger.html │ │ │ │ │ ├── classlog4cxx_1_1_m_d_c-members.html │ │ │ │ │ ├── classlog4cxx_1_1_m_d_c.html │ │ │ │ │ ├── classlog4cxx_1_1_n_d_c-members.html │ │ │ │ │ ├── classlog4cxx_1_1_n_d_c.html │ │ │ │ │ ├── classlog4cxx_1_1_pattern_layout-members.html │ │ │ │ │ ├── classlog4cxx_1_1_pattern_layout.html │ │ │ │ │ ├── classlog4cxx_1_1_property_configurator-members.html │ │ │ │ │ ├── classlog4cxx_1_1_property_configurator.html │ │ │ │ │ ├── classlog4cxx_1_1_rolling_file_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1_rolling_file_appender.html │ │ │ │ │ ├── classlog4cxx_1_1_simple_layout-members.html │ │ │ │ │ ├── classlog4cxx_1_1_simple_layout.html │ │ │ │ │ ├── classlog4cxx_1_1_t_t_c_c_layout-members.html │ │ │ │ │ ├── classlog4cxx_1_1_t_t_c_c_layout.html │ │ │ │ │ ├── classlog4cxx_1_1_writer_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1_writer_appender.html │ │ │ │ │ ├── classlog4cxx_1_1config_1_1_property_setter-members.html │ │ │ │ │ ├── classlog4cxx_1_1config_1_1_property_setter.html │ │ │ │ │ ├── classlog4cxx_1_1db_1_1_o_d_b_c_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1db_1_1_o_d_b_c_appender.html │ │ │ │ │ ├── classlog4cxx_1_1db_1_1_s_q_l_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1db_1_1_s_q_l_exception.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_and_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_and_filter.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_deny_all_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_deny_all_filter.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_expression_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_expression_filter.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_level_match_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_level_match_filter.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_level_range_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_level_range_filter.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_location_info_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_location_info_filter.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_map_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_map_filter.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_property_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_property_filter.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_string_match_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1filter_1_1_string_match_filter.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_a_p_r_initializer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_a_p_r_initializer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_absolute_time_date_format-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_absolute_time_date_format.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_appender_attachable_impl-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_appender_attachable_impl.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_bind_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_bind_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_buffered_output_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_buffered_output_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_buffered_writer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_buffered_writer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_byte_array_input_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_byte_array_input_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_byte_array_output_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_byte_array_output_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_byte_buffer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_byte_buffer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_char_message_buffer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_char_message_buffer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_charset_decoder-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_charset_decoder.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_charset_encoder-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_charset_encoder.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_class-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_class.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_class_not_found_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_class_not_found_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_class_registration-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_class_registration.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_closed_channel_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_closed_channel_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_condition-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_condition.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_connect_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_connect_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_cyclic_buffer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_cyclic_buffer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_d_o_m_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_d_o_m_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_datagram_packet-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_datagram_packet.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_datagram_socket-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_datagram_socket.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_date-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_date.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_date_format-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_date_format.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_date_layout-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_date_layout.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_date_time_date_format-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_date_time_date_format.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_file_input_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_file_input_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_file_output_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_file_output_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_file_watchdog-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_file_watchdog.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_i_o_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_i_o_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_i_s_o8601_date_format-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_i_s_o8601_date_format.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_illegal_argument_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_illegal_argument_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_illegal_monitor_state_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_illegal_monitor_state_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_illegal_state_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_illegal_state_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_inet_address-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_inet_address.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_input_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_input_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_input_stream_reader-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_input_stream_reader.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_instantiation_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_instantiation_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_integer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_integer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_interrupted_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_interrupted_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_interrupted_i_o_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_interrupted_i_o_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_loader-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_loader.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_locale-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_locale.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_log_log-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_log_log.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_message_buffer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_message_buffer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_missing_resource_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_missing_resource_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_mutex-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_mutex.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_mutex_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_mutex_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_no_such_element_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_no_such_element_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_null_pointer_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_null_pointer_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_1_1_clazz_object-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_1_1_clazz_object.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_impl-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_impl.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_output_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_output_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_ptr_base-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_ptr_base.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_ptr_t-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_object_ptr_t.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_only_once_error_handler-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_only_once_error_handler.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_option_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_option_converter.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_output_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_output_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_output_stream_writer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_output_stream_writer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_pool-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_pool.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_pool_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_pool_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_properties-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_properties.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_property_resource_bundle-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_property_resource_bundle.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_reader-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_reader.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_relative_time_date_format-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_relative_time_date_format.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_resource_bundle-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_resource_bundle.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_runtime_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_runtime_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_server_socket-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_server_socket.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_simple_date_format-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_simple_date_format.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_socket-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_socket.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_socket_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_socket_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_socket_output_stream-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_socket_output_stream.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_socket_timeout_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_socket_timeout_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_strftime_date_format-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_strftime_date_format.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_strict_math-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_strict_math.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_string_helper-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_string_helper.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_string_tokenizer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_string_tokenizer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_syslog_writer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_syslog_writer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_system-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_system.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_system_err_writer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_system_err_writer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_system_out_writer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_system_out_writer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_thread-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_thread.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_thread_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_thread_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_thread_local-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_thread_local.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_thread_specific_data-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_thread_specific_data.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_time_zone-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_time_zone.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_transcoder-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_transcoder.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_transcoder_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_transcoder_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_transform-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_transform.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_uni_char_message_buffer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_uni_char_message_buffer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_unknown_host_exception-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_unknown_host_exception.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_wide_message_buffer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_wide_message_buffer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_writer-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_writer.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_x_m_l_d_o_m_document-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_x_m_l_d_o_m_document.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_x_m_l_d_o_m_element-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_x_m_l_d_o_m_element.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_x_m_l_d_o_m_node-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_x_m_l_d_o_m_node.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_x_m_l_d_o_m_node_list-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1_x_m_l_d_o_m_node_list.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1synchronized-members.html │ │ │ │ │ ├── classlog4cxx_1_1helpers_1_1synchronized.html │ │ │ │ │ ├── classlog4cxx_1_1logstream-members.html │ │ │ │ │ ├── classlog4cxx_1_1logstream.html │ │ │ │ │ ├── classlog4cxx_1_1logstream__base-members.html │ │ │ │ │ ├── classlog4cxx_1_1logstream__base.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_s_m_t_p_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_s_m_t_p_appender.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_socket_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_socket_appender.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_socket_appender_skeleton-members.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_socket_appender_skeleton.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_socket_hub_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_socket_hub_appender.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_syslog_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_syslog_appender.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_telnet_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_telnet_appender.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_x_m_l_socket_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1net_1_1_x_m_l_socket_appender.html │ │ │ │ │ ├── classlog4cxx_1_1nt_1_1_n_t_event_log_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1nt_1_1_n_t_event_log_appender.html │ │ │ │ │ ├── classlog4cxx_1_1nt_1_1_output_debug_string_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1nt_1_1_output_debug_string_appender.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_cached_date_format-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_cached_date_format.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_class_name_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_class_name_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_date_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_date_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_file_date_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_file_date_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_file_location_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_file_location_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_formatting_info-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_formatting_info.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_full_location_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_full_location_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_integer_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_integer_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_level_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_level_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_line_location_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_line_location_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_line_separator_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_line_separator_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_literal_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_literal_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_logger_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_logger_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_logging_event_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_logging_event_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_message_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_message_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_method_location_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_method_location_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_n_d_c_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_n_d_c_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_name_abbreviator-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_name_abbreviator.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_name_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_name_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_pattern_parser-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_pattern_parser.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_properties_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_properties_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_relative_time_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_relative_time_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_thread_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_thread_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_throwable_information_pattern_converter-members.html │ │ │ │ │ ├── classlog4cxx_1_1pattern_1_1_throwable_information_pattern_converter.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_action-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_action.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_file_rename_action-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_file_rename_action.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_filter_based_triggering_policy-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_filter_based_triggering_policy.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_fixed_window_rolling_policy-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_fixed_window_rolling_policy.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_g_z_compress_action-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_g_z_compress_action.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_manual_triggering_policy-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_manual_triggering_policy.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rolling_file_appender-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rolling_file_appender.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rolling_file_appender_skeleton-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rolling_file_appender_skeleton.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rolling_policy-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rolling_policy.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rolling_policy_base-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rolling_policy_base.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rollover_description-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_rollover_description.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_size_based_triggering_policy-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_size_based_triggering_policy.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_time_based_rolling_policy-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_time_based_rolling_policy.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_triggering_policy-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_triggering_policy.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_zip_compress_action-members.html │ │ │ │ │ ├── classlog4cxx_1_1rolling_1_1_zip_compress_action.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_appender_attachable-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_appender_attachable.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_configurator-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_configurator.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_default_repository_selector-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_default_repository_selector.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_error_code-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_error_code.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_error_handler-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_error_handler.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_filter-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_filter.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_hierarchy_event_listener-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_hierarchy_event_listener.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_location_info-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_location_info.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_logger_factory-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_logger_factory.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_logger_repository-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_logger_repository.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_logging_event-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_logging_event.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_option_handler-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_option_handler.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_repository_selector-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_repository_selector.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_root_logger-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_root_logger.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_triggering_event_evaluator-members.html │ │ │ │ │ ├── classlog4cxx_1_1spi_1_1_triggering_event_evaluator.html │ │ │ │ │ ├── classlog4cxx_1_1ulogstream-members.html │ │ │ │ │ ├── classlog4cxx_1_1ulogstream.html │ │ │ │ │ ├── classlog4cxx_1_1varia_1_1_fallback_error_handler-members.html │ │ │ │ │ ├── classlog4cxx_1_1varia_1_1_fallback_error_handler.html │ │ │ │ │ ├── classlog4cxx_1_1wlogstream-members.html │ │ │ │ │ ├── classlog4cxx_1_1wlogstream.html │ │ │ │ │ ├── classlog4cxx_1_1xml_1_1_d_o_m_configurator-members.html │ │ │ │ │ ├── classlog4cxx_1_1xml_1_1_d_o_m_configurator.html │ │ │ │ │ ├── classlog4cxx_1_1xml_1_1_x_m_l_layout-members.html │ │ │ │ │ ├── classlog4cxx_1_1xml_1_1_x_m_l_layout.html │ │ │ │ │ ├── classnamepatternconverter_8h.html │ │ │ │ │ ├── classregistration_8h.html │ │ │ │ │ ├── condition_8h.html │ │ │ │ │ ├── configurator_8h.html │ │ │ │ │ ├── consoleappender_8h.html │ │ │ │ │ ├── cyclicbuffer_8h.html │ │ │ │ │ ├── dailyrollingfileappender_8h.html │ │ │ │ │ ├── datagrampacket_8h.html │ │ │ │ │ ├── datagramsocket_8h.html │ │ │ │ │ ├── date_8h.html │ │ │ │ │ ├── dateformat_8h.html │ │ │ │ │ ├── datelayout_8h.html │ │ │ │ │ ├── datepatternconverter_8h.html │ │ │ │ │ ├── datetimedateformat_8h.html │ │ │ │ │ ├── defaultconfigurator_8h.html │ │ │ │ │ ├── defaultloggerfactory_8h.html │ │ │ │ │ ├── defaultrepositoryselector_8h.html │ │ │ │ │ ├── denyallfilter_8h.html │ │ │ │ │ ├── domconfigurator_8h.html │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── errorhandler_8h.html │ │ │ │ │ ├── exception_8h.html │ │ │ │ │ ├── expressionfilter_8h.html │ │ │ │ │ ├── fallbackerrorhandler_8h.html │ │ │ │ │ ├── file_8h.html │ │ │ │ │ ├── fileappender_8h.html │ │ │ │ │ ├── filedatepatternconverter_8h.html │ │ │ │ │ ├── fileinputstream_8h.html │ │ │ │ │ ├── filelocationpatternconverter_8h.html │ │ │ │ │ ├── fileoutputstream_8h.html │ │ │ │ │ ├── filerenameaction_8h.html │ │ │ │ │ ├── files.html │ │ │ │ │ ├── filewatchdog_8h.html │ │ │ │ │ ├── filter_8h.html │ │ │ │ │ ├── filterbasedtriggeringpolicy_8h.html │ │ │ │ │ ├── fixedwindowrollingpolicy_8h.html │ │ │ │ │ ├── formattinginfo_8h.html │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── fulllocationpatternconverter_8h.html │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_0x62.html │ │ │ │ │ ├── functions_0x63.html │ │ │ │ │ ├── functions_0x64.html │ │ │ │ │ ├── functions_0x65.html │ │ │ │ │ ├── functions_0x66.html │ │ │ │ │ ├── functions_0x67.html │ │ │ │ │ ├── functions_0x68.html │ │ │ │ │ ├── functions_0x69.html │ │ │ │ │ ├── functions_0x6a.html │ │ │ │ │ ├── functions_0x6c.html │ │ │ │ │ ├── functions_0x6d.html │ │ │ │ │ ├── functions_0x6e.html │ │ │ │ │ ├── functions_0x6f.html │ │ │ │ │ ├── functions_0x70.html │ │ │ │ │ ├── functions_0x72.html │ │ │ │ │ ├── functions_0x73.html │ │ │ │ │ ├── functions_0x74.html │ │ │ │ │ ├── functions_0x75.html │ │ │ │ │ ├── functions_0x76.html │ │ │ │ │ ├── functions_0x77.html │ │ │ │ │ ├── functions_0x78.html │ │ │ │ │ ├── functions_0x7a.html │ │ │ │ │ ├── functions_0x7e.html │ │ │ │ │ ├── functions_enum.html │ │ │ │ │ ├── functions_eval.html │ │ │ │ │ ├── functions_func.html │ │ │ │ │ ├── functions_func_0x62.html │ │ │ │ │ ├── functions_func_0x63.html │ │ │ │ │ ├── functions_func_0x64.html │ │ │ │ │ ├── functions_func_0x65.html │ │ │ │ │ ├── functions_func_0x66.html │ │ │ │ │ ├── functions_func_0x67.html │ │ │ │ │ ├── functions_func_0x68.html │ │ │ │ │ ├── functions_func_0x69.html │ │ │ │ │ ├── functions_func_0x6a.html │ │ │ │ │ ├── functions_func_0x6c.html │ │ │ │ │ ├── functions_func_0x6d.html │ │ │ │ │ ├── functions_func_0x6e.html │ │ │ │ │ ├── functions_func_0x6f.html │ │ │ │ │ ├── functions_func_0x70.html │ │ │ │ │ ├── functions_func_0x72.html │ │ │ │ │ ├── functions_func_0x73.html │ │ │ │ │ ├── functions_func_0x74.html │ │ │ │ │ ├── functions_func_0x75.html │ │ │ │ │ ├── functions_func_0x77.html │ │ │ │ │ ├── functions_func_0x78.html │ │ │ │ │ ├── functions_func_0x7a.html │ │ │ │ │ ├── functions_func_0x7e.html │ │ │ │ │ ├── functions_rela.html │ │ │ │ │ ├── functions_type.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── group___logging_macros.html │ │ │ │ │ ├── gzcompressaction_8h.html │ │ │ │ │ ├── hierarchy.html │ │ │ │ │ ├── hierarchy_8h.html │ │ │ │ │ ├── hierarchyeventlistener_8h.html │ │ │ │ │ ├── htmllayout_8h.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inetaddress_8h.html │ │ │ │ │ ├── inputstream_8h.html │ │ │ │ │ ├── inputstreamreader_8h.html │ │ │ │ │ ├── integer_8h.html │ │ │ │ │ ├── integerpatternconverter_8h.html │ │ │ │ │ ├── iso8601dateformat_8h.html │ │ │ │ │ ├── layout_8h.html │ │ │ │ │ ├── level_8h.html │ │ │ │ │ ├── levelmatchfilter_8h.html │ │ │ │ │ ├── levelpatternconverter_8h.html │ │ │ │ │ ├── levelrangefilter_8h.html │ │ │ │ │ ├── linelocationpatternconverter_8h.html │ │ │ │ │ ├── lineseparatorpatternconverter_8h.html │ │ │ │ │ ├── literalpatternconverter_8h.html │ │ │ │ │ ├── loader_8h.html │ │ │ │ │ ├── locale_8h.html │ │ │ │ │ ├── locationinfo_8h.html │ │ │ │ │ ├── locationinfofilter_8h.html │ │ │ │ │ ├── logger_8h.html │ │ │ │ │ ├── loggerfactory_8h.html │ │ │ │ │ ├── loggerpatternconverter_8h.html │ │ │ │ │ ├── loggerrepository_8h.html │ │ │ │ │ ├── loggingevent_8h.html │ │ │ │ │ ├── loggingeventpatternconverter_8h.html │ │ │ │ │ ├── loglog_8h.html │ │ │ │ │ ├── logmanager_8h.html │ │ │ │ │ ├── logstring_8h.html │ │ │ │ │ ├── main.html │ │ │ │ │ ├── mainpage_8dox.html │ │ │ │ │ ├── manualtriggeringpolicy_8h.html │ │ │ │ │ ├── mapfilter_8h.html │ │ │ │ │ ├── mdc_8h.html │ │ │ │ │ ├── messagebuffer_8h.html │ │ │ │ │ ├── messagepatternconverter_8h.html │ │ │ │ │ ├── methodlocationpatternconverter_8h.html │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── mutex_8h.html │ │ │ │ │ ├── nameabbreviator_8h.html │ │ │ │ │ ├── namepatternconverter_8h.html │ │ │ │ │ ├── namespacelog4cxx.html │ │ │ │ │ ├── namespacelog4cxx_1_1config.html │ │ │ │ │ ├── namespacelog4cxx_1_1db.html │ │ │ │ │ ├── namespacelog4cxx_1_1filter.html │ │ │ │ │ ├── namespacelog4cxx_1_1helpers.html │ │ │ │ │ ├── namespacelog4cxx_1_1helpers_1_1_simple_date_format_impl.html │ │ │ │ │ ├── namespacelog4cxx_1_1net.html │ │ │ │ │ ├── namespacelog4cxx_1_1nt.html │ │ │ │ │ ├── namespacelog4cxx_1_1pattern.html │ │ │ │ │ ├── namespacelog4cxx_1_1rolling.html │ │ │ │ │ ├── namespacelog4cxx_1_1rule.html │ │ │ │ │ ├── namespacelog4cxx_1_1spi.html │ │ │ │ │ ├── namespacelog4cxx_1_1varia.html │ │ │ │ │ ├── namespacelog4cxx_1_1xml.html │ │ │ │ │ ├── namespacemembers.html │ │ │ │ │ ├── namespacemembers_func.html │ │ │ │ │ ├── namespacemembers_type.html │ │ │ │ │ ├── namespaces.html │ │ │ │ │ ├── namespacestd.html │ │ │ │ │ ├── ndc_8h.html │ │ │ │ │ ├── ndcpatternconverter_8h.html │ │ │ │ │ ├── nteventlogappender_8h.html │ │ │ │ │ ├── object_8h.html │ │ │ │ │ ├── objectimpl_8h.html │ │ │ │ │ ├── objectoutputstream_8h.html │ │ │ │ │ ├── objectptr_8h.html │ │ │ │ │ ├── odbcappender_8h.html │ │ │ │ │ ├── onlyonceerrorhandler_8h.html │ │ │ │ │ ├── optionconverter_8h.html │ │ │ │ │ ├── optionhandler_8h.html │ │ │ │ │ ├── outputdebugstringappender_8h.html │ │ │ │ │ ├── outputstream_8h.html │ │ │ │ │ ├── outputstreamwriter_8h.html │ │ │ │ │ ├── patternconverter_8h.html │ │ │ │ │ ├── patternlayout_8h.html │ │ │ │ │ ├── patternparser_8h.html │ │ │ │ │ ├── pool_8h.html │ │ │ │ │ ├── portability_8h.html │ │ │ │ │ ├── properties_8h.html │ │ │ │ │ ├── propertiespatternconverter_8h.html │ │ │ │ │ ├── propertyconfigurator_8h.html │ │ │ │ │ ├── propertyfilter_8h.html │ │ │ │ │ ├── propertyresourcebundle_8h.html │ │ │ │ │ ├── propertysetter_8h.html │ │ │ │ │ ├── provisionnode_8h.html │ │ │ │ │ ├── reader_8h.html │ │ │ │ │ ├── relativetimedateformat_8h.html │ │ │ │ │ ├── relativetimepatternconverter_8h.html │ │ │ │ │ ├── repositoryselector_8h.html │ │ │ │ │ ├── resourcebundle_8h.html │ │ │ │ │ ├── rolling_2rollingfileappender_8h.html │ │ │ │ │ ├── rollingfileappender_8h.html │ │ │ │ │ ├── rollingfileappenderskeleton_8h.html │ │ │ │ │ ├── rollingpolicy_8h.html │ │ │ │ │ ├── rollingpolicybase_8h.html │ │ │ │ │ ├── rolloverdescription_8h.html │ │ │ │ │ ├── rootlogger_8h.html │ │ │ │ │ ├── serversocket_8h.html │ │ │ │ │ ├── simpledateformat_8h.html │ │ │ │ │ ├── simplelayout_8h.html │ │ │ │ │ ├── sizebasedtriggeringpolicy_8h.html │ │ │ │ │ ├── smtpappender_8h.html │ │ │ │ │ ├── socket_8h.html │ │ │ │ │ ├── socketappender_8h.html │ │ │ │ │ ├── socketappenderskeleton_8h.html │ │ │ │ │ ├── sockethubappender_8h.html │ │ │ │ │ ├── socketoutputstream_8h.html │ │ │ │ │ ├── stream_8h.html │ │ │ │ │ ├── strftimedateformat_8h.html │ │ │ │ │ ├── strictmath_8h.html │ │ │ │ │ ├── stringhelper_8h.html │ │ │ │ │ ├── stringmatchfilter_8h.html │ │ │ │ │ ├── stringtokenizer_8h.html │ │ │ │ │ ├── synchronized_8h.html │ │ │ │ │ ├── syslogappender_8h.html │ │ │ │ │ ├── syslogwriter_8h.html │ │ │ │ │ ├── system_8h.html │ │ │ │ │ ├── systemerrwriter_8h.html │ │ │ │ │ ├── systemoutwriter_8h.html │ │ │ │ │ ├── tab_b.gif │ │ │ │ │ ├── tab_l.gif │ │ │ │ │ ├── tab_r.gif │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── tchar_8h.html │ │ │ │ │ ├── telnetappender_8h.html │ │ │ │ │ ├── thread_8h.html │ │ │ │ │ ├── threadlocal_8h.html │ │ │ │ │ ├── threadpatternconverter_8h.html │ │ │ │ │ ├── threadspecificdata_8h.html │ │ │ │ │ ├── throwableinformationpatternconverter_8h.html │ │ │ │ │ ├── timebasedrollingpolicy_8h.html │ │ │ │ │ ├── timezone_8h.html │ │ │ │ │ ├── transcoder_8h.html │ │ │ │ │ ├── transform_8h.html │ │ │ │ │ ├── tree.html │ │ │ │ │ ├── triggeringeventevaluator_8h.html │ │ │ │ │ ├── triggeringpolicy_8h.html │ │ │ │ │ ├── ttcclayout_8h.html │ │ │ │ │ ├── writer_8h.html │ │ │ │ │ ├── writerappender_8h.html │ │ │ │ │ ├── xml_8h.html │ │ │ │ │ ├── xmllayout_8h.html │ │ │ │ │ ├── xmlsocketappender_8h.html │ │ │ │ │ └── zipcompressaction_8h.html │ │ │ │ ├── building │ │ │ │ │ ├── ant.html │ │ │ │ │ ├── autotools.html │ │ │ │ │ ├── maven.html │ │ │ │ │ ├── vstudio.html │ │ │ │ │ └── xcode.html │ │ │ │ ├── changes-report.html │ │ │ │ ├── css │ │ │ │ │ ├── maven-base.css │ │ │ │ │ ├── maven-theme.css │ │ │ │ │ ├── print.css │ │ │ │ │ └── site.css │ │ │ │ ├── dependencies.html │ │ │ │ ├── download.html │ │ │ │ ├── faq.html │ │ │ │ ├── images │ │ │ │ │ ├── add.gif │ │ │ │ │ ├── collapsed.gif │ │ │ │ │ ├── expanded.gif │ │ │ │ │ ├── external.png │ │ │ │ │ ├── fix.gif │ │ │ │ │ ├── icon_error_sml.gif │ │ │ │ │ ├── icon_help_sml.gif │ │ │ │ │ ├── icon_info_sml.gif │ │ │ │ │ ├── icon_success_sml.gif │ │ │ │ │ ├── icon_warning_sml.gif │ │ │ │ │ ├── logos │ │ │ │ │ │ ├── build-by-maven-black.png │ │ │ │ │ │ ├── build-by-maven-white.png │ │ │ │ │ │ └── maven-feather.png │ │ │ │ │ ├── ls-logo.jpg │ │ │ │ │ ├── newwindow.png │ │ │ │ │ ├── od.gif │ │ │ │ │ ├── remove.gif │ │ │ │ │ ├── rss.png │ │ │ │ │ └── update.gif │ │ │ │ ├── index.html │ │ │ │ ├── issue-tracking.html │ │ │ │ ├── license.html │ │ │ │ ├── mail-lists.html │ │ │ │ ├── project-info.html │ │ │ │ ├── project-reports.html │ │ │ │ ├── source-repository.html │ │ │ │ └── stylesheets │ │ │ │ │ └── project.html │ │ │ └── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ant │ │ │ │ ├── apr-build.xml │ │ │ │ ├── apr-util-build.xml │ │ │ │ ├── common.xml │ │ │ │ ├── esmtp-build.xml │ │ │ │ ├── find-apr-util.xml │ │ │ │ ├── find-apr.xml │ │ │ │ └── find-libesmtp.xml │ │ │ │ ├── assembly │ │ │ │ └── source.xml │ │ │ │ ├── changes │ │ │ │ ├── Makefile.am │ │ │ │ ├── changes.xml │ │ │ │ └── changes.xslt │ │ │ │ ├── examples │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── cpp │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── console.cpp │ │ │ │ │ ├── delayedloop.cpp │ │ │ │ │ ├── stream.cpp │ │ │ │ │ └── trivial.cpp │ │ │ │ ├── main │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cpp │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── action.cpp │ │ │ │ │ ├── appenderattachableimpl.cpp │ │ │ │ │ ├── appenderskeleton.cpp │ │ │ │ │ ├── aprinitializer.cpp │ │ │ │ │ ├── asyncappender.cpp │ │ │ │ │ ├── basicconfigurator.cpp │ │ │ │ │ ├── bufferedwriter.cpp │ │ │ │ │ ├── bytearrayinputstream.cpp │ │ │ │ │ ├── bytearrayoutputstream.cpp │ │ │ │ │ ├── bytebuffer.cpp │ │ │ │ │ ├── cacheddateformat.cpp │ │ │ │ │ ├── charsetdecoder.cpp │ │ │ │ │ ├── charsetencoder.cpp │ │ │ │ │ ├── class.cpp │ │ │ │ │ ├── classnamepatternconverter.cpp │ │ │ │ │ ├── classregistration.cpp │ │ │ │ │ ├── condition.cpp │ │ │ │ │ ├── configurator.cpp │ │ │ │ │ ├── consoleappender.cpp │ │ │ │ │ ├── cyclicbuffer.cpp │ │ │ │ │ ├── dailyrollingfileappender.cpp │ │ │ │ │ ├── datagrampacket.cpp │ │ │ │ │ ├── datagramsocket.cpp │ │ │ │ │ ├── date.cpp │ │ │ │ │ ├── dateformat.cpp │ │ │ │ │ ├── datelayout.cpp │ │ │ │ │ ├── datepatternconverter.cpp │ │ │ │ │ ├── defaultconfigurator.cpp │ │ │ │ │ ├── defaultloggerfactory.cpp │ │ │ │ │ ├── defaultrepositoryselector.cpp │ │ │ │ │ ├── domconfigurator.cpp │ │ │ │ │ ├── exception.cpp │ │ │ │ │ ├── fallbackerrorhandler.cpp │ │ │ │ │ ├── file.cpp │ │ │ │ │ ├── fileappender.cpp │ │ │ │ │ ├── filedatepatternconverter.cpp │ │ │ │ │ ├── fileinputstream.cpp │ │ │ │ │ ├── filelocationpatternconverter.cpp │ │ │ │ │ ├── fileoutputstream.cpp │ │ │ │ │ ├── filerenameaction.cpp │ │ │ │ │ ├── filewatchdog.cpp │ │ │ │ │ ├── filter.cpp │ │ │ │ │ ├── filterbasedtriggeringpolicy.cpp │ │ │ │ │ ├── fixedwindowrollingpolicy.cpp │ │ │ │ │ ├── formattinginfo.cpp │ │ │ │ │ ├── fulllocationpatternconverter.cpp │ │ │ │ │ ├── gzcompressaction.cpp │ │ │ │ │ ├── hierarchy.cpp │ │ │ │ │ ├── htmllayout.cpp │ │ │ │ │ ├── inetaddress.cpp │ │ │ │ │ ├── inputstream.cpp │ │ │ │ │ ├── inputstreamreader.cpp │ │ │ │ │ ├── integer.cpp │ │ │ │ │ ├── integerpatternconverter.cpp │ │ │ │ │ ├── layout.cpp │ │ │ │ │ ├── level.cpp │ │ │ │ │ ├── levelmatchfilter.cpp │ │ │ │ │ ├── levelpatternconverter.cpp │ │ │ │ │ ├── levelrangefilter.cpp │ │ │ │ │ ├── linelocationpatternconverter.cpp │ │ │ │ │ ├── lineseparatorpatternconverter.cpp │ │ │ │ │ ├── literalpatternconverter.cpp │ │ │ │ │ ├── loader.cpp │ │ │ │ │ ├── locale.cpp │ │ │ │ │ ├── locationinfo.cpp │ │ │ │ │ ├── logger.cpp │ │ │ │ │ ├── loggerpatternconverter.cpp │ │ │ │ │ ├── loggingevent.cpp │ │ │ │ │ ├── loggingeventpatternconverter.cpp │ │ │ │ │ ├── loglog.cpp │ │ │ │ │ ├── logmanager.cpp │ │ │ │ │ ├── logstream.cpp │ │ │ │ │ ├── manualtriggeringpolicy.cpp │ │ │ │ │ ├── mdc.cpp │ │ │ │ │ ├── messagebuffer.cpp │ │ │ │ │ ├── messagepatternconverter.cpp │ │ │ │ │ ├── methodlocationpatternconverter.cpp │ │ │ │ │ ├── mutex.cpp │ │ │ │ │ ├── nameabbreviator.cpp │ │ │ │ │ ├── namepatternconverter.cpp │ │ │ │ │ ├── ndc.cpp │ │ │ │ │ ├── ndcpatternconverter.cpp │ │ │ │ │ ├── nteventlogappender.cpp │ │ │ │ │ ├── objectimpl.cpp │ │ │ │ │ ├── objectoutputstream.cpp │ │ │ │ │ ├── objectptr.cpp │ │ │ │ │ ├── obsoleterollingfileappender.cpp │ │ │ │ │ ├── odbcappender.cpp │ │ │ │ │ ├── onlyonceerrorhandler.cpp │ │ │ │ │ ├── optionconverter.cpp │ │ │ │ │ ├── outputdebugstringappender.cpp │ │ │ │ │ ├── outputstream.cpp │ │ │ │ │ ├── outputstreamwriter.cpp │ │ │ │ │ ├── patternconverter.cpp │ │ │ │ │ ├── patternlayout.cpp │ │ │ │ │ ├── patternparser.cpp │ │ │ │ │ ├── pool.cpp │ │ │ │ │ ├── properties.cpp │ │ │ │ │ ├── propertiespatternconverter.cpp │ │ │ │ │ ├── propertyconfigurator.cpp │ │ │ │ │ ├── propertyresourcebundle.cpp │ │ │ │ │ ├── propertysetter.cpp │ │ │ │ │ ├── reader.cpp │ │ │ │ │ ├── relativetimedateformat.cpp │ │ │ │ │ ├── relativetimepatternconverter.cpp │ │ │ │ │ ├── resourcebundle.cpp │ │ │ │ │ ├── rollingfileappender.cpp │ │ │ │ │ ├── rollingpolicy.cpp │ │ │ │ │ ├── rollingpolicybase.cpp │ │ │ │ │ ├── rolloverdescription.cpp │ │ │ │ │ ├── rootlogger.cpp │ │ │ │ │ ├── serversocket.cpp │ │ │ │ │ ├── simpledateformat.cpp │ │ │ │ │ ├── simplelayout.cpp │ │ │ │ │ ├── sizebasedtriggeringpolicy.cpp │ │ │ │ │ ├── smtpappender.cpp │ │ │ │ │ ├── socket.cpp │ │ │ │ │ ├── socketappender.cpp │ │ │ │ │ ├── socketappenderskeleton.cpp │ │ │ │ │ ├── sockethubappender.cpp │ │ │ │ │ ├── socketoutputstream.cpp │ │ │ │ │ ├── strftimedateformat.cpp │ │ │ │ │ ├── stringhelper.cpp │ │ │ │ │ ├── stringmatchfilter.cpp │ │ │ │ │ ├── stringtokenizer.cpp │ │ │ │ │ ├── synchronized.cpp │ │ │ │ │ ├── syslogappender.cpp │ │ │ │ │ ├── syslogwriter.cpp │ │ │ │ │ ├── system.cpp │ │ │ │ │ ├── systemerrwriter.cpp │ │ │ │ │ ├── systemoutwriter.cpp │ │ │ │ │ ├── telnetappender.cpp │ │ │ │ │ ├── threadcxx.cpp │ │ │ │ │ ├── threadlocal.cpp │ │ │ │ │ ├── threadpatternconverter.cpp │ │ │ │ │ ├── threadspecificdata.cpp │ │ │ │ │ ├── throwableinformationpatternconverter.cpp │ │ │ │ │ ├── timebasedrollingpolicy.cpp │ │ │ │ │ ├── timezone.cpp │ │ │ │ │ ├── transcoder.cpp │ │ │ │ │ ├── transform.cpp │ │ │ │ │ ├── triggeringpolicy.cpp │ │ │ │ │ ├── ttcclayout.cpp │ │ │ │ │ ├── writer.cpp │ │ │ │ │ ├── writerappender.cpp │ │ │ │ │ ├── xmllayout.cpp │ │ │ │ │ ├── xmlsocketappender.cpp │ │ │ │ │ └── zipcompressaction.cpp │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── log4cxx │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── appender.h │ │ │ │ │ │ ├── appenderskeleton.h │ │ │ │ │ │ ├── asyncappender.h │ │ │ │ │ │ ├── basicconfigurator.h │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── propertysetter.h │ │ │ │ │ │ ├── config_msvc.h.in │ │ │ │ │ │ ├── consoleappender.h │ │ │ │ │ │ ├── dailyrollingfileappender.h │ │ │ │ │ │ ├── db │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── odbcappender.h │ │ │ │ │ │ ├── defaultconfigurator.h │ │ │ │ │ │ ├── defaultloggerfactory.h │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ ├── fileappender.h │ │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── andfilter.h │ │ │ │ │ │ ├── denyallfilter.h │ │ │ │ │ │ ├── expressionfilter.h │ │ │ │ │ │ ├── levelmatchfilter.h │ │ │ │ │ │ ├── levelrangefilter.h │ │ │ │ │ │ ├── locationinfofilter.h │ │ │ │ │ │ ├── mapfilter.h │ │ │ │ │ │ ├── propertyfilter.h │ │ │ │ │ │ └── stringmatchfilter.h │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── absolutetimedateformat.h │ │ │ │ │ │ ├── appenderattachableimpl.h │ │ │ │ │ │ ├── aprinitializer.h │ │ │ │ │ │ ├── bufferedoutputstream.h │ │ │ │ │ │ ├── bufferedwriter.h │ │ │ │ │ │ ├── bytearrayinputstream.h │ │ │ │ │ │ ├── bytearrayoutputstream.h │ │ │ │ │ │ ├── bytebuffer.h │ │ │ │ │ │ ├── cacheddateformat.h │ │ │ │ │ │ ├── charsetdecoder.h │ │ │ │ │ │ ├── charsetencoder.h │ │ │ │ │ │ ├── class.h │ │ │ │ │ │ ├── classregistration.h │ │ │ │ │ │ ├── condition.h │ │ │ │ │ │ ├── cyclicbuffer.h │ │ │ │ │ │ ├── datagrampacket.h │ │ │ │ │ │ ├── datagramsocket.h │ │ │ │ │ │ ├── date.h │ │ │ │ │ │ ├── dateformat.h │ │ │ │ │ │ ├── datelayout.h │ │ │ │ │ │ ├── datetimedateformat.h │ │ │ │ │ │ ├── exception.h │ │ │ │ │ │ ├── fileinputstream.h │ │ │ │ │ │ ├── fileoutputstream.h │ │ │ │ │ │ ├── filewatchdog.h │ │ │ │ │ │ ├── inetaddress.h │ │ │ │ │ │ ├── inputstream.h │ │ │ │ │ │ ├── inputstreamreader.h │ │ │ │ │ │ ├── integer.h │ │ │ │ │ │ ├── iso8601dateformat.h │ │ │ │ │ │ ├── loader.h │ │ │ │ │ │ ├── locale.h │ │ │ │ │ │ ├── loglog.h │ │ │ │ │ │ ├── messagebuffer.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── object.h │ │ │ │ │ │ ├── objectimpl.h │ │ │ │ │ │ ├── objectoutputstream.h │ │ │ │ │ │ ├── objectptr.h │ │ │ │ │ │ ├── onlyonceerrorhandler.h │ │ │ │ │ │ ├── optionconverter.h │ │ │ │ │ │ ├── outputstream.h │ │ │ │ │ │ ├── outputstreamwriter.h │ │ │ │ │ │ ├── pool.h │ │ │ │ │ │ ├── properties.h │ │ │ │ │ │ ├── propertyresourcebundle.h │ │ │ │ │ │ ├── reader.h │ │ │ │ │ │ ├── relativetimedateformat.h │ │ │ │ │ │ ├── resourcebundle.h │ │ │ │ │ │ ├── serversocket.h │ │ │ │ │ │ ├── simpledateformat.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── socketoutputstream.h │ │ │ │ │ │ ├── strftimedateformat.h │ │ │ │ │ │ ├── strictmath.h │ │ │ │ │ │ ├── stringhelper.h │ │ │ │ │ │ ├── stringtokenizer.h │ │ │ │ │ │ ├── synchronized.h │ │ │ │ │ │ ├── syslogwriter.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── systemerrwriter.h │ │ │ │ │ │ ├── systemoutwriter.h │ │ │ │ │ │ ├── tchar.h │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ ├── threadlocal.h │ │ │ │ │ │ ├── threadspecificdata.h │ │ │ │ │ │ ├── timezone.h │ │ │ │ │ │ ├── transcoder.h │ │ │ │ │ │ ├── transform.h │ │ │ │ │ │ ├── writer.h │ │ │ │ │ │ └── xml.h │ │ │ │ │ │ ├── hierarchy.h │ │ │ │ │ │ ├── htmllayout.h │ │ │ │ │ │ ├── layout.h │ │ │ │ │ │ ├── level.h │ │ │ │ │ │ ├── log4cxx.h │ │ │ │ │ │ ├── log4cxx.h.in │ │ │ │ │ │ ├── log4cxx.hw │ │ │ │ │ │ ├── logger.h │ │ │ │ │ │ ├── logmanager.h │ │ │ │ │ │ ├── logstring.h │ │ │ │ │ │ ├── mdc.h │ │ │ │ │ │ ├── ndc.h │ │ │ │ │ │ ├── net │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── smtpappender.h │ │ │ │ │ │ ├── socketappender.h │ │ │ │ │ │ ├── socketappenderskeleton.h │ │ │ │ │ │ ├── sockethubappender.h │ │ │ │ │ │ ├── syslogappender.h │ │ │ │ │ │ ├── telnetappender.h │ │ │ │ │ │ └── xmlsocketappender.h │ │ │ │ │ │ ├── nt │ │ │ │ │ │ ├── EventLogCategories.mc │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── nteventlogappender.h │ │ │ │ │ │ └── outputdebugstringappender.h │ │ │ │ │ │ ├── pattern │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── classnamepatternconverter.h │ │ │ │ │ │ ├── datepatternconverter.h │ │ │ │ │ │ ├── filedatepatternconverter.h │ │ │ │ │ │ ├── filelocationpatternconverter.h │ │ │ │ │ │ ├── formattinginfo.h │ │ │ │ │ │ ├── fulllocationpatternconverter.h │ │ │ │ │ │ ├── integerpatternconverter.h │ │ │ │ │ │ ├── levelpatternconverter.h │ │ │ │ │ │ ├── linelocationpatternconverter.h │ │ │ │ │ │ ├── lineseparatorpatternconverter.h │ │ │ │ │ │ ├── literalpatternconverter.h │ │ │ │ │ │ ├── loggerpatternconverter.h │ │ │ │ │ │ ├── loggingeventpatternconverter.h │ │ │ │ │ │ ├── messagepatternconverter.h │ │ │ │ │ │ ├── methodlocationpatternconverter.h │ │ │ │ │ │ ├── nameabbreviator.h │ │ │ │ │ │ ├── namepatternconverter.h │ │ │ │ │ │ ├── ndcpatternconverter.h │ │ │ │ │ │ ├── patternconverter.h │ │ │ │ │ │ ├── patternparser.h │ │ │ │ │ │ ├── propertiespatternconverter.h │ │ │ │ │ │ ├── relativetimepatternconverter.h │ │ │ │ │ │ ├── threadpatternconverter.h │ │ │ │ │ │ └── throwableinformationpatternconverter.h │ │ │ │ │ │ ├── patternlayout.h │ │ │ │ │ │ ├── portability.h │ │ │ │ │ │ ├── private │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── log4cxx_private.h │ │ │ │ │ │ ├── log4cxx_private.h.in │ │ │ │ │ │ └── log4cxx_private.hw │ │ │ │ │ │ ├── propertyconfigurator.h │ │ │ │ │ │ ├── provisionnode.h │ │ │ │ │ │ ├── rolling │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── action.h │ │ │ │ │ │ ├── filerenameaction.h │ │ │ │ │ │ ├── filterbasedtriggeringpolicy.h │ │ │ │ │ │ ├── fixedwindowrollingpolicy.h │ │ │ │ │ │ ├── gzcompressaction.h │ │ │ │ │ │ ├── manualtriggeringpolicy.h │ │ │ │ │ │ ├── rollingfileappender.h │ │ │ │ │ │ ├── rollingfileappenderskeleton.h │ │ │ │ │ │ ├── rollingpolicy.h │ │ │ │ │ │ ├── rollingpolicybase.h │ │ │ │ │ │ ├── rolloverdescription.h │ │ │ │ │ │ ├── sizebasedtriggeringpolicy.h │ │ │ │ │ │ ├── timebasedrollingpolicy.h │ │ │ │ │ │ ├── triggeringpolicy.h │ │ │ │ │ │ └── zipcompressaction.h │ │ │ │ │ │ ├── rollingfileappender.h │ │ │ │ │ │ ├── simplelayout.h │ │ │ │ │ │ ├── spi │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── appenderattachable.h │ │ │ │ │ │ ├── configurator.h │ │ │ │ │ │ ├── defaultrepositoryselector.h │ │ │ │ │ │ ├── errorhandler.h │ │ │ │ │ │ ├── filter.h │ │ │ │ │ │ ├── hierarchyeventlistener.h │ │ │ │ │ │ ├── location │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── locationinfo.h │ │ │ │ │ │ ├── loggerfactory.h │ │ │ │ │ │ ├── loggerrepository.h │ │ │ │ │ │ ├── loggingevent.h │ │ │ │ │ │ ├── optionhandler.h │ │ │ │ │ │ ├── repositoryselector.h │ │ │ │ │ │ ├── rootlogger.h │ │ │ │ │ │ └── triggeringeventevaluator.h │ │ │ │ │ │ ├── stream.h │ │ │ │ │ │ ├── ttcclayout.h │ │ │ │ │ │ ├── varia │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── fallbackerrorhandler.h │ │ │ │ │ │ ├── writerappender.h │ │ │ │ │ │ └── xml │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── domconfigurator.h │ │ │ │ │ │ └── xmllayout.h │ │ │ │ └── resources │ │ │ │ │ ├── EventLogCategories.mc │ │ │ │ │ ├── MSG00001.bin │ │ │ │ │ └── log4cxx.rc │ │ │ │ ├── site │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── apt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── building │ │ │ │ │ │ ├── ant.apt │ │ │ │ │ │ ├── autotools.apt │ │ │ │ │ │ ├── maven.apt │ │ │ │ │ │ ├── vstudio.apt │ │ │ │ │ │ └── xcode.apt │ │ │ │ │ └── download.apt │ │ │ │ ├── doxy │ │ │ │ │ ├── Doxyfile.in │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── license_notice_footer.txt │ │ │ │ │ └── mainpage.dox │ │ │ │ ├── fml │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── faq.fml │ │ │ │ ├── resources │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── css │ │ │ │ │ │ └── site.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── ls-logo.jpg │ │ │ │ │ │ └── od.gif │ │ │ │ ├── site.xml │ │ │ │ └── xdoc │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── index.xml │ │ │ │ │ └── stylesheets │ │ │ │ │ ├── project.xml │ │ │ │ │ ├── site.css │ │ │ │ │ └── site.vsl │ │ │ │ └── test │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── abts.cpp │ │ │ │ ├── abts.h │ │ │ │ ├── abts_tests.h │ │ │ │ ├── appenderskeletontestcase.cpp │ │ │ │ ├── appenderskeletontestcase.h │ │ │ │ ├── asyncappendertestcase.cpp │ │ │ │ ├── consoleappendertestcase.cpp │ │ │ │ ├── customlogger │ │ │ │ │ ├── xlogger.cpp │ │ │ │ │ ├── xlogger.h │ │ │ │ │ └── xloggertestcase.cpp │ │ │ │ ├── db │ │ │ │ │ └── odbcappendertestcase.cpp │ │ │ │ ├── defaultinit │ │ │ │ │ ├── testcase1.cpp │ │ │ │ │ ├── testcase2.cpp │ │ │ │ │ ├── testcase3.cpp │ │ │ │ │ └── testcase4.cpp │ │ │ │ ├── encodingtest.cpp │ │ │ │ ├── fileappendertest.cpp │ │ │ │ ├── fileappendertestcase.cpp │ │ │ │ ├── fileappendertestcase.h │ │ │ │ ├── filetestcase.cpp │ │ │ │ ├── helpers │ │ │ │ │ ├── absolutetimedateformattestcase.cpp │ │ │ │ │ ├── cacheddateformattestcase.cpp │ │ │ │ │ ├── charsetdecodertestcase.cpp │ │ │ │ │ ├── charsetencodertestcase.cpp │ │ │ │ │ ├── cyclicbuffertestcase.cpp │ │ │ │ │ ├── datetimedateformattestcase.cpp │ │ │ │ │ ├── inetaddresstestcase.cpp │ │ │ │ │ ├── iso8601dateformattestcase.cpp │ │ │ │ │ ├── localechanger.cpp │ │ │ │ │ ├── localechanger.h │ │ │ │ │ ├── messagebuffertest.cpp │ │ │ │ │ ├── optionconvertertestcase.cpp │ │ │ │ │ ├── propertiestestcase.cpp │ │ │ │ │ ├── relativetimedateformattestcase.cpp │ │ │ │ │ ├── stringhelpertestcase.cpp │ │ │ │ │ ├── stringtokenizertestcase.cpp │ │ │ │ │ ├── syslogwritertest.cpp │ │ │ │ │ ├── timezonetestcase.cpp │ │ │ │ │ └── transcodertestcase.cpp │ │ │ │ ├── hierarchytest.cpp │ │ │ │ ├── hierarchythresholdtestcase.cpp │ │ │ │ ├── insertwide.h │ │ │ │ ├── l7dtestcase.cpp │ │ │ │ ├── leveltestcase.cpp │ │ │ │ ├── loggertestcase.cpp │ │ │ │ ├── logunit.cpp │ │ │ │ ├── logunit.h │ │ │ │ ├── minimumtestcase.cpp │ │ │ │ ├── ndctestcase.cpp │ │ │ │ ├── net │ │ │ │ │ ├── smtpappendertestcase.cpp │ │ │ │ │ ├── socketappendertestcase.cpp │ │ │ │ │ ├── sockethubappendertestcase.cpp │ │ │ │ │ ├── socketservertestcase.cpp │ │ │ │ │ ├── socketservertestcase.h │ │ │ │ │ ├── syslogappendertestcase.cpp │ │ │ │ │ ├── telnetappendertestcase.cpp │ │ │ │ │ └── xmlsocketappendertestcase.cpp │ │ │ │ ├── nt │ │ │ │ │ └── nteventlogappendertestcase.cpp │ │ │ │ ├── pattern │ │ │ │ │ ├── num343patternconverter.cpp │ │ │ │ │ ├── num343patternconverter.h │ │ │ │ │ └── patternparsertestcase.cpp │ │ │ │ ├── patternlayouttest.cpp │ │ │ │ ├── propertyconfiguratortest.cpp │ │ │ │ ├── rolling │ │ │ │ │ ├── filenamepatterntestcase.cpp │ │ │ │ │ ├── filterbasedrollingtest.cpp │ │ │ │ │ ├── manualrollingtest.cpp │ │ │ │ │ ├── obsoletedailyrollingfileappendertest.cpp │ │ │ │ │ ├── obsoleterollingfileappendertest.cpp │ │ │ │ │ ├── sizebasedrollingtest.cpp │ │ │ │ │ └── timebasedrollingtest.cpp │ │ │ │ ├── rollingfileappendertestcase.cpp │ │ │ │ ├── spi │ │ │ │ │ └── loggingeventtest.cpp │ │ │ │ ├── streamtestcase.cpp │ │ │ │ ├── testchar.h │ │ │ │ ├── testutil.h │ │ │ │ ├── util │ │ │ │ │ ├── absolutedateandtimefilter.cpp │ │ │ │ │ ├── absolutedateandtimefilter.h │ │ │ │ │ ├── absolutetimefilter.cpp │ │ │ │ │ ├── absolutetimefilter.h │ │ │ │ │ ├── binarycompare.cpp │ │ │ │ │ ├── binarycompare.h │ │ │ │ │ ├── compare.cpp │ │ │ │ │ ├── compare.h │ │ │ │ │ ├── controlfilter.cpp │ │ │ │ │ ├── controlfilter.h │ │ │ │ │ ├── filenamefilter.cpp │ │ │ │ │ ├── filenamefilter.h │ │ │ │ │ ├── filter.h │ │ │ │ │ ├── iso8601filter.cpp │ │ │ │ │ ├── iso8601filter.h │ │ │ │ │ ├── linenumberfilter.cpp │ │ │ │ │ ├── linenumberfilter.h │ │ │ │ │ ├── relativetimefilter.cpp │ │ │ │ │ ├── relativetimefilter.h │ │ │ │ │ ├── serializationtesthelper.cpp │ │ │ │ │ ├── serializationtesthelper.h │ │ │ │ │ ├── threadfilter.cpp │ │ │ │ │ ├── threadfilter.h │ │ │ │ │ ├── transformer.cpp │ │ │ │ │ ├── transformer.h │ │ │ │ │ ├── utilfilter.cpp │ │ │ │ │ ├── xmlfilenamefilter.cpp │ │ │ │ │ ├── xmlfilenamefilter.h │ │ │ │ │ ├── xmllineattributefilter.cpp │ │ │ │ │ ├── xmllineattributefilter.h │ │ │ │ │ ├── xmlthreadfilter.cpp │ │ │ │ │ ├── xmlthreadfilter.h │ │ │ │ │ ├── xmltimestampfilter.cpp │ │ │ │ │ └── xmltimestampfilter.h │ │ │ │ ├── varia │ │ │ │ │ ├── errorhandlertestcase.cpp │ │ │ │ │ ├── levelmatchfiltertestcase.cpp │ │ │ │ │ └── levelrangefiltertestcase.cpp │ │ │ │ ├── vectorappender.cpp │ │ │ │ ├── vectorappender.h │ │ │ │ ├── writerappendertestcase.cpp │ │ │ │ ├── writerappendertestcase.h │ │ │ │ └── xml │ │ │ │ │ ├── customleveltestcase.cpp │ │ │ │ │ ├── domtestcase.cpp │ │ │ │ │ ├── xlevel.cpp │ │ │ │ │ ├── xlevel.h │ │ │ │ │ ├── xmllayouttest.cpp │ │ │ │ │ └── xmllayouttestcase.cpp │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── log4j │ │ │ │ │ └── net │ │ │ │ │ └── ShortSocketServer.java │ │ │ │ └── resources │ │ │ │ ├── L7D_en_US.properties │ │ │ │ ├── L7D_fr.properties │ │ │ │ ├── L7D_fr_CH.properties │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── input │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── defaultInit3.properties │ │ │ │ ├── hierarchyThreshold1.properties │ │ │ │ ├── hierarchyThreshold2.properties │ │ │ │ ├── hierarchyThreshold3.properties │ │ │ │ ├── hierarchyThreshold4.properties │ │ │ │ ├── hierarchyThreshold5.properties │ │ │ │ ├── hierarchyThreshold6.properties │ │ │ │ ├── hierarchyThreshold7.properties │ │ │ │ ├── hierarchyThreshold8.properties │ │ │ │ ├── l7d1.properties │ │ │ │ ├── ndc │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── NDC1.properties │ │ │ │ ├── patternLayout.mdc.1.properties │ │ │ │ ├── patternLayout1.properties │ │ │ │ ├── patternLayout10.properties │ │ │ │ ├── patternLayout11.properties │ │ │ │ ├── patternLayout12.properties │ │ │ │ ├── patternLayout2.properties │ │ │ │ ├── patternLayout3.properties │ │ │ │ ├── patternLayout4.properties │ │ │ │ ├── patternLayout5.properties │ │ │ │ ├── patternLayout6.properties │ │ │ │ ├── patternLayout7.properties │ │ │ │ ├── patternLayout8.properties │ │ │ │ ├── patternLayout9.properties │ │ │ │ ├── rolling │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── filter1.xml │ │ │ │ │ ├── obsoleteDRFA1.properties │ │ │ │ │ ├── obsoleteERFA1.properties │ │ │ │ │ ├── obsoleteRFA1.properties │ │ │ │ │ └── time1.xml │ │ │ │ ├── socketServer1.properties │ │ │ │ ├── socketServer2.properties │ │ │ │ ├── socketServer3.properties │ │ │ │ ├── socketServer4.properties │ │ │ │ ├── socketServer5.properties │ │ │ │ ├── socketServer6.properties │ │ │ │ ├── socketServer7.properties │ │ │ │ ├── socketServer8.properties │ │ │ │ └── xml │ │ │ │ │ ├── DOMTestCase1.xml │ │ │ │ │ ├── DOMTestCase2.xml │ │ │ │ │ ├── DOMTestCase3.xml │ │ │ │ │ ├── DOMTestCase4.xml │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── asyncAppender1.xml │ │ │ │ │ ├── customLevel1.xml │ │ │ │ │ ├── customLevel2.xml │ │ │ │ │ ├── customLevel3.xml │ │ │ │ │ ├── customLevel4.xml │ │ │ │ │ ├── customLogger1.xml │ │ │ │ │ ├── customLogger2.xml │ │ │ │ │ ├── defaultInit.xml │ │ │ │ │ ├── fallback1.xml │ │ │ │ │ ├── filters.LevelMatchFilter.test4.0.xml │ │ │ │ │ ├── filters.LevelMatchFilter.test4.1.xml │ │ │ │ │ ├── filters.LevelMatchFilter.test4.2.xml │ │ │ │ │ ├── filters.LevelMatchFilter.test4.3.xml │ │ │ │ │ ├── filters.LevelMatchFilter.test4.4.xml │ │ │ │ │ ├── log4j.dtd │ │ │ │ │ └── smtpAppender1.xml │ │ │ │ └── witness │ │ │ │ ├── LevelMatchFilter_accept │ │ │ │ ├── LevelMatchFilter_deny │ │ │ │ ├── LevelRangeFilter_accept │ │ │ │ ├── LevelRangeFilter_neutral │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NDCMatchFilter_accept │ │ │ │ ├── NDCMatchFilter_deny │ │ │ │ ├── customLevel.1 │ │ │ │ ├── customLevel.2 │ │ │ │ ├── customLevel.3 │ │ │ │ ├── customLevel.4 │ │ │ │ ├── customLogger.1 │ │ │ │ ├── customLogger.2 │ │ │ │ ├── dom.A1.1 │ │ │ │ ├── dom.A1.2 │ │ │ │ ├── dom.A2.1 │ │ │ │ ├── dom.A2.2 │ │ │ │ ├── encoding │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── UTF-16.log │ │ │ │ ├── UTF-16BE.log │ │ │ │ ├── UTF-16LE.log │ │ │ │ ├── UTF-8.log │ │ │ │ ├── ascii.log │ │ │ │ └── latin1.log │ │ │ │ ├── fallback │ │ │ │ ├── hierarchyThreshold.1 │ │ │ │ ├── hierarchyThreshold.2 │ │ │ │ ├── hierarchyThreshold.3 │ │ │ │ ├── hierarchyThreshold.4 │ │ │ │ ├── hierarchyThreshold.5 │ │ │ │ ├── hierarchyThreshold.6 │ │ │ │ ├── hierarchyThreshold.7 │ │ │ │ ├── hierarchyThreshold.8 │ │ │ │ ├── l7d.1 │ │ │ │ ├── ndc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── NDC.1 │ │ │ │ ├── patternLayout.1 │ │ │ │ ├── patternLayout.10 │ │ │ │ ├── patternLayout.11 │ │ │ │ ├── patternLayout.12 │ │ │ │ ├── patternLayout.2 │ │ │ │ ├── patternLayout.3 │ │ │ │ ├── patternLayout.4 │ │ │ │ ├── patternLayout.5 │ │ │ │ ├── patternLayout.6 │ │ │ │ ├── patternLayout.7 │ │ │ │ ├── patternLayout.8 │ │ │ │ ├── patternLayout.9 │ │ │ │ ├── patternLayout.mdc.1 │ │ │ │ ├── patternLayout.mdc.2 │ │ │ │ ├── rolling │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── sbr-test2.0 │ │ │ │ ├── sbr-test2.1 │ │ │ │ ├── sbr-test2.log │ │ │ │ ├── sbr-test3.0.gz │ │ │ │ ├── sbr-test3.1.gz │ │ │ │ ├── sbr-test3.log │ │ │ │ ├── sbr-test4.log │ │ │ │ ├── tbr-test1.0 │ │ │ │ ├── tbr-test1.1 │ │ │ │ ├── tbr-test1.2 │ │ │ │ ├── tbr-test1.3 │ │ │ │ ├── tbr-test2.0 │ │ │ │ ├── tbr-test2.1 │ │ │ │ ├── tbr-test2.2 │ │ │ │ ├── tbr-test2.3 │ │ │ │ ├── tbr-test3.3 │ │ │ │ ├── tbr-test4.0 │ │ │ │ ├── tbr-test4.1 │ │ │ │ ├── tbr-test4.2 │ │ │ │ ├── tbr-test4.3 │ │ │ │ ├── tbr-test5.0 │ │ │ │ ├── tbr-test5.1 │ │ │ │ ├── tbr-test5.2 │ │ │ │ ├── tbr-test5.3 │ │ │ │ └── tbr-test6.3 │ │ │ │ ├── serialization │ │ │ │ ├── exception.bin │ │ │ │ ├── info.bin │ │ │ │ ├── location.bin │ │ │ │ ├── mdc.bin │ │ │ │ ├── ndc.bin │ │ │ │ └── simple.bin │ │ │ │ ├── simple │ │ │ │ ├── socketServer.1 │ │ │ │ ├── socketServer.2 │ │ │ │ ├── socketServer.3 │ │ │ │ ├── socketServer.4 │ │ │ │ ├── socketServer.5 │ │ │ │ ├── socketServer.6 │ │ │ │ ├── socketServer.7 │ │ │ │ ├── socketServer.8 │ │ │ │ ├── ttcc │ │ │ │ ├── xmlLayout.1 │ │ │ │ ├── xmlLayout.2 │ │ │ │ ├── xmlLayout.3 │ │ │ │ ├── xmlLayout.mdc.1 │ │ │ │ ├── xmlLayout.mdc.2 │ │ │ │ └── xmlLayout.null │ │ ├── mysql │ │ │ └── mysql │ │ │ │ ├── config-win.h │ │ │ │ ├── decimal.h │ │ │ │ ├── errmsg.h │ │ │ │ ├── keycache.h │ │ │ │ ├── libmysql.def │ │ │ │ ├── m_ctype.h │ │ │ │ ├── m_string.h │ │ │ │ ├── my_alloc.h │ │ │ │ ├── my_attribute.h │ │ │ │ ├── my_dbug.h │ │ │ │ ├── my_dir.h │ │ │ │ ├── my_getopt.h │ │ │ │ ├── my_global.h │ │ │ │ ├── my_list.h │ │ │ │ ├── my_net.h │ │ │ │ ├── my_no_pthread.h │ │ │ │ ├── my_pthread.h │ │ │ │ ├── my_sys.h │ │ │ │ ├── my_xml.h │ │ │ │ ├── mysql.h │ │ │ │ ├── mysql_com.h │ │ │ │ ├── mysql_embed.h │ │ │ │ ├── mysql_time.h │ │ │ │ ├── mysql_version.h │ │ │ │ ├── mysqld_ername.h │ │ │ │ ├── mysqld_error.h │ │ │ │ ├── raid.h │ │ │ │ ├── sql_common.h │ │ │ │ ├── sql_state.h │ │ │ │ ├── sslopt-case.h │ │ │ │ ├── sslopt-longopts.h │ │ │ │ ├── sslopt-vars.h │ │ │ │ └── typelib.h │ │ ├── openssl │ │ │ ├── CHANGES │ │ │ ├── CHANGES.SSLeay │ │ │ ├── ChangeLog.0_9_7-stable_not-in-head │ │ │ ├── ChangeLog.0_9_7-stable_not-in-head_FIPS │ │ │ ├── Configure │ │ │ ├── FAQ │ │ │ ├── INSTALL │ │ │ ├── INSTALL.DJGPP │ │ │ ├── INSTALL.MacOS │ │ │ ├── INSTALL.NW │ │ │ ├── INSTALL.OS2 │ │ │ ├── INSTALL.VMS │ │ │ ├── INSTALL.W32 │ │ │ ├── INSTALL.W64 │ │ │ ├── INSTALL.WCE │ │ │ ├── LICENSE │ │ │ ├── MacOS │ │ │ │ ├── GUSI_Init.cpp │ │ │ │ ├── GetHTTPS.src │ │ │ │ │ ├── CPStringUtils.cpp │ │ │ │ │ ├── CPStringUtils.hpp │ │ │ │ │ ├── ErrorHandling.cpp │ │ │ │ │ ├── ErrorHandling.hpp │ │ │ │ │ ├── GetHTTPS.cpp │ │ │ │ │ ├── MacSocket.cpp │ │ │ │ │ └── MacSocket.h │ │ │ │ ├── OpenSSL.mcp.hqx │ │ │ │ ├── Randomizer.cpp │ │ │ │ ├── Randomizer.h │ │ │ │ ├── TODO │ │ │ │ ├── _MWERKS_GUSI_prefix.h │ │ │ │ ├── _MWERKS_prefix.h │ │ │ │ ├── buildinf.h │ │ │ │ ├── mklinks.as.hqx │ │ │ │ └── opensslconf.h │ │ │ ├── Makefile │ │ │ ├── Makefile.org │ │ │ ├── Makefile.shared │ │ │ ├── NEWS │ │ │ ├── Netware │ │ │ │ ├── build.bat │ │ │ │ ├── cpy_tests.bat │ │ │ │ ├── do_tests.pl │ │ │ │ ├── globals.txt │ │ │ │ ├── readme.txt │ │ │ │ └── set_env.bat │ │ │ ├── PROBLEMS │ │ │ ├── README │ │ │ ├── README.ASN1 │ │ │ ├── README.ENGINE │ │ │ ├── VMS │ │ │ │ ├── TODO │ │ │ │ ├── VMSify-conf.pl │ │ │ │ ├── WISHLIST.TXT │ │ │ │ ├── install.com │ │ │ │ ├── mkshared.com │ │ │ │ ├── multinet_shr.opt │ │ │ │ ├── openssl_utils.com │ │ │ │ ├── socketshr_shr.opt │ │ │ │ ├── tcpip_shr_decc.opt │ │ │ │ ├── test-includes.com │ │ │ │ ├── ucx_shr_decc.opt │ │ │ │ ├── ucx_shr_decc_log.opt │ │ │ │ └── ucx_shr_vaxc.opt │ │ │ ├── apps │ │ │ │ ├── CA.com │ │ │ │ ├── CA.pl │ │ │ │ ├── CA.pl.in │ │ │ │ ├── CA.sh │ │ │ │ ├── Makefile │ │ │ │ ├── app_rand.c │ │ │ │ ├── apps.c │ │ │ │ ├── apps.h │ │ │ │ ├── asn1pars.c │ │ │ │ ├── ca-cert.srl │ │ │ │ ├── ca-key.pem │ │ │ │ ├── ca-req.pem │ │ │ │ ├── ca.c │ │ │ │ ├── cert.pem │ │ │ │ ├── ciphers.c │ │ │ │ ├── client.pem │ │ │ │ ├── crl.c │ │ │ │ ├── crl2p7.c │ │ │ │ ├── demoCA │ │ │ │ │ ├── cacert.pem │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── private │ │ │ │ │ │ └── cakey.pem │ │ │ │ │ └── serial │ │ │ │ ├── dgst.c │ │ │ │ ├── dh.c │ │ │ │ ├── dh1024.pem │ │ │ │ ├── dh2048.pem │ │ │ │ ├── dh4096.pem │ │ │ │ ├── dh512.pem │ │ │ │ ├── dhparam.c │ │ │ │ ├── dsa-ca.pem │ │ │ │ ├── dsa-pca.pem │ │ │ │ ├── dsa.c │ │ │ │ ├── dsa1024.pem │ │ │ │ ├── dsa512.pem │ │ │ │ ├── dsap.pem │ │ │ │ ├── dsaparam.c │ │ │ │ ├── ec.c │ │ │ │ ├── ecparam.c │ │ │ │ ├── enc.c │ │ │ │ ├── engine.c │ │ │ │ ├── errstr.c │ │ │ │ ├── gendh.c │ │ │ │ ├── gendsa.c │ │ │ │ ├── genrsa.c │ │ │ │ ├── install.com │ │ │ │ ├── makeapps.com │ │ │ │ ├── md4.c │ │ │ │ ├── nseq.c │ │ │ │ ├── ocsp.c │ │ │ │ ├── oid.cnf │ │ │ │ ├── openssl-vms.cnf │ │ │ │ ├── openssl.c │ │ │ │ ├── openssl.cnf │ │ │ │ ├── passwd.c │ │ │ │ ├── pca-cert.srl │ │ │ │ ├── pca-key.pem │ │ │ │ ├── pca-req.pem │ │ │ │ ├── pkcs12.c │ │ │ │ ├── pkcs7.c │ │ │ │ ├── pkcs8.c │ │ │ │ ├── prime.c │ │ │ │ ├── privkey.pem │ │ │ │ ├── progs.h │ │ │ │ ├── progs.pl │ │ │ │ ├── rand.c │ │ │ │ ├── req.c │ │ │ │ ├── req.pem │ │ │ │ ├── rsa.c │ │ │ │ ├── rsa8192.pem │ │ │ │ ├── rsautl.c │ │ │ │ ├── s1024key.pem │ │ │ │ ├── s1024req.pem │ │ │ │ ├── s512-key.pem │ │ │ │ ├── s512-req.pem │ │ │ │ ├── s_apps.h │ │ │ │ ├── s_cb.c │ │ │ │ ├── s_client.c │ │ │ │ ├── s_server.c │ │ │ │ ├── s_socket.c │ │ │ │ ├── s_time.c │ │ │ │ ├── server.pem │ │ │ │ ├── server.srl │ │ │ │ ├── server2.pem │ │ │ │ ├── sess_id.c │ │ │ │ ├── set │ │ │ │ │ ├── set-g-ca.pem │ │ │ │ │ ├── set-m-ca.pem │ │ │ │ │ ├── set_b_ca.pem │ │ │ │ │ ├── set_c_ca.pem │ │ │ │ │ ├── set_d_ct.pem │ │ │ │ │ └── set_root.pem │ │ │ │ ├── smime.c │ │ │ │ ├── speed.c │ │ │ │ ├── spkac.c │ │ │ │ ├── testCA.pem │ │ │ │ ├── testdsa.h │ │ │ │ ├── testrsa.h │ │ │ │ ├── timeouts.h │ │ │ │ ├── verify.c │ │ │ │ ├── version.c │ │ │ │ ├── winrand.c │ │ │ │ └── x509.c │ │ │ ├── bugs │ │ │ │ ├── MS │ │ │ │ ├── SSLv3 │ │ │ │ ├── alpha.c │ │ │ │ ├── dggccbug.c │ │ │ │ ├── sgiccbug.c │ │ │ │ ├── sslref.dif │ │ │ │ ├── stream.c │ │ │ │ └── ultrixcc.c │ │ │ ├── certs │ │ │ │ ├── RegTP-5R.pem │ │ │ │ ├── RegTP-6R.pem │ │ │ │ ├── aol1.pem │ │ │ │ ├── aol2.pem │ │ │ │ ├── aoltw1.pem │ │ │ │ ├── aoltw2.pem │ │ │ │ ├── argena.pem │ │ │ │ ├── argeng.pem │ │ │ │ ├── demo │ │ │ │ │ ├── ca-cert.pem │ │ │ │ │ ├── dsa-ca.pem │ │ │ │ │ ├── dsa-pca.pem │ │ │ │ │ ├── nortelCA.pem │ │ │ │ │ ├── pca-cert.pem │ │ │ │ │ ├── timCA.pem │ │ │ │ │ ├── tjhCA.pem │ │ │ │ │ └── vsigntca.pem │ │ │ │ ├── eng1.pem │ │ │ │ ├── eng2.pem │ │ │ │ ├── eng3.pem │ │ │ │ ├── eng4.pem │ │ │ │ ├── eng5.pem │ │ │ │ ├── expired │ │ │ │ │ ├── ICE-CA.pem │ │ │ │ │ ├── ICE-root.pem │ │ │ │ │ ├── ICE-user.pem │ │ │ │ │ ├── ICE.crl │ │ │ │ │ ├── RegTP-4R.pem │ │ │ │ │ ├── factory.pem │ │ │ │ │ ├── rsa-cca.pem │ │ │ │ │ ├── rsa-ssca.pem │ │ │ │ │ ├── vsign2.pem │ │ │ │ │ └── vsign3.pem │ │ │ │ ├── thawteCb.pem │ │ │ │ ├── thawteCp.pem │ │ │ │ ├── vsign1.pem │ │ │ │ ├── vsign3.pem │ │ │ │ ├── vsignss.pem │ │ │ │ └── wellsfgo.pem │ │ │ ├── config │ │ │ ├── crypto │ │ │ │ ├── LPdir_nyi.c │ │ │ │ ├── LPdir_unix.c │ │ │ │ ├── LPdir_vms.c │ │ │ │ ├── LPdir_win.c │ │ │ │ ├── LPdir_win32.c │ │ │ │ ├── LPdir_wince.c │ │ │ │ ├── Makefile │ │ │ │ ├── aes │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_cbc.c │ │ │ │ │ ├── aes_cfb.c │ │ │ │ │ ├── aes_core.c │ │ │ │ │ ├── aes_ctr.c │ │ │ │ │ ├── aes_ecb.c │ │ │ │ │ ├── aes_ige.c │ │ │ │ │ ├── aes_locl.h │ │ │ │ │ ├── aes_misc.c │ │ │ │ │ ├── aes_ofb.c │ │ │ │ │ └── asm │ │ │ │ │ │ ├── aes-586.pl │ │ │ │ │ │ └── aes-ia64.S │ │ │ │ ├── asn1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── a_bitstr.c │ │ │ │ │ ├── a_bool.c │ │ │ │ │ ├── a_bytes.c │ │ │ │ │ ├── a_d2i_fp.c │ │ │ │ │ ├── a_digest.c │ │ │ │ │ ├── a_dup.c │ │ │ │ │ ├── a_enum.c │ │ │ │ │ ├── a_gentm.c │ │ │ │ │ ├── a_hdr.c │ │ │ │ │ ├── a_i2d_fp.c │ │ │ │ │ ├── a_int.c │ │ │ │ │ ├── a_mbstr.c │ │ │ │ │ ├── a_meth.c │ │ │ │ │ ├── a_object.c │ │ │ │ │ ├── a_octet.c │ │ │ │ │ ├── a_print.c │ │ │ │ │ ├── a_set.c │ │ │ │ │ ├── a_sign.c │ │ │ │ │ ├── a_strex.c │ │ │ │ │ ├── a_strnid.c │ │ │ │ │ ├── a_time.c │ │ │ │ │ ├── a_type.c │ │ │ │ │ ├── a_utctm.c │ │ │ │ │ ├── a_utf8.c │ │ │ │ │ ├── a_verify.c │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_err.c │ │ │ │ │ ├── asn1_gen.c │ │ │ │ │ ├── asn1_lib.c │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1_par.c │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── asn_moid.c │ │ │ │ │ ├── asn_pack.c │ │ │ │ │ ├── charmap.h │ │ │ │ │ ├── charmap.pl │ │ │ │ │ ├── d2i_pr.c │ │ │ │ │ ├── d2i_pu.c │ │ │ │ │ ├── evp_asn1.c │ │ │ │ │ ├── f_enum.c │ │ │ │ │ ├── f_int.c │ │ │ │ │ ├── f_string.c │ │ │ │ │ ├── i2d_pr.c │ │ │ │ │ ├── i2d_pu.c │ │ │ │ │ ├── n_pkey.c │ │ │ │ │ ├── nsseq.c │ │ │ │ │ ├── p5_pbe.c │ │ │ │ │ ├── p5_pbev2.c │ │ │ │ │ ├── p8_key.c │ │ │ │ │ ├── p8_pkey.c │ │ │ │ │ ├── t_bitst.c │ │ │ │ │ ├── t_crl.c │ │ │ │ │ ├── t_pkey.c │ │ │ │ │ ├── t_req.c │ │ │ │ │ ├── t_spki.c │ │ │ │ │ ├── t_x509.c │ │ │ │ │ ├── t_x509a.c │ │ │ │ │ ├── tasn_dec.c │ │ │ │ │ ├── tasn_enc.c │ │ │ │ │ ├── tasn_fre.c │ │ │ │ │ ├── tasn_new.c │ │ │ │ │ ├── tasn_prn.c │ │ │ │ │ ├── tasn_typ.c │ │ │ │ │ ├── tasn_utl.c │ │ │ │ │ ├── x_algor.c │ │ │ │ │ ├── x_attrib.c │ │ │ │ │ ├── x_bignum.c │ │ │ │ │ ├── x_crl.c │ │ │ │ │ ├── x_exten.c │ │ │ │ │ ├── x_info.c │ │ │ │ │ ├── x_long.c │ │ │ │ │ ├── x_name.c │ │ │ │ │ ├── x_pkey.c │ │ │ │ │ ├── x_pubkey.c │ │ │ │ │ ├── x_req.c │ │ │ │ │ ├── x_sig.c │ │ │ │ │ ├── x_spki.c │ │ │ │ │ ├── x_val.c │ │ │ │ │ ├── x_x509.c │ │ │ │ │ └── x_x509a.c │ │ │ │ ├── bf │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── VERSION │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── bf-586.pl │ │ │ │ │ │ ├── bf-686.pl │ │ │ │ │ │ └── readme │ │ │ │ │ ├── bf_cbc.c │ │ │ │ │ ├── bf_cfb64.c │ │ │ │ │ ├── bf_ecb.c │ │ │ │ │ ├── bf_enc.c │ │ │ │ │ ├── bf_locl.h │ │ │ │ │ ├── bf_ofb64.c │ │ │ │ │ ├── bf_opts.c │ │ │ │ │ ├── bf_pi.h │ │ │ │ │ ├── bf_skey.c │ │ │ │ │ ├── bfs.cpp │ │ │ │ │ ├── bfspeed.c │ │ │ │ │ ├── bftest.c │ │ │ │ │ └── blowfish.h │ │ │ │ ├── bio │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── b_dump.c │ │ │ │ │ ├── b_print.c │ │ │ │ │ ├── b_sock.c │ │ │ │ │ ├── bf_buff.c │ │ │ │ │ ├── bf_lbuf.c │ │ │ │ │ ├── bf_nbio.c │ │ │ │ │ ├── bf_null.c │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── bio_cb.c │ │ │ │ │ ├── bio_err.c │ │ │ │ │ ├── bio_lcl.h │ │ │ │ │ ├── bio_lib.c │ │ │ │ │ ├── bss_acpt.c │ │ │ │ │ ├── bss_bio.c │ │ │ │ │ ├── bss_conn.c │ │ │ │ │ ├── bss_dgram.c │ │ │ │ │ ├── bss_fd.c │ │ │ │ │ ├── bss_file.c │ │ │ │ │ ├── bss_log.c │ │ │ │ │ ├── bss_mem.c │ │ │ │ │ ├── bss_null.c │ │ │ │ │ ├── bss_rtcp.c │ │ │ │ │ └── bss_sock.c │ │ │ │ ├── bn │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── bn-586.pl │ │ │ │ │ │ ├── co-586.pl │ │ │ │ │ │ ├── ia64.S │ │ │ │ │ │ ├── mips3.s │ │ │ │ │ │ ├── pa-risc2.s │ │ │ │ │ │ ├── pa-risc2W.s │ │ │ │ │ │ ├── ppc.pl │ │ │ │ │ │ ├── sparcv8.S │ │ │ │ │ │ ├── sparcv8plus.S │ │ │ │ │ │ ├── vms.mar │ │ │ │ │ │ ├── x86.pl │ │ │ │ │ │ ├── x86 │ │ │ │ │ │ │ ├── add.pl │ │ │ │ │ │ │ ├── comba.pl │ │ │ │ │ │ │ ├── div.pl │ │ │ │ │ │ │ ├── f │ │ │ │ │ │ │ ├── mul.pl │ │ │ │ │ │ │ ├── mul_add.pl │ │ │ │ │ │ │ ├── sqr.pl │ │ │ │ │ │ │ └── sub.pl │ │ │ │ │ │ └── x86_64-gcc.c │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── bn.mul │ │ │ │ │ ├── bn_add.c │ │ │ │ │ ├── bn_asm.c │ │ │ │ │ ├── bn_blind.c │ │ │ │ │ ├── bn_const.c │ │ │ │ │ ├── bn_ctx.c │ │ │ │ │ ├── bn_depr.c │ │ │ │ │ ├── bn_div.c │ │ │ │ │ ├── bn_err.c │ │ │ │ │ ├── bn_exp.c │ │ │ │ │ ├── bn_exp2.c │ │ │ │ │ ├── bn_gcd.c │ │ │ │ │ ├── bn_gf2m.c │ │ │ │ │ ├── bn_kron.c │ │ │ │ │ ├── bn_lcl.h │ │ │ │ │ ├── bn_lib.c │ │ │ │ │ ├── bn_mod.c │ │ │ │ │ ├── bn_mont.c │ │ │ │ │ ├── bn_mpi.c │ │ │ │ │ ├── bn_mul.c │ │ │ │ │ ├── bn_nist.c │ │ │ │ │ ├── bn_prime.c │ │ │ │ │ ├── bn_prime.h │ │ │ │ │ ├── bn_prime.pl │ │ │ │ │ ├── bn_print.c │ │ │ │ │ ├── bn_rand.c │ │ │ │ │ ├── bn_recp.c │ │ │ │ │ ├── bn_shift.c │ │ │ │ │ ├── bn_sqr.c │ │ │ │ │ ├── bn_sqrt.c │ │ │ │ │ ├── bn_word.c │ │ │ │ │ ├── bnspeed.c │ │ │ │ │ ├── bntest.c │ │ │ │ │ ├── divtest.c │ │ │ │ │ ├── exp.c │ │ │ │ │ ├── expspeed.c │ │ │ │ │ ├── exptest.c │ │ │ │ │ ├── todo │ │ │ │ │ └── vms-helper.c │ │ │ │ ├── buffer │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── buf_err.c │ │ │ │ │ ├── buffer.c │ │ │ │ │ └── buffer.h │ │ │ │ ├── buildinf.h │ │ │ │ ├── camellia │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── camellia.c │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cmll_cbc.c │ │ │ │ │ ├── cmll_cfb.c │ │ │ │ │ ├── cmll_ctr.c │ │ │ │ │ ├── cmll_ecb.c │ │ │ │ │ ├── cmll_locl.h │ │ │ │ │ ├── cmll_misc.c │ │ │ │ │ └── cmll_ofb.c │ │ │ │ ├── cast │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── cast-586.pl │ │ │ │ │ │ └── readme │ │ │ │ │ ├── c_cfb64.c │ │ │ │ │ ├── c_ecb.c │ │ │ │ │ ├── c_enc.c │ │ │ │ │ ├── c_ofb64.c │ │ │ │ │ ├── c_skey.c │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── cast_lcl.h │ │ │ │ │ ├── cast_s.h │ │ │ │ │ ├── cast_spd.c │ │ │ │ │ ├── castopts.c │ │ │ │ │ ├── casts.cpp │ │ │ │ │ └── casttest.c │ │ │ │ ├── comp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c_rle.c │ │ │ │ │ ├── c_zlib.c │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comp_err.c │ │ │ │ │ └── comp_lib.c │ │ │ │ ├── conf │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── cnf_save.c │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.c │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conf_def.c │ │ │ │ │ ├── conf_def.h │ │ │ │ │ ├── conf_err.c │ │ │ │ │ ├── conf_lib.c │ │ │ │ │ ├── conf_mall.c │ │ │ │ │ ├── conf_mod.c │ │ │ │ │ ├── conf_sap.c │ │ │ │ │ ├── keysets.pl │ │ │ │ │ ├── ssleay.cnf │ │ │ │ │ └── test.c │ │ │ │ ├── cpt_err.c │ │ │ │ ├── cryptlib.c │ │ │ │ ├── cryptlib.h │ │ │ │ ├── crypto-lib.com │ │ │ │ ├── crypto.h │ │ │ │ ├── cversion.c │ │ │ │ ├── des │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ ├── DES.pm │ │ │ │ │ ├── DES.xs │ │ │ │ │ ├── FILES0 │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── Imakefile │ │ │ │ │ ├── KERBEROS │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── VERSION │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── crypt586.pl │ │ │ │ │ │ ├── des-586.pl │ │ │ │ │ │ ├── des686.pl │ │ │ │ │ │ ├── des_enc.m4 │ │ │ │ │ │ ├── desboth.pl │ │ │ │ │ │ └── readme │ │ │ │ │ ├── cbc3_enc.c │ │ │ │ │ ├── cbc_cksm.c │ │ │ │ │ ├── cbc_enc.c │ │ │ │ │ ├── cfb64ede.c │ │ │ │ │ ├── cfb64enc.c │ │ │ │ │ ├── cfb_enc.c │ │ │ │ │ ├── des-lib.com │ │ │ │ │ ├── des.c │ │ │ │ │ ├── des.h │ │ │ │ │ ├── des.pod │ │ │ │ │ ├── des3s.cpp │ │ │ │ │ ├── des_enc.c │ │ │ │ │ ├── des_locl.h │ │ │ │ │ ├── des_old.c │ │ │ │ │ ├── des_old.h │ │ │ │ │ ├── des_old2.c │ │ │ │ │ ├── des_opts.c │ │ │ │ │ ├── des_ver.h │ │ │ │ │ ├── dess.cpp │ │ │ │ │ ├── destest.c │ │ │ │ │ ├── ecb3_enc.c │ │ │ │ │ ├── ecb_enc.c │ │ │ │ │ ├── ede_cbcm_enc.c │ │ │ │ │ ├── enc_read.c │ │ │ │ │ ├── enc_writ.c │ │ │ │ │ ├── fcrypt.c │ │ │ │ │ ├── fcrypt_b.c │ │ │ │ │ ├── makefile.bc │ │ │ │ │ ├── ncbc_enc.c │ │ │ │ │ ├── ofb64ede.c │ │ │ │ │ ├── ofb64enc.c │ │ │ │ │ ├── ofb_enc.c │ │ │ │ │ ├── options.txt │ │ │ │ │ ├── pcbc_enc.c │ │ │ │ │ ├── qud_cksm.c │ │ │ │ │ ├── rand_key.c │ │ │ │ │ ├── read2pwd.c │ │ │ │ │ ├── read_pwd.c │ │ │ │ │ ├── rpc_des.h │ │ │ │ │ ├── rpc_enc.c │ │ │ │ │ ├── rpw.c │ │ │ │ │ ├── set_key.c │ │ │ │ │ ├── speed.c │ │ │ │ │ ├── spr.h │ │ │ │ │ ├── str2key.c │ │ │ │ │ ├── t │ │ │ │ │ │ └── test │ │ │ │ │ ├── times │ │ │ │ │ │ ├── 486-50.sol │ │ │ │ │ │ ├── 586-100.lnx │ │ │ │ │ │ ├── 686-200.fre │ │ │ │ │ │ ├── aix.cc │ │ │ │ │ │ ├── alpha.cc │ │ │ │ │ │ ├── hpux.cc │ │ │ │ │ │ ├── sparc.gcc │ │ │ │ │ │ └── usparc.cc │ │ │ │ │ ├── typemap │ │ │ │ │ └── xcbc_enc.c │ │ │ │ ├── dh │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dh1024.pem │ │ │ │ │ ├── dh192.pem │ │ │ │ │ ├── dh2048.pem │ │ │ │ │ ├── dh4096.pem │ │ │ │ │ ├── dh512.pem │ │ │ │ │ ├── dh_asn1.c │ │ │ │ │ ├── dh_check.c │ │ │ │ │ ├── dh_depr.c │ │ │ │ │ ├── dh_err.c │ │ │ │ │ ├── dh_gen.c │ │ │ │ │ ├── dh_key.c │ │ │ │ │ ├── dh_lib.c │ │ │ │ │ ├── dhtest.c │ │ │ │ │ ├── example │ │ │ │ │ ├── generate │ │ │ │ │ ├── p1024.c │ │ │ │ │ ├── p192.c │ │ │ │ │ └── p512.c │ │ │ │ ├── dsa │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsa_asn1.c │ │ │ │ │ ├── dsa_depr.c │ │ │ │ │ ├── dsa_err.c │ │ │ │ │ ├── dsa_gen.c │ │ │ │ │ ├── dsa_key.c │ │ │ │ │ ├── dsa_lib.c │ │ │ │ │ ├── dsa_ossl.c │ │ │ │ │ ├── dsa_sign.c │ │ │ │ │ ├── dsa_vrf.c │ │ │ │ │ ├── dsagen.c │ │ │ │ │ ├── dsatest.c │ │ │ │ │ └── fips186a.txt │ │ │ │ ├── dso │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── dso.h │ │ │ │ │ ├── dso_dl.c │ │ │ │ │ ├── dso_dlfcn.c │ │ │ │ │ ├── dso_err.c │ │ │ │ │ ├── dso_lib.c │ │ │ │ │ ├── dso_null.c │ │ │ │ │ ├── dso_openssl.c │ │ │ │ │ ├── dso_vms.c │ │ │ │ │ └── dso_win32.c │ │ │ │ ├── ebcdic.c │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ec2_mult.c │ │ │ │ │ ├── ec2_smpl.c │ │ │ │ │ ├── ec2_smpt.c │ │ │ │ │ ├── ec_asn1.c │ │ │ │ │ ├── ec_check.c │ │ │ │ │ ├── ec_curve.c │ │ │ │ │ ├── ec_cvt.c │ │ │ │ │ ├── ec_err.c │ │ │ │ │ ├── ec_key.c │ │ │ │ │ ├── ec_lcl.h │ │ │ │ │ ├── ec_lib.c │ │ │ │ │ ├── ec_mult.c │ │ │ │ │ ├── ec_print.c │ │ │ │ │ ├── ecp_mont.c │ │ │ │ │ ├── ecp_nist.c │ │ │ │ │ ├── ecp_smpl.c │ │ │ │ │ └── ectest.c │ │ │ │ ├── ecdh │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdhtest.c │ │ │ │ │ ├── ech_err.c │ │ │ │ │ ├── ech_key.c │ │ │ │ │ ├── ech_lib.c │ │ │ │ │ ├── ech_locl.h │ │ │ │ │ └── ech_ossl.c │ │ │ │ ├── ecdsa │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecdsatest.c │ │ │ │ │ ├── ecs_asn1.c │ │ │ │ │ ├── ecs_err.c │ │ │ │ │ ├── ecs_lib.c │ │ │ │ │ ├── ecs_locl.h │ │ │ │ │ ├── ecs_ossl.c │ │ │ │ │ ├── ecs_sign.c │ │ │ │ │ └── ecs_vrf.c │ │ │ │ ├── engine │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── eng_all.c │ │ │ │ │ ├── eng_cnf.c │ │ │ │ │ ├── eng_cryptodev.c │ │ │ │ │ ├── eng_ctrl.c │ │ │ │ │ ├── eng_dyn.c │ │ │ │ │ ├── eng_err.c │ │ │ │ │ ├── eng_fat.c │ │ │ │ │ ├── eng_init.c │ │ │ │ │ ├── eng_int.h │ │ │ │ │ ├── eng_lib.c │ │ │ │ │ ├── eng_list.c │ │ │ │ │ ├── eng_openssl.c │ │ │ │ │ ├── eng_padlock.c │ │ │ │ │ ├── eng_pkey.c │ │ │ │ │ ├── eng_table.c │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── enginetest.c │ │ │ │ │ ├── tb_cipher.c │ │ │ │ │ ├── tb_dh.c │ │ │ │ │ ├── tb_digest.c │ │ │ │ │ ├── tb_dsa.c │ │ │ │ │ ├── tb_ecdh.c │ │ │ │ │ ├── tb_ecdsa.c │ │ │ │ │ ├── tb_rand.c │ │ │ │ │ ├── tb_rsa.c │ │ │ │ │ └── tb_store.c │ │ │ │ ├── err │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── err.c │ │ │ │ │ ├── err.h │ │ │ │ │ ├── err_all.c │ │ │ │ │ ├── err_prn.c │ │ │ │ │ └── openssl.ec │ │ │ │ ├── evp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bio_b64.c │ │ │ │ │ ├── bio_enc.c │ │ │ │ │ ├── bio_md.c │ │ │ │ │ ├── bio_ok.c │ │ │ │ │ ├── c_all.c │ │ │ │ │ ├── c_allc.c │ │ │ │ │ ├── c_alld.c │ │ │ │ │ ├── digest.c │ │ │ │ │ ├── e_aes.c │ │ │ │ │ ├── e_bf.c │ │ │ │ │ ├── e_camellia.c │ │ │ │ │ ├── e_cast.c │ │ │ │ │ ├── e_des.c │ │ │ │ │ ├── e_des3.c │ │ │ │ │ ├── e_dsa.c │ │ │ │ │ ├── e_idea.c │ │ │ │ │ ├── e_null.c │ │ │ │ │ ├── e_old.c │ │ │ │ │ ├── e_rc2.c │ │ │ │ │ ├── e_rc4.c │ │ │ │ │ ├── e_rc5.c │ │ │ │ │ ├── e_seed.c │ │ │ │ │ ├── e_xcbc_d.c │ │ │ │ │ ├── encode.c │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evp_acnf.c │ │ │ │ │ ├── evp_enc.c │ │ │ │ │ ├── evp_err.c │ │ │ │ │ ├── evp_key.c │ │ │ │ │ ├── evp_lib.c │ │ │ │ │ ├── evp_locl.h │ │ │ │ │ ├── evp_pbe.c │ │ │ │ │ ├── evp_pkey.c │ │ │ │ │ ├── evp_test.c │ │ │ │ │ ├── evptests.txt │ │ │ │ │ ├── m_dss.c │ │ │ │ │ ├── m_dss1.c │ │ │ │ │ ├── m_ecdsa.c │ │ │ │ │ ├── m_md2.c │ │ │ │ │ ├── m_md4.c │ │ │ │ │ ├── m_md5.c │ │ │ │ │ ├── m_mdc2.c │ │ │ │ │ ├── m_null.c │ │ │ │ │ ├── m_ripemd.c │ │ │ │ │ ├── m_sha.c │ │ │ │ │ ├── m_sha1.c │ │ │ │ │ ├── names.c │ │ │ │ │ ├── openbsd_hw.c │ │ │ │ │ ├── p5_crpt.c │ │ │ │ │ ├── p5_crpt2.c │ │ │ │ │ ├── p_dec.c │ │ │ │ │ ├── p_enc.c │ │ │ │ │ ├── p_lib.c │ │ │ │ │ ├── p_open.c │ │ │ │ │ ├── p_seal.c │ │ │ │ │ ├── p_sign.c │ │ │ │ │ └── p_verify.c │ │ │ │ ├── ex_data.c │ │ │ │ ├── hmac │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hmac.c │ │ │ │ │ ├── hmac.h │ │ │ │ │ └── hmactest.c │ │ │ │ ├── ia64cpuid.S │ │ │ │ ├── idea │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── i_cbc.c │ │ │ │ │ ├── i_cfb64.c │ │ │ │ │ ├── i_ecb.c │ │ │ │ │ ├── i_ofb64.c │ │ │ │ │ ├── i_skey.c │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── idea_lcl.h │ │ │ │ │ ├── idea_spd.c │ │ │ │ │ ├── ideatest.c │ │ │ │ │ └── version │ │ │ │ ├── install.com │ │ │ │ ├── krb5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── krb5_asn.c │ │ │ │ │ └── krb5_asn.h │ │ │ │ ├── lhash │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lh_stats.c │ │ │ │ │ ├── lh_test.c │ │ │ │ │ ├── lhash.c │ │ │ │ │ ├── lhash.h │ │ │ │ │ └── num.pl │ │ │ │ ├── md2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── md2.c │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md2_dgst.c │ │ │ │ │ ├── md2_one.c │ │ │ │ │ └── md2test.c │ │ │ │ ├── md32_common.h │ │ │ │ ├── md4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── md4.c │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md4_dgst.c │ │ │ │ │ ├── md4_locl.h │ │ │ │ │ ├── md4_one.c │ │ │ │ │ ├── md4s.cpp │ │ │ │ │ └── md4test.c │ │ │ │ ├── md5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── md5-586.pl │ │ │ │ │ │ ├── md5-sparcv9.S │ │ │ │ │ │ └── md5-x86_64.pl │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── md5_dgst.c │ │ │ │ │ ├── md5_locl.h │ │ │ │ │ ├── md5_one.c │ │ │ │ │ ├── md5s.cpp │ │ │ │ │ └── md5test.c │ │ │ │ ├── mdc2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mdc2.h │ │ │ │ │ ├── mdc2_one.c │ │ │ │ │ ├── mdc2dgst.c │ │ │ │ │ └── mdc2test.c │ │ │ │ ├── mem.c │ │ │ │ ├── mem_clr.c │ │ │ │ ├── mem_dbg.c │ │ │ │ ├── o_dir.c │ │ │ │ ├── o_dir.h │ │ │ │ ├── o_dir_test.c │ │ │ │ ├── o_str.c │ │ │ │ ├── o_str.h │ │ │ │ ├── o_time.c │ │ │ │ ├── o_time.h │ │ │ │ ├── objects │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── o_names.c │ │ │ │ │ ├── obj_dat.c │ │ │ │ │ ├── obj_dat.h │ │ │ │ │ ├── obj_dat.pl │ │ │ │ │ ├── obj_err.c │ │ │ │ │ ├── obj_lib.c │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── obj_mac.num │ │ │ │ │ ├── objects.README │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── objects.pl │ │ │ │ │ └── objects.txt │ │ │ │ ├── ocsp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── ocsp_asn.c │ │ │ │ │ ├── ocsp_cl.c │ │ │ │ │ ├── ocsp_err.c │ │ │ │ │ ├── ocsp_ext.c │ │ │ │ │ ├── ocsp_ht.c │ │ │ │ │ ├── ocsp_lib.c │ │ │ │ │ ├── ocsp_prn.c │ │ │ │ │ ├── ocsp_srv.c │ │ │ │ │ └── ocsp_vfy.c │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslconf.h.in │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── pem │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── message │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pem_all.c │ │ │ │ │ ├── pem_err.c │ │ │ │ │ ├── pem_info.c │ │ │ │ │ ├── pem_lib.c │ │ │ │ │ ├── pem_oth.c │ │ │ │ │ ├── pem_pk8.c │ │ │ │ │ ├── pem_pkey.c │ │ │ │ │ ├── pem_seal.c │ │ │ │ │ ├── pem_sign.c │ │ │ │ │ ├── pem_x509.c │ │ │ │ │ ├── pem_xaux.c │ │ │ │ │ └── pkcs7.lis │ │ │ │ ├── perlasm │ │ │ │ │ ├── cbc.pl │ │ │ │ │ ├── readme │ │ │ │ │ ├── x86_64-xlate.pl │ │ │ │ │ ├── x86asm.pl │ │ │ │ │ ├── x86ms.pl │ │ │ │ │ ├── x86nasm.pl │ │ │ │ │ └── x86unix.pl │ │ │ │ ├── pkcs12 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── p12_add.c │ │ │ │ │ ├── p12_asn.c │ │ │ │ │ ├── p12_attr.c │ │ │ │ │ ├── p12_crpt.c │ │ │ │ │ ├── p12_crt.c │ │ │ │ │ ├── p12_decr.c │ │ │ │ │ ├── p12_init.c │ │ │ │ │ ├── p12_key.c │ │ │ │ │ ├── p12_kiss.c │ │ │ │ │ ├── p12_mutl.c │ │ │ │ │ ├── p12_npas.c │ │ │ │ │ ├── p12_p8d.c │ │ │ │ │ ├── p12_p8e.c │ │ │ │ │ ├── p12_utl.c │ │ │ │ │ ├── pk12err.c │ │ │ │ │ └── pkcs12.h │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bio_ber.c │ │ │ │ │ ├── dec.c │ │ │ │ │ ├── des.pem │ │ │ │ │ ├── doc │ │ │ │ │ ├── enc.c │ │ │ │ │ ├── es1.pem │ │ │ │ │ ├── example.c │ │ │ │ │ ├── example.h │ │ │ │ │ ├── info.pem │ │ │ │ │ ├── infokey.pem │ │ │ │ │ ├── p7 │ │ │ │ │ │ ├── a1 │ │ │ │ │ │ ├── a2 │ │ │ │ │ │ ├── cert.p7c │ │ │ │ │ │ ├── smime.p7m │ │ │ │ │ │ └── smime.p7s │ │ │ │ │ ├── pk7_asn1.c │ │ │ │ │ ├── pk7_attr.c │ │ │ │ │ ├── pk7_dgst.c │ │ │ │ │ ├── pk7_doit.c │ │ │ │ │ ├── pk7_enc.c │ │ │ │ │ ├── pk7_lib.c │ │ │ │ │ ├── pk7_mime.c │ │ │ │ │ ├── pk7_smime.c │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.c │ │ │ │ │ ├── server.pem │ │ │ │ │ ├── sign.c │ │ │ │ │ ├── t │ │ │ │ │ │ ├── 3des.pem │ │ │ │ │ │ ├── 3dess.pem │ │ │ │ │ │ ├── c.pem │ │ │ │ │ │ ├── ff │ │ │ │ │ │ ├── msie-e │ │ │ │ │ │ ├── msie-e.pem │ │ │ │ │ │ ├── msie-enc-01 │ │ │ │ │ │ ├── msie-enc-01.pem │ │ │ │ │ │ ├── msie-enc-02 │ │ │ │ │ │ ├── msie-enc-02.pem │ │ │ │ │ │ ├── msie-s-a-e │ │ │ │ │ │ ├── msie-s-a-e.pem │ │ │ │ │ │ ├── nav-smime │ │ │ │ │ │ ├── s.pem │ │ │ │ │ │ └── server.pem │ │ │ │ │ └── verify.c │ │ │ │ ├── pqueue │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── pq_compat.h │ │ │ │ │ ├── pq_test.c │ │ │ │ │ ├── pqueue.c │ │ │ │ │ └── pqueue.h │ │ │ │ ├── rand │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── md_rand.c │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── rand_egd.c │ │ │ │ │ ├── rand_err.c │ │ │ │ │ ├── rand_lcl.h │ │ │ │ │ ├── rand_lib.c │ │ │ │ │ ├── rand_nw.c │ │ │ │ │ ├── rand_os2.c │ │ │ │ │ ├── rand_unix.c │ │ │ │ │ ├── rand_vms.c │ │ │ │ │ ├── rand_win.c │ │ │ │ │ ├── randfile.c │ │ │ │ │ └── randtest.c │ │ │ │ ├── rc2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc2_cbc.c │ │ │ │ │ ├── rc2_ecb.c │ │ │ │ │ ├── rc2_locl.h │ │ │ │ │ ├── rc2_skey.c │ │ │ │ │ ├── rc2cfb64.c │ │ │ │ │ ├── rc2ofb64.c │ │ │ │ │ ├── rc2speed.c │ │ │ │ │ ├── rc2test.c │ │ │ │ │ ├── rrc2.doc │ │ │ │ │ ├── tab.c │ │ │ │ │ └── version │ │ │ │ ├── rc4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── rc4-586.pl │ │ │ │ │ │ ├── rc4-ia64.S │ │ │ │ │ │ └── rc4-x86_64.pl │ │ │ │ │ ├── rc4.c │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc4_enc.c │ │ │ │ │ ├── rc4_locl.h │ │ │ │ │ ├── rc4_skey.c │ │ │ │ │ ├── rc4s.cpp │ │ │ │ │ ├── rc4speed.c │ │ │ │ │ ├── rc4test.c │ │ │ │ │ └── rrc4.doc │ │ │ │ ├── rc5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm │ │ │ │ │ │ └── rc5-586.pl │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── rc5_ecb.c │ │ │ │ │ ├── rc5_enc.c │ │ │ │ │ ├── rc5_locl.h │ │ │ │ │ ├── rc5_skey.c │ │ │ │ │ ├── rc5cfb64.c │ │ │ │ │ ├── rc5ofb64.c │ │ │ │ │ ├── rc5s.cpp │ │ │ │ │ ├── rc5speed.c │ │ │ │ │ └── rc5test.c │ │ │ │ ├── ripemd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── rips.cpp │ │ │ │ │ │ └── rmd-586.pl │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rmd160.c │ │ │ │ │ ├── rmd_dgst.c │ │ │ │ │ ├── rmd_locl.h │ │ │ │ │ ├── rmd_one.c │ │ │ │ │ ├── rmdconst.h │ │ │ │ │ └── rmdtest.c │ │ │ │ ├── rsa │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsa_asn1.c │ │ │ │ │ ├── rsa_chk.c │ │ │ │ │ ├── rsa_depr.c │ │ │ │ │ ├── rsa_eay.c │ │ │ │ │ ├── rsa_err.c │ │ │ │ │ ├── rsa_gen.c │ │ │ │ │ ├── rsa_lib.c │ │ │ │ │ ├── rsa_none.c │ │ │ │ │ ├── rsa_null.c │ │ │ │ │ ├── rsa_oaep.c │ │ │ │ │ ├── rsa_pk1.c │ │ │ │ │ ├── rsa_pss.c │ │ │ │ │ ├── rsa_saos.c │ │ │ │ │ ├── rsa_sign.c │ │ │ │ │ ├── rsa_ssl.c │ │ │ │ │ ├── rsa_test.c │ │ │ │ │ └── rsa_x931.c │ │ │ │ ├── seed │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── seed.c │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── seed_cbc.c │ │ │ │ │ ├── seed_cfb.c │ │ │ │ │ ├── seed_ecb.c │ │ │ │ │ ├── seed_locl.h │ │ │ │ │ └── seed_ofb.c │ │ │ │ ├── sha │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── sha1-586.pl │ │ │ │ │ │ ├── sha1-ia64.pl │ │ │ │ │ │ ├── sha512-ia64.pl │ │ │ │ │ │ └── sha512-sse2.pl │ │ │ │ │ ├── sha.c │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha1.c │ │ │ │ │ ├── sha1_one.c │ │ │ │ │ ├── sha1dgst.c │ │ │ │ │ ├── sha1s.cpp │ │ │ │ │ ├── sha1test.c │ │ │ │ │ ├── sha256.c │ │ │ │ │ ├── sha256t.c │ │ │ │ │ ├── sha512.c │ │ │ │ │ ├── sha512t.c │ │ │ │ │ ├── sha_dgst.c │ │ │ │ │ ├── sha_locl.h │ │ │ │ │ ├── sha_one.c │ │ │ │ │ └── shatest.c │ │ │ │ ├── sparccpuid.S │ │ │ │ ├── stack │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── stack.c │ │ │ │ │ └── stack.h │ │ │ │ ├── store │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── store.h │ │ │ │ │ ├── str_err.c │ │ │ │ │ ├── str_lib.c │ │ │ │ │ ├── str_locl.h │ │ │ │ │ ├── str_mem.c │ │ │ │ │ └── str_meth.c │ │ │ │ ├── symhacks.h │ │ │ │ ├── threads │ │ │ │ │ ├── README │ │ │ │ │ ├── mttest.c │ │ │ │ │ ├── netware.bat │ │ │ │ │ ├── profile.sh │ │ │ │ │ ├── ptest.bat │ │ │ │ │ ├── pthread.sh │ │ │ │ │ ├── pthread2.sh │ │ │ │ │ ├── pthreads-vms.com │ │ │ │ │ ├── purify.sh │ │ │ │ │ ├── solaris.sh │ │ │ │ │ ├── th-lock.c │ │ │ │ │ └── win32.bat │ │ │ │ ├── tmdiff.c │ │ │ │ ├── tmdiff.h │ │ │ │ ├── txt_db │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── txt_db.c │ │ │ │ │ └── txt_db.h │ │ │ │ ├── ui │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── ui_compat.c │ │ │ │ │ ├── ui_compat.h │ │ │ │ │ ├── ui_err.c │ │ │ │ │ ├── ui_lib.c │ │ │ │ │ ├── ui_locl.h │ │ │ │ │ ├── ui_openssl.c │ │ │ │ │ └── ui_util.c │ │ │ │ ├── uid.c │ │ │ │ ├── x509 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── by_dir.c │ │ │ │ │ ├── by_file.c │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_att.c │ │ │ │ │ ├── x509_cmp.c │ │ │ │ │ ├── x509_d2.c │ │ │ │ │ ├── x509_def.c │ │ │ │ │ ├── x509_err.c │ │ │ │ │ ├── x509_ext.c │ │ │ │ │ ├── x509_lu.c │ │ │ │ │ ├── x509_obj.c │ │ │ │ │ ├── x509_r2x.c │ │ │ │ │ ├── x509_req.c │ │ │ │ │ ├── x509_set.c │ │ │ │ │ ├── x509_trs.c │ │ │ │ │ ├── x509_txt.c │ │ │ │ │ ├── x509_v3.c │ │ │ │ │ ├── x509_vfy.c │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509_vpm.c │ │ │ │ │ ├── x509cset.c │ │ │ │ │ ├── x509name.c │ │ │ │ │ ├── x509rset.c │ │ │ │ │ ├── x509spki.c │ │ │ │ │ ├── x509type.c │ │ │ │ │ └── x_all.c │ │ │ │ ├── x509v3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ext_dat.h │ │ │ │ │ ├── pcy_cache.c │ │ │ │ │ ├── pcy_data.c │ │ │ │ │ ├── pcy_int.h │ │ │ │ │ ├── pcy_lib.c │ │ │ │ │ ├── pcy_map.c │ │ │ │ │ ├── pcy_node.c │ │ │ │ │ ├── pcy_tree.c │ │ │ │ │ ├── tabtest.c │ │ │ │ │ ├── v3_addr.c │ │ │ │ │ ├── v3_akey.c │ │ │ │ │ ├── v3_akeya.c │ │ │ │ │ ├── v3_alt.c │ │ │ │ │ ├── v3_asid.c │ │ │ │ │ ├── v3_bcons.c │ │ │ │ │ ├── v3_bitst.c │ │ │ │ │ ├── v3_conf.c │ │ │ │ │ ├── v3_cpols.c │ │ │ │ │ ├── v3_crld.c │ │ │ │ │ ├── v3_enum.c │ │ │ │ │ ├── v3_extku.c │ │ │ │ │ ├── v3_genn.c │ │ │ │ │ ├── v3_ia5.c │ │ │ │ │ ├── v3_info.c │ │ │ │ │ ├── v3_int.c │ │ │ │ │ ├── v3_lib.c │ │ │ │ │ ├── v3_ncons.c │ │ │ │ │ ├── v3_ocsp.c │ │ │ │ │ ├── v3_pci.c │ │ │ │ │ ├── v3_pcia.c │ │ │ │ │ ├── v3_pcons.c │ │ │ │ │ ├── v3_pku.c │ │ │ │ │ ├── v3_pmaps.c │ │ │ │ │ ├── v3_prn.c │ │ │ │ │ ├── v3_purp.c │ │ │ │ │ ├── v3_skey.c │ │ │ │ │ ├── v3_sxnet.c │ │ │ │ │ ├── v3_utl.c │ │ │ │ │ ├── v3conf.c │ │ │ │ │ ├── v3err.c │ │ │ │ │ ├── v3prin.c │ │ │ │ │ └── x509v3.h │ │ │ │ ├── x86_64cpuid.pl │ │ │ │ └── x86cpuid.pl │ │ │ ├── demos │ │ │ │ ├── README │ │ │ │ ├── asn1 │ │ │ │ │ ├── README.ASN1 │ │ │ │ │ └── ocsp.c │ │ │ │ ├── b64.c │ │ │ │ ├── b64.pl │ │ │ │ ├── bio │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── saccept.c │ │ │ │ │ ├── sconnect.c │ │ │ │ │ └── server.pem │ │ │ │ ├── easy_tls │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── cacerts.pem │ │ │ │ │ ├── cert.pem │ │ │ │ │ ├── easy-tls.c │ │ │ │ │ ├── easy-tls.h │ │ │ │ │ ├── test.c │ │ │ │ │ └── test.h │ │ │ │ ├── eay │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── conn.c │ │ │ │ │ └── loadrsa.c │ │ │ │ ├── engines │ │ │ │ │ ├── cluster_labs │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cluster_labs.h │ │ │ │ │ │ ├── hw_cluster_labs.c │ │ │ │ │ │ ├── hw_cluster_labs.ec │ │ │ │ │ │ ├── hw_cluster_labs_err.c │ │ │ │ │ │ └── hw_cluster_labs_err.h │ │ │ │ │ ├── ibmca │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── hw_ibmca.c │ │ │ │ │ │ ├── hw_ibmca.ec │ │ │ │ │ │ ├── hw_ibmca_err.c │ │ │ │ │ │ ├── hw_ibmca_err.h │ │ │ │ │ │ └── ica_openssl_api.h │ │ │ │ │ ├── rsaref │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── build.com │ │ │ │ │ │ ├── rsaref.c │ │ │ │ │ │ ├── rsaref.ec │ │ │ │ │ │ ├── rsaref_err.c │ │ │ │ │ │ └── rsaref_err.h │ │ │ │ │ └── zencod │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── hw_zencod.c │ │ │ │ │ │ ├── hw_zencod.ec │ │ │ │ │ │ ├── hw_zencod.h │ │ │ │ │ │ ├── hw_zencod_err.c │ │ │ │ │ │ └── hw_zencod_err.h │ │ │ │ ├── maurice │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── cert.pem │ │ │ │ │ ├── example1.c │ │ │ │ │ ├── example2.c │ │ │ │ │ ├── example3.c │ │ │ │ │ ├── example4.c │ │ │ │ │ ├── loadkeys.c │ │ │ │ │ ├── loadkeys.h │ │ │ │ │ └── privkey.pem │ │ │ │ ├── pkcs12 │ │ │ │ │ ├── README │ │ │ │ │ ├── pkread.c │ │ │ │ │ └── pkwrite.c │ │ │ │ ├── prime │ │ │ │ │ ├── Makefile │ │ │ │ │ └── prime.c │ │ │ │ ├── privkey.pem │ │ │ │ ├── selfsign.c │ │ │ │ ├── sign │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cert.pem │ │ │ │ │ ├── key.pem │ │ │ │ │ ├── sig.txt │ │ │ │ │ ├── sign.c │ │ │ │ │ └── sign.txt │ │ │ │ ├── spkigen.c │ │ │ │ ├── ssl │ │ │ │ │ ├── cli.cpp │ │ │ │ │ ├── inetdsrv.cpp │ │ │ │ │ └── serv.cpp │ │ │ │ ├── ssltest-ecc │ │ │ │ │ ├── ECC-RSAcertgen.sh │ │ │ │ │ ├── ECCcertgen.sh │ │ │ │ │ ├── README │ │ │ │ │ ├── RSAcertgen.sh │ │ │ │ │ └── ssltest.sh │ │ │ │ ├── state_machine │ │ │ │ │ ├── Makefile │ │ │ │ │ └── state_machine.c │ │ │ │ ├── tunala │ │ │ │ │ ├── A-client.pem │ │ │ │ │ ├── A-server.pem │ │ │ │ │ ├── CA.pem │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README │ │ │ │ │ ├── autogunk.sh │ │ │ │ │ ├── autoungunk.sh │ │ │ │ │ ├── breakage.c │ │ │ │ │ ├── buffer.c │ │ │ │ │ ├── cb.c │ │ │ │ │ ├── configure.in │ │ │ │ │ ├── ip.c │ │ │ │ │ ├── sm.c │ │ │ │ │ ├── test.sh │ │ │ │ │ ├── tunala.c │ │ │ │ │ └── tunala.h │ │ │ │ └── x509 │ │ │ │ │ ├── README │ │ │ │ │ ├── mkcert.c │ │ │ │ │ └── mkreq.c │ │ │ ├── doc │ │ │ │ ├── HOWTO │ │ │ │ │ ├── certificates.txt │ │ │ │ │ ├── keys.txt │ │ │ │ │ └── proxy_certificates.txt │ │ │ │ ├── README │ │ │ │ ├── apps │ │ │ │ │ ├── CA.pl.pod │ │ │ │ │ ├── asn1parse.pod │ │ │ │ │ ├── ca.pod │ │ │ │ │ ├── ciphers.pod │ │ │ │ │ ├── config.pod │ │ │ │ │ ├── crl.pod │ │ │ │ │ ├── crl2pkcs7.pod │ │ │ │ │ ├── dgst.pod │ │ │ │ │ ├── dhparam.pod │ │ │ │ │ ├── dsa.pod │ │ │ │ │ ├── dsaparam.pod │ │ │ │ │ ├── ec.pod │ │ │ │ │ ├── ecparam.pod │ │ │ │ │ ├── enc.pod │ │ │ │ │ ├── errstr.pod │ │ │ │ │ ├── gendsa.pod │ │ │ │ │ ├── genrsa.pod │ │ │ │ │ ├── nseq.pod │ │ │ │ │ ├── ocsp.pod │ │ │ │ │ ├── openssl.pod │ │ │ │ │ ├── passwd.pod │ │ │ │ │ ├── pkcs12.pod │ │ │ │ │ ├── pkcs7.pod │ │ │ │ │ ├── pkcs8.pod │ │ │ │ │ ├── rand.pod │ │ │ │ │ ├── req.pod │ │ │ │ │ ├── rsa.pod │ │ │ │ │ ├── rsautl.pod │ │ │ │ │ ├── s_client.pod │ │ │ │ │ ├── s_server.pod │ │ │ │ │ ├── s_time.pod │ │ │ │ │ ├── sess_id.pod │ │ │ │ │ ├── smime.pod │ │ │ │ │ ├── speed.pod │ │ │ │ │ ├── spkac.pod │ │ │ │ │ ├── verify.pod │ │ │ │ │ ├── version.pod │ │ │ │ │ ├── x509.pod │ │ │ │ │ └── x509v3_config.pod │ │ │ │ ├── c-indentation.el │ │ │ │ ├── crypto │ │ │ │ │ ├── ASN1_OBJECT_new.pod │ │ │ │ │ ├── ASN1_STRING_length.pod │ │ │ │ │ ├── ASN1_STRING_new.pod │ │ │ │ │ ├── ASN1_STRING_print_ex.pod │ │ │ │ │ ├── ASN1_generate_nconf.pod │ │ │ │ │ ├── BIO_ctrl.pod │ │ │ │ │ ├── BIO_f_base64.pod │ │ │ │ │ ├── BIO_f_buffer.pod │ │ │ │ │ ├── BIO_f_cipher.pod │ │ │ │ │ ├── BIO_f_md.pod │ │ │ │ │ ├── BIO_f_null.pod │ │ │ │ │ ├── BIO_f_ssl.pod │ │ │ │ │ ├── BIO_find_type.pod │ │ │ │ │ ├── BIO_new.pod │ │ │ │ │ ├── BIO_push.pod │ │ │ │ │ ├── BIO_read.pod │ │ │ │ │ ├── BIO_s_accept.pod │ │ │ │ │ ├── BIO_s_bio.pod │ │ │ │ │ ├── BIO_s_connect.pod │ │ │ │ │ ├── BIO_s_fd.pod │ │ │ │ │ ├── BIO_s_file.pod │ │ │ │ │ ├── BIO_s_mem.pod │ │ │ │ │ ├── BIO_s_null.pod │ │ │ │ │ ├── BIO_s_socket.pod │ │ │ │ │ ├── BIO_set_callback.pod │ │ │ │ │ ├── BIO_should_retry.pod │ │ │ │ │ ├── BN_BLINDING_new.pod │ │ │ │ │ ├── BN_CTX_new.pod │ │ │ │ │ ├── BN_CTX_start.pod │ │ │ │ │ ├── BN_add.pod │ │ │ │ │ ├── BN_add_word.pod │ │ │ │ │ ├── BN_bn2bin.pod │ │ │ │ │ ├── BN_cmp.pod │ │ │ │ │ ├── BN_copy.pod │ │ │ │ │ ├── BN_generate_prime.pod │ │ │ │ │ ├── BN_mod_inverse.pod │ │ │ │ │ ├── BN_mod_mul_montgomery.pod │ │ │ │ │ ├── BN_mod_mul_reciprocal.pod │ │ │ │ │ ├── BN_new.pod │ │ │ │ │ ├── BN_num_bytes.pod │ │ │ │ │ ├── BN_rand.pod │ │ │ │ │ ├── BN_set_bit.pod │ │ │ │ │ ├── BN_swap.pod │ │ │ │ │ ├── BN_zero.pod │ │ │ │ │ ├── CONF_modules_free.pod │ │ │ │ │ ├── CONF_modules_load_file.pod │ │ │ │ │ ├── CRYPTO_set_ex_data.pod │ │ │ │ │ ├── DH_generate_key.pod │ │ │ │ │ ├── DH_generate_parameters.pod │ │ │ │ │ ├── DH_get_ex_new_index.pod │ │ │ │ │ ├── DH_new.pod │ │ │ │ │ ├── DH_set_method.pod │ │ │ │ │ ├── DH_size.pod │ │ │ │ │ ├── DSA_SIG_new.pod │ │ │ │ │ ├── DSA_do_sign.pod │ │ │ │ │ ├── DSA_dup_DH.pod │ │ │ │ │ ├── DSA_generate_key.pod │ │ │ │ │ ├── DSA_generate_parameters.pod │ │ │ │ │ ├── DSA_get_ex_new_index.pod │ │ │ │ │ ├── DSA_new.pod │ │ │ │ │ ├── DSA_set_method.pod │ │ │ │ │ ├── DSA_sign.pod │ │ │ │ │ ├── DSA_size.pod │ │ │ │ │ ├── ERR_GET_LIB.pod │ │ │ │ │ ├── ERR_clear_error.pod │ │ │ │ │ ├── ERR_error_string.pod │ │ │ │ │ ├── ERR_get_error.pod │ │ │ │ │ ├── ERR_load_crypto_strings.pod │ │ │ │ │ ├── ERR_load_strings.pod │ │ │ │ │ ├── ERR_print_errors.pod │ │ │ │ │ ├── ERR_put_error.pod │ │ │ │ │ ├── ERR_remove_state.pod │ │ │ │ │ ├── ERR_set_mark.pod │ │ │ │ │ ├── EVP_BytesToKey.pod │ │ │ │ │ ├── EVP_DigestInit.pod │ │ │ │ │ ├── EVP_EncryptInit.pod │ │ │ │ │ ├── EVP_OpenInit.pod │ │ │ │ │ ├── EVP_PKEY_new.pod │ │ │ │ │ ├── EVP_PKEY_set1_RSA.pod │ │ │ │ │ ├── EVP_SealInit.pod │ │ │ │ │ ├── EVP_SignInit.pod │ │ │ │ │ ├── EVP_VerifyInit.pod │ │ │ │ │ ├── OBJ_nid2obj.pod │ │ │ │ │ ├── OPENSSL_Applink.pod │ │ │ │ │ ├── OPENSSL_VERSION_NUMBER.pod │ │ │ │ │ ├── OPENSSL_config.pod │ │ │ │ │ ├── OPENSSL_ia32cap.pod │ │ │ │ │ ├── OPENSSL_load_builtin_modules.pod │ │ │ │ │ ├── OpenSSL_add_all_algorithms.pod │ │ │ │ │ ├── PKCS12_create.pod │ │ │ │ │ ├── PKCS12_parse.pod │ │ │ │ │ ├── PKCS7_decrypt.pod │ │ │ │ │ ├── PKCS7_encrypt.pod │ │ │ │ │ ├── PKCS7_sign.pod │ │ │ │ │ ├── PKCS7_verify.pod │ │ │ │ │ ├── RAND_add.pod │ │ │ │ │ ├── RAND_bytes.pod │ │ │ │ │ ├── RAND_cleanup.pod │ │ │ │ │ ├── RAND_egd.pod │ │ │ │ │ ├── RAND_load_file.pod │ │ │ │ │ ├── RAND_set_rand_method.pod │ │ │ │ │ ├── RSA_blinding_on.pod │ │ │ │ │ ├── RSA_check_key.pod │ │ │ │ │ ├── RSA_generate_key.pod │ │ │ │ │ ├── RSA_get_ex_new_index.pod │ │ │ │ │ ├── RSA_new.pod │ │ │ │ │ ├── RSA_padding_add_PKCS1_type_1.pod │ │ │ │ │ ├── RSA_print.pod │ │ │ │ │ ├── RSA_private_encrypt.pod │ │ │ │ │ ├── RSA_public_encrypt.pod │ │ │ │ │ ├── RSA_set_method.pod │ │ │ │ │ ├── RSA_sign.pod │ │ │ │ │ ├── RSA_sign_ASN1_OCTET_STRING.pod │ │ │ │ │ ├── RSA_size.pod │ │ │ │ │ ├── SMIME_read_PKCS7.pod │ │ │ │ │ ├── SMIME_write_PKCS7.pod │ │ │ │ │ ├── X509_NAME_ENTRY_get_object.pod │ │ │ │ │ ├── X509_NAME_add_entry_by_txt.pod │ │ │ │ │ ├── X509_NAME_get_index_by_NID.pod │ │ │ │ │ ├── X509_NAME_print_ex.pod │ │ │ │ │ ├── X509_new.pod │ │ │ │ │ ├── bio.pod │ │ │ │ │ ├── blowfish.pod │ │ │ │ │ ├── bn.pod │ │ │ │ │ ├── bn_internal.pod │ │ │ │ │ ├── buffer.pod │ │ │ │ │ ├── crypto.pod │ │ │ │ │ ├── d2i_ASN1_OBJECT.pod │ │ │ │ │ ├── d2i_DHparams.pod │ │ │ │ │ ├── d2i_DSAPublicKey.pod │ │ │ │ │ ├── d2i_PKCS8PrivateKey.pod │ │ │ │ │ ├── d2i_RSAPublicKey.pod │ │ │ │ │ ├── d2i_X509.pod │ │ │ │ │ ├── d2i_X509_ALGOR.pod │ │ │ │ │ ├── d2i_X509_CRL.pod │ │ │ │ │ ├── d2i_X509_NAME.pod │ │ │ │ │ ├── d2i_X509_REQ.pod │ │ │ │ │ ├── d2i_X509_SIG.pod │ │ │ │ │ ├── des.pod │ │ │ │ │ ├── des_modes.pod │ │ │ │ │ ├── dh.pod │ │ │ │ │ ├── dsa.pod │ │ │ │ │ ├── ecdsa.pod │ │ │ │ │ ├── engine.pod │ │ │ │ │ ├── err.pod │ │ │ │ │ ├── evp.pod │ │ │ │ │ ├── hmac.pod │ │ │ │ │ ├── lh_stats.pod │ │ │ │ │ ├── lhash.pod │ │ │ │ │ ├── md5.pod │ │ │ │ │ ├── mdc2.pod │ │ │ │ │ ├── pem.pod │ │ │ │ │ ├── rand.pod │ │ │ │ │ ├── rc4.pod │ │ │ │ │ ├── ripemd.pod │ │ │ │ │ ├── rsa.pod │ │ │ │ │ ├── sha.pod │ │ │ │ │ ├── threads.pod │ │ │ │ │ ├── ui.pod │ │ │ │ │ ├── ui_compat.pod │ │ │ │ │ └── x509.pod │ │ │ │ ├── fingerprints.txt │ │ │ │ ├── openssl-shared.txt │ │ │ │ ├── openssl.txt │ │ │ │ ├── openssl_button.gif │ │ │ │ ├── openssl_button.html │ │ │ │ ├── ssl │ │ │ │ │ ├── SSL_CIPHER_get_name.pod │ │ │ │ │ ├── SSL_COMP_add_compression_method.pod │ │ │ │ │ ├── SSL_CTX_add_extra_chain_cert.pod │ │ │ │ │ ├── SSL_CTX_add_session.pod │ │ │ │ │ ├── SSL_CTX_ctrl.pod │ │ │ │ │ ├── SSL_CTX_flush_sessions.pod │ │ │ │ │ ├── SSL_CTX_free.pod │ │ │ │ │ ├── SSL_CTX_get_ex_new_index.pod │ │ │ │ │ ├── SSL_CTX_get_verify_mode.pod │ │ │ │ │ ├── SSL_CTX_load_verify_locations.pod │ │ │ │ │ ├── SSL_CTX_new.pod │ │ │ │ │ ├── SSL_CTX_sess_number.pod │ │ │ │ │ ├── SSL_CTX_sess_set_cache_size.pod │ │ │ │ │ ├── SSL_CTX_sess_set_get_cb.pod │ │ │ │ │ ├── SSL_CTX_sessions.pod │ │ │ │ │ ├── SSL_CTX_set_cert_store.pod │ │ │ │ │ ├── SSL_CTX_set_cert_verify_callback.pod │ │ │ │ │ ├── SSL_CTX_set_cipher_list.pod │ │ │ │ │ ├── SSL_CTX_set_client_CA_list.pod │ │ │ │ │ ├── SSL_CTX_set_client_cert_cb.pod │ │ │ │ │ ├── SSL_CTX_set_default_passwd_cb.pod │ │ │ │ │ ├── SSL_CTX_set_generate_session_id.pod │ │ │ │ │ ├── SSL_CTX_set_info_callback.pod │ │ │ │ │ ├── SSL_CTX_set_max_cert_list.pod │ │ │ │ │ ├── SSL_CTX_set_mode.pod │ │ │ │ │ ├── SSL_CTX_set_msg_callback.pod │ │ │ │ │ ├── SSL_CTX_set_options.pod │ │ │ │ │ ├── SSL_CTX_set_quiet_shutdown.pod │ │ │ │ │ ├── SSL_CTX_set_session_cache_mode.pod │ │ │ │ │ ├── SSL_CTX_set_session_id_context.pod │ │ │ │ │ ├── SSL_CTX_set_ssl_version.pod │ │ │ │ │ ├── SSL_CTX_set_timeout.pod │ │ │ │ │ ├── SSL_CTX_set_tmp_dh_callback.pod │ │ │ │ │ ├── SSL_CTX_set_tmp_rsa_callback.pod │ │ │ │ │ ├── SSL_CTX_set_verify.pod │ │ │ │ │ ├── SSL_CTX_use_certificate.pod │ │ │ │ │ ├── SSL_SESSION_free.pod │ │ │ │ │ ├── SSL_SESSION_get_ex_new_index.pod │ │ │ │ │ ├── SSL_SESSION_get_time.pod │ │ │ │ │ ├── SSL_accept.pod │ │ │ │ │ ├── SSL_alert_type_string.pod │ │ │ │ │ ├── SSL_clear.pod │ │ │ │ │ ├── SSL_connect.pod │ │ │ │ │ ├── SSL_do_handshake.pod │ │ │ │ │ ├── SSL_free.pod │ │ │ │ │ ├── SSL_get_SSL_CTX.pod │ │ │ │ │ ├── SSL_get_ciphers.pod │ │ │ │ │ ├── SSL_get_client_CA_list.pod │ │ │ │ │ ├── SSL_get_current_cipher.pod │ │ │ │ │ ├── SSL_get_default_timeout.pod │ │ │ │ │ ├── SSL_get_error.pod │ │ │ │ │ ├── SSL_get_ex_data_X509_STORE_CTX_idx.pod │ │ │ │ │ ├── SSL_get_ex_new_index.pod │ │ │ │ │ ├── SSL_get_fd.pod │ │ │ │ │ ├── SSL_get_peer_cert_chain.pod │ │ │ │ │ ├── SSL_get_peer_certificate.pod │ │ │ │ │ ├── SSL_get_rbio.pod │ │ │ │ │ ├── SSL_get_session.pod │ │ │ │ │ ├── SSL_get_verify_result.pod │ │ │ │ │ ├── SSL_get_version.pod │ │ │ │ │ ├── SSL_library_init.pod │ │ │ │ │ ├── SSL_load_client_CA_file.pod │ │ │ │ │ ├── SSL_new.pod │ │ │ │ │ ├── SSL_pending.pod │ │ │ │ │ ├── SSL_read.pod │ │ │ │ │ ├── SSL_rstate_string.pod │ │ │ │ │ ├── SSL_session_reused.pod │ │ │ │ │ ├── SSL_set_bio.pod │ │ │ │ │ ├── SSL_set_connect_state.pod │ │ │ │ │ ├── SSL_set_fd.pod │ │ │ │ │ ├── SSL_set_session.pod │ │ │ │ │ ├── SSL_set_shutdown.pod │ │ │ │ │ ├── SSL_set_verify_result.pod │ │ │ │ │ ├── SSL_shutdown.pod │ │ │ │ │ ├── SSL_state_string.pod │ │ │ │ │ ├── SSL_want.pod │ │ │ │ │ ├── SSL_write.pod │ │ │ │ │ ├── d2i_SSL_SESSION.pod │ │ │ │ │ └── ssl.pod │ │ │ │ ├── ssleay.txt │ │ │ │ └── standards.txt │ │ │ ├── e_os.h │ │ │ ├── e_os2.h │ │ │ ├── engines │ │ │ │ ├── Makefile │ │ │ │ ├── axp.opt │ │ │ │ ├── e_4758cca.c │ │ │ │ ├── e_4758cca.ec │ │ │ │ ├── e_4758cca_err.c │ │ │ │ ├── e_4758cca_err.h │ │ │ │ ├── e_aep.c │ │ │ │ ├── e_aep.ec │ │ │ │ ├── e_aep_err.c │ │ │ │ ├── e_aep_err.h │ │ │ │ ├── e_atalla.c │ │ │ │ ├── e_atalla.ec │ │ │ │ ├── e_atalla_err.c │ │ │ │ ├── e_atalla_err.h │ │ │ │ ├── e_chil.c │ │ │ │ ├── e_chil.ec │ │ │ │ ├── e_chil_err.c │ │ │ │ ├── e_chil_err.h │ │ │ │ ├── e_cswift.c │ │ │ │ ├── e_cswift.ec │ │ │ │ ├── e_cswift_err.c │ │ │ │ ├── e_cswift_err.h │ │ │ │ ├── e_gmp.c │ │ │ │ ├── e_gmp.ec │ │ │ │ ├── e_gmp_err.c │ │ │ │ ├── e_gmp_err.h │ │ │ │ ├── e_nuron.c │ │ │ │ ├── e_nuron.ec │ │ │ │ ├── e_nuron_err.c │ │ │ │ ├── e_nuron_err.h │ │ │ │ ├── e_sureware.c │ │ │ │ ├── e_sureware.ec │ │ │ │ ├── e_sureware_err.c │ │ │ │ ├── e_sureware_err.h │ │ │ │ ├── e_ubsec.c │ │ │ │ ├── e_ubsec.ec │ │ │ │ ├── e_ubsec_err.c │ │ │ │ ├── e_ubsec_err.h │ │ │ │ ├── engine_vector.mar │ │ │ │ ├── makeengines.com │ │ │ │ ├── vax.opt │ │ │ │ └── vendor_defns │ │ │ │ │ ├── aep.h │ │ │ │ │ ├── atalla.h │ │ │ │ │ ├── cswift.h │ │ │ │ │ ├── hw_4758_cca.h │ │ │ │ │ ├── hw_ubsec.h │ │ │ │ │ ├── hwcryptohook.h │ │ │ │ │ └── sureware.h │ │ │ ├── inc32 │ │ │ │ └── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── applink.c │ │ │ │ │ ├── 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 │ │ │ ├── include │ │ │ │ └── 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 │ │ │ ├── install.com │ │ │ ├── makevms.com │ │ │ ├── ms │ │ │ │ ├── .rnd │ │ │ │ ├── 32all.bat │ │ │ │ ├── README │ │ │ │ ├── applink.c │ │ │ │ ├── bcb4.bat │ │ │ │ ├── certCA.srl │ │ │ │ ├── certCA.ss │ │ │ │ ├── certU.ss │ │ │ │ ├── cmp.pl │ │ │ │ ├── do_masm.bat │ │ │ │ ├── do_ms.bat │ │ │ │ ├── do_nasm.bat │ │ │ │ ├── do_nt.bat │ │ │ │ ├── do_win64a.bat │ │ │ │ ├── do_win64i.bat │ │ │ │ ├── keyCA.ss │ │ │ │ ├── keyU.ss │ │ │ │ ├── mingw32.bat │ │ │ │ ├── mw.bat │ │ │ │ ├── req2CA.ss │ │ │ │ ├── reqCA.ss │ │ │ │ ├── reqU.ss │ │ │ │ ├── speed32.bat │ │ │ │ ├── tenc.bat │ │ │ │ ├── tencce.bat │ │ │ │ ├── test.bat │ │ │ │ ├── testce.bat │ │ │ │ ├── testce2.bat │ │ │ │ ├── testenc.bat │ │ │ │ ├── testencce.bat │ │ │ │ ├── testpem.bat │ │ │ │ ├── testpemce.bat │ │ │ │ ├── testss.bat │ │ │ │ ├── testssce.bat │ │ │ │ ├── tlhelp32.h │ │ │ │ ├── tpem.bat │ │ │ │ ├── tpemce.bat │ │ │ │ ├── uplink.c │ │ │ │ ├── uplink.h │ │ │ │ ├── uplink.pl │ │ │ │ └── x86asm.bat │ │ │ ├── openssl.doxy │ │ │ ├── openssl.spec │ │ │ ├── os2 │ │ │ │ ├── OS2-EMX.cmd │ │ │ │ └── backwardify.pl │ │ │ ├── shlib │ │ │ │ ├── Makefile.hpux10-cc │ │ │ │ ├── README │ │ │ │ ├── hpux10-cc.sh │ │ │ │ ├── irix.sh │ │ │ │ ├── sco5-shared-gcc.sh │ │ │ │ ├── sco5-shared-installed │ │ │ │ ├── sco5-shared.sh │ │ │ │ ├── solaris-sc4.sh │ │ │ │ ├── solaris.sh │ │ │ │ ├── sun.sh │ │ │ │ ├── svr5-shared-gcc.sh │ │ │ │ ├── svr5-shared-installed │ │ │ │ ├── svr5-shared.sh │ │ │ │ ├── win32.bat │ │ │ │ └── win32dll.bat │ │ │ ├── ssl │ │ │ │ ├── Makefile │ │ │ │ ├── bio_ssl.c │ │ │ │ ├── d1_both.c │ │ │ │ ├── d1_clnt.c │ │ │ │ ├── d1_enc.c │ │ │ │ ├── d1_lib.c │ │ │ │ ├── d1_meth.c │ │ │ │ ├── d1_pkt.c │ │ │ │ ├── d1_srvr.c │ │ │ │ ├── dtls1.h │ │ │ │ ├── install.com │ │ │ │ ├── kssl.c │ │ │ │ ├── kssl.h │ │ │ │ ├── kssl_lcl.h │ │ │ │ ├── s23_clnt.c │ │ │ │ ├── s23_lib.c │ │ │ │ ├── s23_meth.c │ │ │ │ ├── s23_pkt.c │ │ │ │ ├── s23_srvr.c │ │ │ │ ├── s2_clnt.c │ │ │ │ ├── s2_enc.c │ │ │ │ ├── s2_lib.c │ │ │ │ ├── s2_meth.c │ │ │ │ ├── s2_pkt.c │ │ │ │ ├── s2_srvr.c │ │ │ │ ├── s3_both.c │ │ │ │ ├── s3_clnt.c │ │ │ │ ├── s3_enc.c │ │ │ │ ├── s3_lib.c │ │ │ │ ├── s3_meth.c │ │ │ │ ├── s3_pkt.c │ │ │ │ ├── s3_srvr.c │ │ │ │ ├── ssl-lib.com │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl23.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── ssl_algs.c │ │ │ │ ├── ssl_asn1.c │ │ │ │ ├── ssl_cert.c │ │ │ │ ├── ssl_ciph.c │ │ │ │ ├── ssl_err.c │ │ │ │ ├── ssl_err2.c │ │ │ │ ├── ssl_lib.c │ │ │ │ ├── ssl_locl.h │ │ │ │ ├── ssl_rsa.c │ │ │ │ ├── ssl_sess.c │ │ │ │ ├── ssl_stat.c │ │ │ │ ├── ssl_task.c │ │ │ │ ├── ssl_txt.c │ │ │ │ ├── ssltest.c │ │ │ │ ├── t1_clnt.c │ │ │ │ ├── t1_enc.c │ │ │ │ ├── t1_lib.c │ │ │ │ ├── t1_meth.c │ │ │ │ ├── t1_srvr.c │ │ │ │ └── tls1.h │ │ │ ├── test │ │ │ │ ├── CAss.cnf │ │ │ │ ├── CAssdh.cnf │ │ │ │ ├── CAssdsa.cnf │ │ │ │ ├── CAssrsa.cnf │ │ │ │ ├── Makefile │ │ │ │ ├── P1ss.cnf │ │ │ │ ├── P2ss.cnf │ │ │ │ ├── Sssdsa.cnf │ │ │ │ ├── Sssrsa.cnf │ │ │ │ ├── Uss.cnf │ │ │ │ ├── VMSca-response.1 │ │ │ │ ├── VMSca-response.2 │ │ │ │ ├── bctest │ │ │ │ ├── bftest.c │ │ │ │ ├── bntest.c │ │ │ │ ├── casttest.c │ │ │ │ ├── destest.c │ │ │ │ ├── dhtest.c │ │ │ │ ├── dsatest.c │ │ │ │ ├── dummytest.c │ │ │ │ ├── ecdhtest.c │ │ │ │ ├── ecdsatest.c │ │ │ │ ├── ectest.c │ │ │ │ ├── enginetest.c │ │ │ │ ├── evp_test.c │ │ │ │ ├── evptests.txt │ │ │ │ ├── exptest.c │ │ │ │ ├── hmactest.c │ │ │ │ ├── ideatest.c │ │ │ │ ├── igetest.c │ │ │ │ ├── maketests.com │ │ │ │ ├── md2test.c │ │ │ │ ├── md4test.c │ │ │ │ ├── md5test.c │ │ │ │ ├── mdc2test.c │ │ │ │ ├── methtest.c │ │ │ │ ├── pkcs7-1.pem │ │ │ │ ├── pkcs7.pem │ │ │ │ ├── r160test.c │ │ │ │ ├── randtest.c │ │ │ │ ├── rc2test.c │ │ │ │ ├── rc4test.c │ │ │ │ ├── rc5test.c │ │ │ │ ├── rmdtest.c │ │ │ │ ├── rsa_test.c │ │ │ │ ├── sha1test.c │ │ │ │ ├── sha256t.c │ │ │ │ ├── sha512t.c │ │ │ │ ├── shatest.c │ │ │ │ ├── ssltest.c │ │ │ │ ├── tcrl │ │ │ │ ├── tcrl.com │ │ │ │ ├── test.cnf │ │ │ │ ├── testca │ │ │ │ ├── testca.com │ │ │ │ ├── testcrl.pem │ │ │ │ ├── testenc │ │ │ │ ├── testenc.com │ │ │ │ ├── testgen │ │ │ │ ├── testgen.com │ │ │ │ ├── testp7.pem │ │ │ │ ├── testreq2.pem │ │ │ │ ├── testrsa.pem │ │ │ │ ├── tests.com │ │ │ │ ├── testsid.pem │ │ │ │ ├── testss │ │ │ │ ├── testss.com │ │ │ │ ├── testssl │ │ │ │ ├── testssl.com │ │ │ │ ├── testsslproxy │ │ │ │ ├── testx509.pem │ │ │ │ ├── times │ │ │ │ ├── tpkcs7 │ │ │ │ ├── tpkcs7.com │ │ │ │ ├── tpkcs7d │ │ │ │ ├── tpkcs7d.com │ │ │ │ ├── treq │ │ │ │ ├── treq.com │ │ │ │ ├── trsa │ │ │ │ ├── trsa.com │ │ │ │ ├── tsid │ │ │ │ ├── tsid.com │ │ │ │ ├── tverify.com │ │ │ │ ├── tx509 │ │ │ │ ├── tx509.com │ │ │ │ ├── v3-cert1.pem │ │ │ │ └── v3-cert2.pem │ │ │ ├── times │ │ │ │ ├── 090 │ │ │ │ │ └── 586-100.nt │ │ │ │ ├── 091 │ │ │ │ │ ├── 486-50.nt │ │ │ │ │ ├── 586-100.lnx │ │ │ │ │ ├── 68000.bsd │ │ │ │ │ ├── 686-200.lnx │ │ │ │ │ ├── alpha064.osf │ │ │ │ │ ├── alpha164.lnx │ │ │ │ │ ├── alpha164.osf │ │ │ │ │ ├── mips-rel.pl │ │ │ │ │ ├── r10000.irx │ │ │ │ │ ├── r3000.ult │ │ │ │ │ └── r4400.irx │ │ │ │ ├── 100.lnx │ │ │ │ ├── 100.nt │ │ │ │ ├── 200.lnx │ │ │ │ ├── 486-66.dos │ │ │ │ ├── 486-66.nt │ │ │ │ ├── 486-66.w31 │ │ │ │ ├── 5.lnx │ │ │ │ ├── 586-085i.nt │ │ │ │ ├── 586-100.LN3 │ │ │ │ ├── 586-100.NT2 │ │ │ │ ├── 586-100.dos │ │ │ │ ├── 586-100.ln4 │ │ │ │ ├── 586-100.lnx │ │ │ │ ├── 586-100.nt │ │ │ │ ├── 586-100.ntx │ │ │ │ ├── 586-100.w31 │ │ │ │ ├── 586-1002.lnx │ │ │ │ ├── 586p-100.lnx │ │ │ │ ├── 686-200.bsd │ │ │ │ ├── 686-200.lnx │ │ │ │ ├── 686-200.nt │ │ │ │ ├── L1 │ │ │ │ ├── R10000.t │ │ │ │ ├── R4400.t │ │ │ │ ├── aix.t │ │ │ │ ├── aixold.t │ │ │ │ ├── alpha.t │ │ │ │ ├── alpha400.t │ │ │ │ ├── cyrix100.lnx │ │ │ │ ├── dgux-x86.t │ │ │ │ ├── dgux.t │ │ │ │ ├── hpux-acc.t │ │ │ │ ├── hpux-kr.t │ │ │ │ ├── hpux.t │ │ │ │ ├── p2.w95 │ │ │ │ ├── pent2.t │ │ │ │ ├── readme │ │ │ │ ├── s586-100.lnx │ │ │ │ ├── s586-100.nt │ │ │ │ ├── sgi.t │ │ │ │ ├── sparc.t │ │ │ │ ├── sparc2 │ │ │ │ ├── sparcLX.t │ │ │ │ ├── usparc.t │ │ │ │ └── x86 │ │ │ │ │ ├── bfs.cpp │ │ │ │ │ ├── casts.cpp │ │ │ │ │ ├── des3s.cpp │ │ │ │ │ ├── dess.cpp │ │ │ │ │ ├── md4s.cpp │ │ │ │ │ ├── md5s.cpp │ │ │ │ │ ├── rc4s.cpp │ │ │ │ │ └── sha1s.cpp │ │ │ ├── tools │ │ │ │ ├── Makefile │ │ │ │ ├── c89.sh │ │ │ │ ├── c_hash │ │ │ │ ├── c_info │ │ │ │ ├── c_issuer │ │ │ │ ├── c_name │ │ │ │ ├── c_rehash │ │ │ │ └── c_rehash.in │ │ │ ├── util │ │ │ │ ├── FreeBSD.sh │ │ │ │ ├── add_cr.pl │ │ │ │ ├── bat.sh │ │ │ │ ├── ck_errf.pl │ │ │ │ ├── clean-depend.pl │ │ │ │ ├── copy.pl │ │ │ │ ├── cygwin.sh │ │ │ │ ├── deleof.pl │ │ │ │ ├── dirname.pl │ │ │ │ ├── do_ms.sh │ │ │ │ ├── domd │ │ │ │ ├── err-ins.pl │ │ │ │ ├── extract-names.pl │ │ │ │ ├── extract-section.pl │ │ │ │ ├── files.pl │ │ │ │ ├── fixNT.sh │ │ │ │ ├── install.sh │ │ │ │ ├── libeay.num │ │ │ │ ├── mk1mf.pl │ │ │ │ ├── mkcerts.sh │ │ │ │ ├── mkdef.pl │ │ │ │ ├── mkdir-p.pl │ │ │ │ ├── mkerr.pl │ │ │ │ ├── mkfiles.pl │ │ │ │ ├── mklink.pl │ │ │ │ ├── mkstack.pl │ │ │ │ ├── opensslwrap.sh │ │ │ │ ├── perlpath.pl │ │ │ │ ├── pl │ │ │ │ │ ├── BC-32.pl │ │ │ │ │ ├── Mingw32.pl │ │ │ │ │ ├── OS2-EMX.pl │ │ │ │ │ ├── VC-32.pl │ │ │ │ │ ├── linux.pl │ │ │ │ │ ├── netware.pl │ │ │ │ │ ├── ultrix.pl │ │ │ │ │ └── unix.pl │ │ │ │ ├── pod2man.pl │ │ │ │ ├── pod2mantest │ │ │ │ ├── pod2mantest.pod │ │ │ │ ├── point.sh │ │ │ │ ├── selftest.pl │ │ │ │ ├── shlib_wrap.sh │ │ │ │ ├── sp-diff.pl │ │ │ │ ├── speed.sh │ │ │ │ ├── src-dep.pl │ │ │ │ ├── ssleay.num │ │ │ │ ├── tab_num.pl │ │ │ │ └── x86asm.sh │ │ │ └── vcbuild │ │ │ │ ├── include │ │ │ │ └── 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 │ │ │ │ ├── libeay32 │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── libeay32.vcproj │ │ │ │ ├── libeay32.vcxproj │ │ │ │ └── libeay32.vcxproj.filters │ │ │ │ ├── openssl.sln │ │ │ │ └── ssleay32 │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── ssleay32.vcproj │ │ │ │ ├── ssleay32.vcxproj │ │ │ │ └── ssleay32.vcxproj.filters │ │ ├── protobuf-2.6.1 │ │ │ ├── CHANGES.txt │ │ │ ├── CONTRIBUTORS.txt │ │ │ ├── INSTALL.txt │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── autogen.sh │ │ │ ├── benchmarks │ │ │ │ ├── ProtoBench.java │ │ │ │ ├── city.proto │ │ │ │ ├── google_message1.dat │ │ │ │ ├── google_message2.dat │ │ │ │ ├── google_speed.proto │ │ │ │ └── readme.txt │ │ │ ├── configure.ac │ │ │ ├── editors │ │ │ │ ├── README.txt │ │ │ │ ├── proto.vim │ │ │ │ └── protobuf-mode.el │ │ │ ├── examples │ │ │ │ ├── AddPerson.java │ │ │ │ ├── ListPeople.java │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── add_person.cc │ │ │ │ ├── add_person.py │ │ │ │ ├── addressbook.proto │ │ │ │ ├── list_people.cc │ │ │ │ └── list_people.py │ │ │ ├── generate │ │ │ │ ├── Project1 │ │ │ │ │ ├── Project1.v12.suo │ │ │ │ │ ├── Project1.vcxproj │ │ │ │ │ ├── Project1.vcxproj.filters │ │ │ │ │ ├── city.pb.cc │ │ │ │ │ ├── city.pb.h │ │ │ │ │ ├── include │ │ │ │ │ │ └── google │ │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ │ ├── code_generator.h │ │ │ │ │ │ │ ├── command_line_interface.h │ │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ │ └── cpp_generator.h │ │ │ │ │ │ │ ├── importer.h │ │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ │ └── java_generator.h │ │ │ │ │ │ │ ├── parser.h │ │ │ │ │ │ │ ├── plugin.h │ │ │ │ │ │ │ └── python │ │ │ │ │ │ │ │ └── python_generator.h │ │ │ │ │ │ │ ├── descriptor.h │ │ │ │ │ │ │ ├── descriptor.pb.h │ │ │ │ │ │ │ ├── descriptor_database.h │ │ │ │ │ │ │ ├── dynamic_message.h │ │ │ │ │ │ │ ├── extension_set.h │ │ │ │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ │ │ │ ├── generated_message_reflection.h │ │ │ │ │ │ │ ├── generated_message_util.h │ │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ ├── coded_stream.h │ │ │ │ │ │ │ ├── gzip_stream.h │ │ │ │ │ │ │ ├── printer.h │ │ │ │ │ │ │ ├── strtod.h │ │ │ │ │ │ │ ├── tokenizer.h │ │ │ │ │ │ │ ├── zero_copy_stream.h │ │ │ │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ │ │ │ └── zero_copy_stream_impl_lite.h │ │ │ │ │ │ │ ├── message.h │ │ │ │ │ │ │ ├── message_lite.h │ │ │ │ │ │ │ ├── reflection_ops.h │ │ │ │ │ │ │ ├── repeated_field.h │ │ │ │ │ │ │ ├── service.h │ │ │ │ │ │ │ ├── stubs │ │ │ │ │ │ │ ├── atomicops.h │ │ │ │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ │ ├── once.h │ │ │ │ │ │ │ ├── platform_macros.h │ │ │ │ │ │ │ ├── template_util.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ │ │ ├── text_format.h │ │ │ │ │ │ │ ├── unknown_field_set.h │ │ │ │ │ │ │ ├── wire_format.h │ │ │ │ │ │ │ ├── wire_format_lite.h │ │ │ │ │ │ │ └── wire_format_lite_inl.h │ │ │ │ │ └── main.cpp │ │ │ │ ├── city.proto │ │ │ │ └── 新建文本文档.txt │ │ │ ├── generate_descriptor_proto.sh │ │ │ ├── java │ │ │ │ ├── README.txt │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── google │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── AbstractMessage.java │ │ │ │ │ │ ├── AbstractMessageLite.java │ │ │ │ │ │ ├── AbstractParser.java │ │ │ │ │ │ ├── BlockingRpcChannel.java │ │ │ │ │ │ ├── BlockingService.java │ │ │ │ │ │ ├── BoundedByteString.java │ │ │ │ │ │ ├── ByteString.java │ │ │ │ │ │ ├── CodedInputStream.java │ │ │ │ │ │ ├── CodedOutputStream.java │ │ │ │ │ │ ├── Descriptors.java │ │ │ │ │ │ ├── DynamicMessage.java │ │ │ │ │ │ ├── Extension.java │ │ │ │ │ │ ├── ExtensionRegistry.java │ │ │ │ │ │ ├── ExtensionRegistryLite.java │ │ │ │ │ │ ├── FieldSet.java │ │ │ │ │ │ ├── GeneratedMessage.java │ │ │ │ │ │ ├── GeneratedMessageLite.java │ │ │ │ │ │ ├── Internal.java │ │ │ │ │ │ ├── InvalidProtocolBufferException.java │ │ │ │ │ │ ├── LazyField.java │ │ │ │ │ │ ├── LazyFieldLite.java │ │ │ │ │ │ ├── LazyStringArrayList.java │ │ │ │ │ │ ├── LazyStringList.java │ │ │ │ │ │ ├── LiteralByteString.java │ │ │ │ │ │ ├── Message.java │ │ │ │ │ │ ├── MessageLite.java │ │ │ │ │ │ ├── MessageLiteOrBuilder.java │ │ │ │ │ │ ├── MessageOrBuilder.java │ │ │ │ │ │ ├── MessageReflection.java │ │ │ │ │ │ ├── Parser.java │ │ │ │ │ │ ├── ProtocolMessageEnum.java │ │ │ │ │ │ ├── ProtocolStringList.java │ │ │ │ │ │ ├── RepeatedFieldBuilder.java │ │ │ │ │ │ ├── RopeByteString.java │ │ │ │ │ │ ├── RpcCallback.java │ │ │ │ │ │ ├── RpcChannel.java │ │ │ │ │ │ ├── RpcController.java │ │ │ │ │ │ ├── RpcUtil.java │ │ │ │ │ │ ├── Service.java │ │ │ │ │ │ ├── ServiceException.java │ │ │ │ │ │ ├── SingleFieldBuilder.java │ │ │ │ │ │ ├── SmallSortedMap.java │ │ │ │ │ │ ├── TextFormat.java │ │ │ │ │ │ ├── UninitializedMessageException.java │ │ │ │ │ │ ├── UnknownFieldSet.java │ │ │ │ │ │ ├── UnmodifiableLazyStringList.java │ │ │ │ │ │ ├── Utf8.java │ │ │ │ │ │ └── WireFormat.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── AbstractMessageTest.java │ │ │ │ │ ├── BoundedByteStringTest.java │ │ │ │ │ ├── ByteStringTest.java │ │ │ │ │ ├── CheckUtf8Test.java │ │ │ │ │ ├── CodedInputStreamTest.java │ │ │ │ │ ├── CodedOutputStreamTest.java │ │ │ │ │ ├── DeprecatedFieldTest.java │ │ │ │ │ ├── DescriptorsTest.java │ │ │ │ │ ├── DynamicMessageTest.java │ │ │ │ │ ├── ForceFieldBuildersPreRun.java │ │ │ │ │ ├── GeneratedMessageTest.java │ │ │ │ │ ├── IsValidUtf8Test.java │ │ │ │ │ ├── IsValidUtf8TestUtil.java │ │ │ │ │ ├── LazyFieldLiteTest.java │ │ │ │ │ ├── LazyFieldTest.java │ │ │ │ │ ├── LazyMessageLiteTest.java │ │ │ │ │ ├── LazyStringArrayListTest.java │ │ │ │ │ ├── LazyStringEndToEndTest.java │ │ │ │ │ ├── LiteEqualsAndHashTest.java │ │ │ │ │ ├── LiteTest.java │ │ │ │ │ ├── LiteralByteStringTest.java │ │ │ │ │ ├── MessageTest.java │ │ │ │ │ ├── NestedBuildersTest.java │ │ │ │ │ ├── ParserTest.java │ │ │ │ │ ├── RepeatedFieldBuilderTest.java │ │ │ │ │ ├── RopeByteStringSubstringTest.java │ │ │ │ │ ├── RopeByteStringTest.java │ │ │ │ │ ├── ServiceTest.java │ │ │ │ │ ├── SingleFieldBuilderTest.java │ │ │ │ │ ├── SmallSortedMapTest.java │ │ │ │ │ ├── TestBadIdentifiers.java │ │ │ │ │ ├── TestUtil.java │ │ │ │ │ ├── TextFormatTest.java │ │ │ │ │ ├── UnknownFieldSetTest.java │ │ │ │ │ ├── UnmodifiableLazyStringListTest.java │ │ │ │ │ ├── WireFormatTest.java │ │ │ │ │ ├── lazy_fields_lite.proto │ │ │ │ │ ├── lite_equals_and_hash.proto │ │ │ │ │ ├── multiple_files_test.proto │ │ │ │ │ ├── nested_builders_test.proto │ │ │ │ │ ├── nested_extension.proto │ │ │ │ │ ├── nested_extension_lite.proto │ │ │ │ │ ├── non_nested_extension.proto │ │ │ │ │ ├── non_nested_extension_lite.proto │ │ │ │ │ ├── outer_class_name_test.proto │ │ │ │ │ ├── outer_class_name_test2.proto │ │ │ │ │ ├── outer_class_name_test3.proto │ │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ │ ├── test_check_utf8.proto │ │ │ │ │ ├── test_check_utf8_size.proto │ │ │ │ │ ├── test_custom_options.proto │ │ │ │ │ └── test_extra_interfaces.proto │ │ │ ├── m4 │ │ │ │ ├── ac_system_extensions.m4 │ │ │ │ ├── acx_check_suncc.m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ └── stl_hash.m4 │ │ │ ├── more_tests │ │ │ │ └── Makefile │ │ │ ├── post_process_dist.sh │ │ │ ├── protobuf-lite.pc.in │ │ │ ├── protobuf.pc.in │ │ │ ├── python │ │ │ │ ├── README.txt │ │ │ │ ├── ez_setup.py │ │ │ │ ├── google │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── descriptor.py │ │ │ │ │ │ ├── descriptor_database.py │ │ │ │ │ │ ├── descriptor_pool.py │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── api_implementation.cc │ │ │ │ │ │ ├── api_implementation.py │ │ │ │ │ │ ├── api_implementation_default_test.py │ │ │ │ │ │ ├── containers.py │ │ │ │ │ │ ├── cpp_message.py │ │ │ │ │ │ ├── decoder.py │ │ │ │ │ │ ├── descriptor_database_test.py │ │ │ │ │ │ ├── descriptor_pool_test.py │ │ │ │ │ │ ├── descriptor_pool_test1.proto │ │ │ │ │ │ ├── descriptor_pool_test2.proto │ │ │ │ │ │ ├── descriptor_python_test.py │ │ │ │ │ │ ├── descriptor_test.py │ │ │ │ │ │ ├── encoder.py │ │ │ │ │ │ ├── enum_type_wrapper.py │ │ │ │ │ │ ├── factory_test1.proto │ │ │ │ │ │ ├── factory_test2.proto │ │ │ │ │ │ ├── generator_test.py │ │ │ │ │ │ ├── message_factory_python_test.py │ │ │ │ │ │ ├── message_factory_test.py │ │ │ │ │ │ ├── message_listener.py │ │ │ │ │ │ ├── message_python_test.py │ │ │ │ │ │ ├── message_test.py │ │ │ │ │ │ ├── missing_enum_values.proto │ │ │ │ │ │ ├── more_extensions.proto │ │ │ │ │ │ ├── more_extensions_dynamic.proto │ │ │ │ │ │ ├── more_messages.proto │ │ │ │ │ │ ├── python_message.py │ │ │ │ │ │ ├── reflection_test.py │ │ │ │ │ │ ├── service_reflection_test.py │ │ │ │ │ │ ├── symbol_database_test.py │ │ │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ │ │ ├── test_util.py │ │ │ │ │ │ ├── text_encoding_test.py │ │ │ │ │ │ ├── text_format_test.py │ │ │ │ │ │ ├── type_checkers.py │ │ │ │ │ │ ├── unknown_fields_test.py │ │ │ │ │ │ ├── wire_format.py │ │ │ │ │ │ └── wire_format_test.py │ │ │ │ │ │ ├── message.py │ │ │ │ │ │ ├── message_factory.py │ │ │ │ │ │ ├── pyext │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── cpp_message.py │ │ │ │ │ │ ├── descriptor.cc │ │ │ │ │ │ ├── descriptor.h │ │ │ │ │ │ ├── descriptor_cpp2_test.py │ │ │ │ │ │ ├── extension_dict.cc │ │ │ │ │ │ ├── extension_dict.h │ │ │ │ │ │ ├── message.cc │ │ │ │ │ │ ├── message.h │ │ │ │ │ │ ├── message_factory_cpp2_test.py │ │ │ │ │ │ ├── proto2_api_test.proto │ │ │ │ │ │ ├── python.proto │ │ │ │ │ │ ├── python_protobuf.h │ │ │ │ │ │ ├── reflection_cpp2_generated_test.py │ │ │ │ │ │ ├── repeated_composite_container.cc │ │ │ │ │ │ ├── repeated_composite_container.h │ │ │ │ │ │ ├── repeated_scalar_container.cc │ │ │ │ │ │ ├── repeated_scalar_container.h │ │ │ │ │ │ └── scoped_pyobject_ptr.h │ │ │ │ │ │ ├── reflection.py │ │ │ │ │ │ ├── service.py │ │ │ │ │ │ ├── service_reflection.py │ │ │ │ │ │ ├── symbol_database.py │ │ │ │ │ │ ├── text_encoding.py │ │ │ │ │ │ └── text_format.py │ │ │ │ ├── mox.py │ │ │ │ ├── setup.py │ │ │ │ └── stubout.py │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── google │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── SEBS │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ ├── code_generator.cc │ │ │ │ │ │ ├── code_generator.h │ │ │ │ │ │ ├── command_line_interface.cc │ │ │ │ │ │ ├── command_line_interface.h │ │ │ │ │ │ ├── command_line_interface_unittest.cc │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ │ │ │ │ ├── cpp_enum.cc │ │ │ │ │ │ │ ├── cpp_enum.h │ │ │ │ │ │ │ ├── cpp_enum_field.cc │ │ │ │ │ │ │ ├── cpp_enum_field.h │ │ │ │ │ │ │ ├── cpp_extension.cc │ │ │ │ │ │ │ ├── cpp_extension.h │ │ │ │ │ │ │ ├── cpp_field.cc │ │ │ │ │ │ │ ├── cpp_field.h │ │ │ │ │ │ │ ├── cpp_file.cc │ │ │ │ │ │ │ ├── cpp_file.h │ │ │ │ │ │ │ ├── cpp_generator.cc │ │ │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ │ │ ├── cpp_helpers.cc │ │ │ │ │ │ │ ├── cpp_helpers.h │ │ │ │ │ │ │ ├── cpp_message.cc │ │ │ │ │ │ │ ├── cpp_message.h │ │ │ │ │ │ │ ├── cpp_message_field.cc │ │ │ │ │ │ │ ├── cpp_message_field.h │ │ │ │ │ │ │ ├── cpp_options.h │ │ │ │ │ │ │ ├── cpp_plugin_unittest.cc │ │ │ │ │ │ │ ├── cpp_primitive_field.cc │ │ │ │ │ │ │ ├── cpp_primitive_field.h │ │ │ │ │ │ │ ├── cpp_service.cc │ │ │ │ │ │ │ ├── cpp_service.h │ │ │ │ │ │ │ ├── cpp_string_field.cc │ │ │ │ │ │ │ ├── cpp_string_field.h │ │ │ │ │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ │ │ │ │ ├── cpp_unittest.cc │ │ │ │ │ │ │ └── cpp_unittest.h │ │ │ │ │ │ ├── importer.cc │ │ │ │ │ │ ├── importer.h │ │ │ │ │ │ ├── importer_unittest.cc │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ ├── java_context.cc │ │ │ │ │ │ │ ├── java_context.h │ │ │ │ │ │ │ ├── java_doc_comment.cc │ │ │ │ │ │ │ ├── java_doc_comment.h │ │ │ │ │ │ │ ├── java_doc_comment_unittest.cc │ │ │ │ │ │ │ ├── java_enum.cc │ │ │ │ │ │ │ ├── java_enum.h │ │ │ │ │ │ │ ├── java_enum_field.cc │ │ │ │ │ │ │ ├── java_enum_field.h │ │ │ │ │ │ │ ├── java_extension.cc │ │ │ │ │ │ │ ├── java_extension.h │ │ │ │ │ │ │ ├── java_field.cc │ │ │ │ │ │ │ ├── java_field.h │ │ │ │ │ │ │ ├── java_file.cc │ │ │ │ │ │ │ ├── java_file.h │ │ │ │ │ │ │ ├── java_generator.cc │ │ │ │ │ │ │ ├── java_generator.h │ │ │ │ │ │ │ ├── java_generator_factory.cc │ │ │ │ │ │ │ ├── java_generator_factory.h │ │ │ │ │ │ │ ├── java_helpers.cc │ │ │ │ │ │ │ ├── java_helpers.h │ │ │ │ │ │ │ ├── java_lazy_message_field.cc │ │ │ │ │ │ │ ├── java_lazy_message_field.h │ │ │ │ │ │ │ ├── java_message.cc │ │ │ │ │ │ │ ├── java_message.h │ │ │ │ │ │ │ ├── java_message_field.cc │ │ │ │ │ │ │ ├── java_message_field.h │ │ │ │ │ │ │ ├── java_name_resolver.cc │ │ │ │ │ │ │ ├── java_name_resolver.h │ │ │ │ │ │ │ ├── java_plugin_unittest.cc │ │ │ │ │ │ │ ├── java_primitive_field.cc │ │ │ │ │ │ │ ├── java_primitive_field.h │ │ │ │ │ │ │ ├── java_service.cc │ │ │ │ │ │ │ ├── java_service.h │ │ │ │ │ │ │ ├── java_shared_code_generator.cc │ │ │ │ │ │ │ ├── java_shared_code_generator.h │ │ │ │ │ │ │ ├── java_string_field.cc │ │ │ │ │ │ │ └── java_string_field.h │ │ │ │ │ │ ├── main.cc │ │ │ │ │ │ ├── mock_code_generator.cc │ │ │ │ │ │ ├── mock_code_generator.h │ │ │ │ │ │ ├── package_info.h │ │ │ │ │ │ ├── parser.cc │ │ │ │ │ │ ├── parser.h │ │ │ │ │ │ ├── parser_unittest.cc │ │ │ │ │ │ ├── plugin.cc │ │ │ │ │ │ ├── plugin.h │ │ │ │ │ │ ├── plugin.pb.cc │ │ │ │ │ │ ├── plugin.pb.h │ │ │ │ │ │ ├── plugin.proto │ │ │ │ │ │ ├── python │ │ │ │ │ │ │ ├── python_generator.cc │ │ │ │ │ │ │ ├── python_generator.h │ │ │ │ │ │ │ └── python_plugin_unittest.cc │ │ │ │ │ │ ├── subprocess.cc │ │ │ │ │ │ ├── subprocess.h │ │ │ │ │ │ ├── test_plugin.cc │ │ │ │ │ │ ├── zip_output_unittest.sh │ │ │ │ │ │ ├── zip_writer.cc │ │ │ │ │ │ └── zip_writer.h │ │ │ │ │ │ ├── descriptor.cc │ │ │ │ │ │ ├── descriptor.h │ │ │ │ │ │ ├── descriptor.pb.cc │ │ │ │ │ │ ├── descriptor.pb.h │ │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ │ ├── descriptor_database.cc │ │ │ │ │ │ ├── descriptor_database.h │ │ │ │ │ │ ├── descriptor_database_unittest.cc │ │ │ │ │ │ ├── descriptor_pb2_test.py │ │ │ │ │ │ ├── descriptor_unittest.cc │ │ │ │ │ │ ├── dynamic_message.cc │ │ │ │ │ │ ├── dynamic_message.h │ │ │ │ │ │ ├── dynamic_message_unittest.cc │ │ │ │ │ │ ├── extension_set.cc │ │ │ │ │ │ ├── extension_set.h │ │ │ │ │ │ ├── extension_set_heavy.cc │ │ │ │ │ │ ├── extension_set_unittest.cc │ │ │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ │ │ ├── generated_message_reflection.cc │ │ │ │ │ │ ├── generated_message_reflection.h │ │ │ │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ │ │ │ ├── generated_message_util.cc │ │ │ │ │ │ ├── generated_message_util.h │ │ │ │ │ │ ├── io │ │ │ │ │ │ ├── coded_stream.cc │ │ │ │ │ │ ├── coded_stream.h │ │ │ │ │ │ ├── coded_stream_inl.h │ │ │ │ │ │ ├── coded_stream_unittest.cc │ │ │ │ │ │ ├── gzip_stream.cc │ │ │ │ │ │ ├── gzip_stream.h │ │ │ │ │ │ ├── gzip_stream_unittest.sh │ │ │ │ │ │ ├── package_info.h │ │ │ │ │ │ ├── printer.cc │ │ │ │ │ │ ├── printer.h │ │ │ │ │ │ ├── printer_unittest.cc │ │ │ │ │ │ ├── strtod.cc │ │ │ │ │ │ ├── strtod.h │ │ │ │ │ │ ├── tokenizer.cc │ │ │ │ │ │ ├── tokenizer.h │ │ │ │ │ │ ├── tokenizer_unittest.cc │ │ │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ │ │ ├── zero_copy_stream.h │ │ │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ │ │ │ └── zero_copy_stream_unittest.cc │ │ │ │ │ │ ├── lite_unittest.cc │ │ │ │ │ │ ├── message.cc │ │ │ │ │ │ ├── message.h │ │ │ │ │ │ ├── message_lite.cc │ │ │ │ │ │ ├── message_lite.h │ │ │ │ │ │ ├── message_unittest.cc │ │ │ │ │ │ ├── package_info.h │ │ │ │ │ │ ├── reflection_ops.cc │ │ │ │ │ │ ├── reflection_ops.h │ │ │ │ │ │ ├── reflection_ops_unittest.cc │ │ │ │ │ │ ├── repeated_field.cc │ │ │ │ │ │ ├── repeated_field.h │ │ │ │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ │ │ │ ├── repeated_field_unittest.cc │ │ │ │ │ │ ├── service.cc │ │ │ │ │ │ ├── service.h │ │ │ │ │ │ ├── stubs │ │ │ │ │ │ ├── atomicops.h │ │ │ │ │ │ ├── atomicops_internals_arm64_gcc.h │ │ │ │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ │ │ │ ├── atomicops_internals_arm_qnx.h │ │ │ │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ │ │ │ ├── atomicops_internals_generic_gcc.h │ │ │ │ │ │ ├── atomicops_internals_macosx.h │ │ │ │ │ │ ├── atomicops_internals_mips_gcc.h │ │ │ │ │ │ ├── atomicops_internals_pnacl.h │ │ │ │ │ │ ├── atomicops_internals_solaris.h │ │ │ │ │ │ ├── atomicops_internals_tsan.h │ │ │ │ │ │ ├── atomicops_internals_x86_gcc.cc │ │ │ │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ │ │ │ ├── atomicops_internals_x86_msvc.cc │ │ │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ │ │ ├── common.cc │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── common_unittest.cc │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── map_util.h │ │ │ │ │ │ ├── once.cc │ │ │ │ │ │ ├── once.h │ │ │ │ │ │ ├── once_unittest.cc │ │ │ │ │ │ ├── platform_macros.h │ │ │ │ │ │ ├── shared_ptr.h │ │ │ │ │ │ ├── stl_util.h │ │ │ │ │ │ ├── stringprintf.cc │ │ │ │ │ │ ├── stringprintf.h │ │ │ │ │ │ ├── stringprintf_unittest.cc │ │ │ │ │ │ ├── structurally_valid.cc │ │ │ │ │ │ ├── structurally_valid_unittest.cc │ │ │ │ │ │ ├── strutil.cc │ │ │ │ │ │ ├── strutil.h │ │ │ │ │ │ ├── strutil_unittest.cc │ │ │ │ │ │ ├── substitute.cc │ │ │ │ │ │ ├── substitute.h │ │ │ │ │ │ ├── template_util.h │ │ │ │ │ │ ├── template_util_unittest.cc │ │ │ │ │ │ ├── type_traits.h │ │ │ │ │ │ └── type_traits_unittest.cc │ │ │ │ │ │ ├── test_util.cc │ │ │ │ │ │ ├── test_util.h │ │ │ │ │ │ ├── test_util_lite.cc │ │ │ │ │ │ ├── test_util_lite.h │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── bad_utf8_string │ │ │ │ │ │ ├── golden_message │ │ │ │ │ │ ├── golden_message_oneof_implemented │ │ │ │ │ │ ├── golden_packed_fields_message │ │ │ │ │ │ ├── text_format_unittest_data.txt │ │ │ │ │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ │ │ │ │ ├── text_format_unittest_data_pointy.txt │ │ │ │ │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ │ │ │ │ ├── text_format_unittest_extensions_data.txt │ │ │ │ │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── file.cc │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ ├── googletest.cc │ │ │ │ │ │ ├── googletest.h │ │ │ │ │ │ ├── zcgunzip.cc │ │ │ │ │ │ └── zcgzip.cc │ │ │ │ │ │ ├── text_format.cc │ │ │ │ │ │ ├── text_format.h │ │ │ │ │ │ ├── text_format_unittest.cc │ │ │ │ │ │ ├── unittest.proto │ │ │ │ │ │ ├── unittest_custom_options.proto │ │ │ │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ │ │ │ ├── unittest_empty.proto │ │ │ │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ │ │ │ ├── unittest_import.proto │ │ │ │ │ │ ├── unittest_import_lite.proto │ │ │ │ │ │ ├── unittest_import_public.proto │ │ │ │ │ │ ├── unittest_import_public_lite.proto │ │ │ │ │ │ ├── unittest_lite.proto │ │ │ │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ │ │ │ ├── unittest_mset.proto │ │ │ │ │ │ ├── unittest_no_generic_services.proto │ │ │ │ │ │ ├── unittest_optimize_for.proto │ │ │ │ │ │ ├── unknown_field_set.cc │ │ │ │ │ │ ├── unknown_field_set.h │ │ │ │ │ │ ├── unknown_field_set_unittest.cc │ │ │ │ │ │ ├── wire_format.cc │ │ │ │ │ │ ├── wire_format.h │ │ │ │ │ │ ├── wire_format_lite.cc │ │ │ │ │ │ ├── wire_format_lite.h │ │ │ │ │ │ ├── wire_format_lite_inl.h │ │ │ │ │ │ └── wire_format_unittest.cc │ │ │ │ └── solaris │ │ │ │ │ └── libstdc++.la │ │ │ └── vsprojects │ │ │ │ ├── .vs │ │ │ │ └── protobuf │ │ │ │ │ └── v14 │ │ │ │ │ └── .suo │ │ │ │ ├── UpgradeLog.htm │ │ │ │ ├── config.h │ │ │ │ ├── convert2008to2005.sh │ │ │ │ ├── extract_includes.bat │ │ │ │ ├── google │ │ │ │ └── protobuf │ │ │ │ │ ├── compiler │ │ │ │ │ └── cpp │ │ │ │ │ │ ├── cpp_test_bad_identifiers.pb.cc │ │ │ │ │ │ └── cpp_test_bad_identifiers.pb.h │ │ │ │ │ ├── unittest.pb.cc │ │ │ │ │ ├── unittest.pb.h │ │ │ │ │ ├── unittest_custom_options.pb.cc │ │ │ │ │ ├── unittest_custom_options.pb.h │ │ │ │ │ ├── unittest_embed_optimize_for.pb.cc │ │ │ │ │ ├── unittest_embed_optimize_for.pb.h │ │ │ │ │ ├── unittest_import.pb.cc │ │ │ │ │ ├── unittest_import.pb.h │ │ │ │ │ ├── unittest_import_lite.pb.cc │ │ │ │ │ ├── unittest_import_lite.pb.h │ │ │ │ │ ├── unittest_import_public.pb.cc │ │ │ │ │ ├── unittest_import_public.pb.h │ │ │ │ │ ├── unittest_import_public_lite.pb.cc │ │ │ │ │ ├── unittest_import_public_lite.pb.h │ │ │ │ │ ├── unittest_lite.pb.cc │ │ │ │ │ ├── unittest_lite.pb.h │ │ │ │ │ ├── unittest_lite_imports_nonlite.pb.cc │ │ │ │ │ ├── unittest_lite_imports_nonlite.pb.h │ │ │ │ │ ├── unittest_mset.pb.cc │ │ │ │ │ ├── unittest_mset.pb.h │ │ │ │ │ ├── unittest_no_generic_services.pb.cc │ │ │ │ │ ├── unittest_no_generic_services.pb.h │ │ │ │ │ ├── unittest_optimize_for.pb.cc │ │ │ │ │ └── unittest_optimize_for.pb.h │ │ │ │ ├── libprotobuf-lite.vcproj │ │ │ │ ├── libprotobuf-lite.vcxproj │ │ │ │ ├── libprotobuf-lite.vcxproj.filters │ │ │ │ ├── libprotobuf.vcproj │ │ │ │ ├── libprotobuf.vcxproj │ │ │ │ ├── libprotobuf.vcxproj.filters │ │ │ │ ├── libprotoc.vcproj │ │ │ │ ├── libprotoc.vcxproj │ │ │ │ ├── libprotoc.vcxproj.filters │ │ │ │ ├── lite-test.vcproj │ │ │ │ ├── lite-test.vcxproj │ │ │ │ ├── lite-test.vcxproj.filters │ │ │ │ ├── protobuf.sln │ │ │ │ ├── protoc.vcproj │ │ │ │ ├── protoc.vcxproj │ │ │ │ ├── protoc.vcxproj.filters │ │ │ │ ├── readme.txt │ │ │ │ ├── test_plugin.vcproj │ │ │ │ ├── test_plugin.vcxproj │ │ │ │ ├── test_plugin.vcxproj.filters │ │ │ │ ├── tests.vcproj │ │ │ │ ├── tests.vcxproj │ │ │ │ └── tests.vcxproj.filters │ │ ├── sigar │ │ │ ├── linux │ │ │ │ ├── Makefile │ │ │ │ ├── linux_sigar.c │ │ │ │ ├── sigar.c │ │ │ │ ├── sigar.h │ │ │ │ ├── sigar_cache.c │ │ │ │ ├── sigar_fileinfo.c │ │ │ │ ├── sigar_fileinfo.h │ │ │ │ ├── sigar_format.c │ │ │ │ ├── sigar_format.h │ │ │ │ ├── sigar_getline.c │ │ │ │ ├── sigar_getline.h │ │ │ │ ├── sigar_log.h │ │ │ │ ├── sigar_os.h │ │ │ │ ├── sigar_private.h │ │ │ │ ├── sigar_ptql.c │ │ │ │ ├── sigar_ptql.h │ │ │ │ ├── sigar_signal.c │ │ │ │ ├── sigar_util.c │ │ │ │ ├── sigar_util.h │ │ │ │ └── sigar_version.c.in │ │ │ └── win32 │ │ │ │ ├── peb.c │ │ │ │ ├── sigar.c │ │ │ │ ├── sigar.h │ │ │ │ ├── sigar.rc.in │ │ │ │ ├── sigar_cache.c │ │ │ │ ├── sigar_fileinfo.c │ │ │ │ ├── sigar_fileinfo.h │ │ │ │ ├── sigar_format.c │ │ │ │ ├── sigar_format.h │ │ │ │ ├── sigar_getline.c │ │ │ │ ├── sigar_getline.h │ │ │ │ ├── sigar_log.h │ │ │ │ ├── sigar_os.h │ │ │ │ ├── sigar_pdh.h │ │ │ │ ├── sigar_private.h │ │ │ │ ├── sigar_ptql.c │ │ │ │ ├── sigar_ptql.h │ │ │ │ ├── sigar_signal.c │ │ │ │ ├── sigar_util.c │ │ │ │ ├── sigar_util.h │ │ │ │ ├── sigar_version.c.in │ │ │ │ ├── win32_sigar.c │ │ │ │ └── wmi.cpp │ │ ├── tinyxml │ │ │ ├── Makefile │ │ │ ├── changes.txt │ │ │ ├── docs │ │ │ │ ├── annotated.html │ │ │ │ ├── classTiXmlAttribute-members.html │ │ │ │ ├── classTiXmlAttribute.html │ │ │ │ ├── classTiXmlAttribute.png │ │ │ │ ├── classTiXmlBase-members.html │ │ │ │ ├── classTiXmlBase.html │ │ │ │ ├── classTiXmlBase.png │ │ │ │ ├── classTiXmlComment-members.html │ │ │ │ ├── classTiXmlComment.html │ │ │ │ ├── classTiXmlComment.png │ │ │ │ ├── classTiXmlDeclaration-members.html │ │ │ │ ├── classTiXmlDeclaration.html │ │ │ │ ├── classTiXmlDeclaration.png │ │ │ │ ├── classTiXmlDocument-members.html │ │ │ │ ├── classTiXmlDocument.html │ │ │ │ ├── classTiXmlDocument.png │ │ │ │ ├── classTiXmlElement-members.html │ │ │ │ ├── classTiXmlElement.html │ │ │ │ ├── classTiXmlElement.png │ │ │ │ ├── classTiXmlHandle-members.html │ │ │ │ ├── classTiXmlHandle.html │ │ │ │ ├── classTiXmlNode-members.html │ │ │ │ ├── classTiXmlNode.html │ │ │ │ ├── classTiXmlNode.png │ │ │ │ ├── classTiXmlPrinter-members.html │ │ │ │ ├── classTiXmlPrinter.html │ │ │ │ ├── classTiXmlPrinter.png │ │ │ │ ├── classTiXmlText-members.html │ │ │ │ ├── classTiXmlText.html │ │ │ │ ├── classTiXmlText.png │ │ │ │ ├── classTiXmlUnknown-members.html │ │ │ │ ├── classTiXmlUnknown.html │ │ │ │ ├── classTiXmlUnknown.png │ │ │ │ ├── classTiXmlVisitor-members.html │ │ │ │ ├── classTiXmlVisitor.html │ │ │ │ ├── classTiXmlVisitor.png │ │ │ │ ├── classes.html │ │ │ │ ├── deprecated.html │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── files.html │ │ │ │ ├── functions.html │ │ │ │ ├── functions_0x63.html │ │ │ │ ├── functions_0x64.html │ │ │ │ ├── functions_0x65.html │ │ │ │ ├── functions_0x66.html │ │ │ │ ├── functions_0x67.html │ │ │ │ ├── functions_0x69.html │ │ │ │ ├── functions_0x6c.html │ │ │ │ ├── functions_0x6e.html │ │ │ │ ├── functions_0x6f.html │ │ │ │ ├── functions_0x70.html │ │ │ │ ├── functions_0x71.html │ │ │ │ ├── functions_0x72.html │ │ │ │ ├── functions_0x73.html │ │ │ │ ├── functions_0x74.html │ │ │ │ ├── functions_0x75.html │ │ │ │ ├── functions_0x76.html │ │ │ │ ├── functions_enum.html │ │ │ │ ├── functions_func.html │ │ │ │ ├── functions_func_0x63.html │ │ │ │ ├── functions_func_0x64.html │ │ │ │ ├── functions_func_0x65.html │ │ │ │ ├── functions_func_0x66.html │ │ │ │ ├── functions_func_0x67.html │ │ │ │ ├── functions_func_0x69.html │ │ │ │ ├── functions_func_0x6c.html │ │ │ │ ├── functions_func_0x6e.html │ │ │ │ ├── functions_func_0x70.html │ │ │ │ ├── functions_func_0x71.html │ │ │ │ ├── functions_func_0x72.html │ │ │ │ ├── functions_func_0x73.html │ │ │ │ ├── functions_func_0x74.html │ │ │ │ ├── functions_func_0x75.html │ │ │ │ ├── functions_func_0x76.html │ │ │ │ ├── functions_rela.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── hierarchy.html │ │ │ │ ├── index.html │ │ │ │ ├── pages.html │ │ │ │ ├── tab_b.gif │ │ │ │ ├── tab_l.gif │ │ │ │ ├── tab_r.gif │ │ │ │ ├── tabs.css │ │ │ │ ├── tinystr_8h_source.html │ │ │ │ ├── tinyxml_8h_source.html │ │ │ │ └── tutorial0.html │ │ │ ├── readme.txt │ │ │ ├── tinyXmlTest.vcxproj │ │ │ ├── tinyXmlTestSTL.vcxproj │ │ │ ├── tinystr.cpp │ │ │ ├── tinystr.h │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxml.sln │ │ │ ├── tinyxmlSTL.vcxproj │ │ │ ├── tinyxml_lib.vcxproj │ │ │ ├── tinyxmlerror.cpp │ │ │ ├── tinyxmlparser.cpp │ │ │ ├── utf8test.gif │ │ │ ├── utf8test.xml │ │ │ ├── utf8testverify.xml │ │ │ ├── xmltest.cpp │ │ │ └── ~Makefile │ │ ├── utf8cpp │ │ │ ├── doc │ │ │ │ ├── ReleaseNotes │ │ │ │ └── utf8cpp.html │ │ │ ├── utf8.h │ │ │ └── utf8 │ │ │ │ ├── checked.h │ │ │ │ ├── core.h │ │ │ │ └── unchecked.h │ │ └── vld │ │ │ ├── vld.h │ │ │ ├── vld_def.h │ │ │ ├── vld_x64.lib │ │ │ └── vld_x86.lib │ ├── entity_table_mysql.cpp │ ├── entity_table_mysql.h │ ├── entity_table_mysql.inl │ ├── google │ │ └── protobuf │ │ │ ├── compiler │ │ │ ├── code_generator.h │ │ │ ├── command_line_interface.h │ │ │ ├── cpp │ │ │ │ └── cpp_generator.h │ │ │ ├── importer.h │ │ │ ├── java │ │ │ │ └── java_generator.h │ │ │ ├── parser.h │ │ │ ├── plugin.h │ │ │ └── python │ │ │ │ └── python_generator.h │ │ │ ├── descriptor.h │ │ │ ├── descriptor.pb.h │ │ │ ├── descriptor_database.h │ │ │ ├── dynamic_message.h │ │ │ ├── extension_set.h │ │ │ ├── generated_enum_reflection.h │ │ │ ├── generated_message_reflection.h │ │ │ ├── generated_message_util.h │ │ │ ├── io │ │ │ ├── coded_stream.h │ │ │ ├── gzip_stream.h │ │ │ ├── printer.h │ │ │ ├── strtod.h │ │ │ ├── tokenizer.h │ │ │ ├── zero_copy_stream.h │ │ │ ├── zero_copy_stream_impl.h │ │ │ └── zero_copy_stream_impl_lite.h │ │ │ ├── message.h │ │ │ ├── message_lite.h │ │ │ ├── reflection_ops.h │ │ │ ├── repeated_field.h │ │ │ ├── service.h │ │ │ ├── stubs │ │ │ ├── atomicops.h │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ ├── common.h │ │ │ ├── once.h │ │ │ ├── platform_macros.h │ │ │ ├── template_util.h │ │ │ └── type_traits.h │ │ │ ├── text_format.h │ │ │ ├── unknown_field_set.h │ │ │ ├── wire_format.h │ │ │ ├── wire_format_lite.h │ │ │ └── wire_format_lite_inl.h │ ├── helper │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── console_helper.h │ │ ├── crashhandler.cpp │ │ ├── crashhandler.h │ │ ├── debug_helper.cpp │ │ ├── debug_helper.h │ │ ├── debug_option.cpp │ │ ├── debug_option.h │ │ ├── eventhistory_stats.cpp │ │ ├── eventhistory_stats.h │ │ ├── helper.vcxproj │ │ ├── helper.vcxproj.filters │ │ ├── memory_helper.h │ │ ├── profile.h │ │ ├── profile.inl │ │ ├── profile_handler.h │ │ ├── profiler.h │ │ ├── profiler.inl │ │ ├── script_loglevel.h │ │ ├── sys_info.cpp │ │ ├── sys_info.h │ │ ├── sys_info.inl │ │ ├── watch_pools.cpp │ │ ├── watch_pools.h │ │ ├── watcher.cpp │ │ └── watcher.h │ ├── math │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── math.cpp │ │ ├── math.h │ │ ├── math.vcxproj │ │ └── math.vcxproj.filters │ ├── network │ │ ├── Makefile │ │ ├── address.cpp │ │ ├── address.h │ │ ├── bundle.cpp │ │ ├── bundle.h │ │ ├── bundle.inl │ │ ├── bundle_broadcast.cpp │ │ ├── bundle_broadcast.h │ │ ├── bundle_broadcast.inl │ │ ├── channel.cpp │ │ ├── channel.h │ │ ├── channel.inl │ │ ├── common.cpp │ │ ├── common.h │ │ ├── delayed_channels.cpp │ │ ├── delayed_channels.h │ │ ├── encryption_filter.cpp │ │ ├── encryption_filter.h │ │ ├── endpoint.cpp │ │ ├── endpoint.h │ │ ├── endpoint.inl │ │ ├── error_reporter.cpp │ │ ├── error_reporter.h │ │ ├── error_reporter.inl │ │ ├── event_dispatcher.cpp │ │ ├── event_dispatcher.h │ │ ├── event_dispatcher.inl │ │ ├── event_poller.cpp │ │ ├── event_poller.h │ │ ├── fixed_messages.cpp │ │ ├── fixed_messages.h │ │ ├── http_utility.h │ │ ├── interface_defs.cpp │ │ ├── interface_defs.h │ │ ├── interfaces.h │ │ ├── listener_receiver.cpp │ │ ├── listener_receiver.h │ │ ├── listener_receiver.inl │ │ ├── message_handler.cpp │ │ ├── message_handler.h │ │ ├── network.vcxproj │ │ ├── network.vcxproj.filters │ │ ├── network_exception.h │ │ ├── network_interface.cpp │ │ ├── network_interface.h │ │ ├── network_interface.inl │ │ ├── network_stats.cpp │ │ ├── network_stats.h │ │ ├── packet.h │ │ ├── packet_filter.cpp │ │ ├── packet_filter.h │ │ ├── packet_filter.inl │ │ ├── packet_reader.cpp │ │ ├── packet_reader.h │ │ ├── packet_receiver.cpp │ │ ├── packet_receiver.h │ │ ├── packet_receiver.inl │ │ ├── packet_sender.cpp │ │ ├── packet_sender.h │ │ ├── packet_sender.inl │ │ ├── poller_epoll.cpp │ │ ├── poller_epoll.h │ │ ├── poller_select.cpp │ │ ├── poller_select.h │ │ ├── server_interface_macros.h │ │ ├── tcp_packet.cpp │ │ ├── tcp_packet.h │ │ ├── tcp_packet.inl │ │ ├── tcp_packet_receiver.cpp │ │ ├── tcp_packet_receiver.h │ │ ├── tcp_packet_receiver.inl │ │ ├── tcp_packet_sender.cpp │ │ ├── tcp_packet_sender.h │ │ ├── tcp_packet_sender.inl │ │ ├── udp_packet.cpp │ │ ├── udp_packet.h │ │ ├── udp_packet.inl │ │ ├── udp_packet_receiver.cpp │ │ ├── udp_packet_receiver.h │ │ ├── udp_packet_receiver.inl │ │ ├── websocket_packet_filter.cpp │ │ ├── websocket_packet_filter.h │ │ ├── websocket_packet_reader.cpp │ │ ├── websocket_packet_reader.h │ │ ├── websocket_protocol.cpp │ │ └── websocket_protocol.h │ ├── proto │ │ ├── basedb.pb.cc │ │ ├── basedb.pb.h │ │ ├── bmb.pb.cc │ │ ├── bmb.pb.h │ │ ├── cb.pb.cc │ │ ├── cb.pb.h │ │ ├── celldb.pb.cc │ │ ├── celldb.pb.h │ │ ├── cl.pb.cc │ │ ├── cl.pb.h │ │ ├── coms.pb.cc │ │ ├── coms.pb.h │ │ ├── lbm.pb.cc │ │ ├── lbm.pb.h │ │ ├── ldb.pb.cc │ │ └── ldb.pb.h │ ├── resmgr │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── resmgr.cpp │ │ ├── resmgr.h │ │ ├── resmgr.vcxproj │ │ ├── resmgr.vcxproj.filters │ │ ├── resourceobject.cpp │ │ └── resourceobject.h │ ├── server │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── common.cpp │ │ ├── common.h │ │ ├── component_active_report_handler.cpp │ │ ├── component_active_report_handler.h │ │ ├── components.cpp │ │ ├── components.h │ │ ├── entities.h │ │ ├── entity_app.cpp │ │ ├── entity_app.h │ │ ├── entity_garbages.h │ │ ├── forward_messagebuffer.cpp │ │ ├── forward_messagebuffer.h │ │ ├── globaldata_server.cpp │ │ ├── globaldata_server.h │ │ ├── idallocate.cpp │ │ ├── idallocate.h │ │ ├── kbemain.h │ │ ├── machine_infos.cpp │ │ ├── machine_infos.h │ │ ├── pendingLoginmgr.cpp │ │ ├── pendingLoginmgr.h │ │ ├── script_timers.h │ │ ├── sendmail_threadtasks.h │ │ ├── server.vcxproj │ │ ├── server.vcxproj.filters │ │ ├── server.vcxproj.user │ │ ├── server_errors.h │ │ ├── serverapp.cpp │ │ ├── serverapp.h │ │ ├── serverconfig.cpp │ │ ├── serverconfig.h │ │ ├── serverconfig.inl │ │ ├── shutdown_handler.h │ │ ├── shutdowner.cpp │ │ ├── shutdowner.h │ │ ├── signal_handler.cpp │ │ └── signal_handler.h │ ├── thread │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── concurrency.cpp │ │ ├── concurrency.h │ │ ├── thread.vcxproj │ │ ├── thread.vcxproj.filters │ │ ├── threadguard.h │ │ ├── threadmutex.h │ │ ├── threadpool.cpp │ │ ├── threadpool.h │ │ ├── threadpool.inl │ │ └── threadtask.h │ └── xml │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── xml.cpp │ │ ├── xml.h │ │ ├── xml.vcxproj │ │ └── xml.vcxproj.filters ├── libs │ ├── libmysql.lib │ ├── libmysql_d.lib │ ├── mysqlclient.lib │ └── mysqlclient_d.lib ├── minikbe_vs140.sln └── server │ ├── Makefile │ ├── baseapp │ ├── Makefile │ ├── ReadMe.txt │ ├── base.cpp │ ├── base.h │ ├── base.inl │ ├── base_messages_forward_handler.cpp │ ├── base_messages_forward_handler.h │ ├── baseapp.cpp │ ├── baseapp.h │ ├── baseapp.vcxproj │ ├── baseapp.vcxproj.filters │ ├── baseapp.vcxproj.user │ ├── baseapp_interface.cpp │ ├── baseapp_interface.h │ ├── initprogress_handler.cpp │ ├── initprogress_handler.h │ ├── main.cpp │ ├── proxy.cpp │ ├── proxy.h │ ├── proxy.inl │ ├── proxy_forwarder.cpp │ └── proxy_forwarder.h │ ├── basemgr │ ├── Makefile │ ├── ReadMe.txt │ ├── baseapp.cpp │ ├── baseapp.h │ ├── basemgr.cpp │ ├── basemgr.h │ ├── basemgr.vcxproj │ ├── basemgr.vcxproj.filters │ ├── basemgr.vcxproj.user │ ├── basemgr_interface.cpp │ ├── basemgr_interface.h │ └── main.cpp │ ├── cellapp │ ├── Makefile │ ├── ReadMe.txt │ ├── cellapp.cpp │ ├── cellapp.h │ ├── cellapp.vcxproj │ ├── cellapp.vcxproj.filters │ ├── cellapp.vcxproj.user │ ├── cellapp_interface.cpp │ ├── cellapp_interface.h │ └── main.cpp │ ├── cellmgr │ ├── Makefile │ ├── ReadMe.txt │ ├── cellmgr.cpp │ ├── cellmgr.h │ ├── cellmgr.vcxproj │ ├── cellmgr.vcxproj.filters │ ├── cellmgr.vcxproj.user │ ├── cellmgr_interface.cpp │ ├── cellmgr_interface.h │ └── main.cpp │ ├── dbmgr │ ├── Makefile │ ├── ReadMe.txt │ ├── buffered_dbtasks.cpp │ ├── buffered_dbtasks.h │ ├── dbTalbeModule.cpp │ ├── dbTalbeModule.h │ ├── dbmgr.cpp │ ├── dbmgr.h │ ├── dbmgr.vcxproj │ ├── dbmgr.vcxproj.filters │ ├── dbmgr.vcxproj.user │ ├── dbmgr_interface.cpp │ ├── dbmgr_interface.h │ ├── dbtasks.cpp │ ├── dbtasks.h │ ├── interfaces_handler.cpp │ ├── interfaces_handler.h │ ├── main.cpp │ ├── sync_app_datas_handler.cpp │ └── sync_app_datas_handler.h │ ├── logger │ ├── Makefile │ ├── ReadMe.txt │ ├── logger.cpp │ ├── logger.h │ ├── logger.vcxproj │ ├── logger.vcxproj.filters │ ├── logger.vcxproj.user │ ├── logger_interface.cpp │ ├── logger_interface.h │ └── main.cpp │ └── login │ ├── Makefile │ ├── ReadMe.txt │ ├── login.cpp │ ├── login.h │ ├── login.vcxproj │ ├── login.vcxproj.filters │ ├── login.vcxproj.user │ ├── login_interface.cpp │ ├── login_interface.h │ └── main.cpp └── tools └── proto ├── basedb.proto ├── bmb.proto ├── cb.pb ├── cb.proto ├── celldb.proto ├── cl.pb ├── cl.proto ├── coms.proto ├── lbm.proto ├── ldb.proto ├── protoc.exe ├── 生成pbc.bat └── 生成协议.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/README.md -------------------------------------------------------------------------------- /bin/server/kill_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/bin/server/kill_server.bat -------------------------------------------------------------------------------- /bin/server/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/bin/server/libmysql.dll -------------------------------------------------------------------------------- /bin/server/libmysql_release.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/bin/server/libmysql_release.dll -------------------------------------------------------------------------------- /bin/server/server/dbtable/dota_players.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/bin/server/server/dbtable/dota_players.xml -------------------------------------------------------------------------------- /bin/server/server/dbtables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/bin/server/server/dbtables.xml -------------------------------------------------------------------------------- /bin/server/server/kbengine_defs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/bin/server/server/kbengine_defs.xml -------------------------------------------------------------------------------- /bin/server/serverConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/bin/server/serverConfig.xml -------------------------------------------------------------------------------- /bin/server/start_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/bin/server/start_server.bat -------------------------------------------------------------------------------- /doc/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/doc/class.png -------------------------------------------------------------------------------- /doc/compents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/doc/compents.png -------------------------------------------------------------------------------- /doc/dbconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/doc/dbconfig.png -------------------------------------------------------------------------------- /src/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/Makefile -------------------------------------------------------------------------------- /src/lib/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/Makefile -------------------------------------------------------------------------------- /src/lib/common/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/common/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/base64.cpp -------------------------------------------------------------------------------- /src/lib/common/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/base64.h -------------------------------------------------------------------------------- /src/lib/common/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/blowfish.cpp -------------------------------------------------------------------------------- /src/lib/common/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/blowfish.h -------------------------------------------------------------------------------- /src/lib/common/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/common.cpp -------------------------------------------------------------------------------- /src/lib/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/common.h -------------------------------------------------------------------------------- /src/lib/common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/common.vcxproj -------------------------------------------------------------------------------- /src/lib/common/common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/common.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/common/deadline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/deadline.h -------------------------------------------------------------------------------- /src/lib/common/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/format.cpp -------------------------------------------------------------------------------- /src/lib/common/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/format.h -------------------------------------------------------------------------------- /src/lib/common/kbekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/kbekey.cpp -------------------------------------------------------------------------------- /src/lib/common/kbekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/kbekey.h -------------------------------------------------------------------------------- /src/lib/common/kbemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/kbemalloc.h -------------------------------------------------------------------------------- /src/lib/common/kbeversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/kbeversion.cpp -------------------------------------------------------------------------------- /src/lib/common/kbeversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/kbeversion.h -------------------------------------------------------------------------------- /src/lib/common/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/md5.cpp -------------------------------------------------------------------------------- /src/lib/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/md5.h -------------------------------------------------------------------------------- /src/lib/common/memorystream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/memorystream.cpp -------------------------------------------------------------------------------- /src/lib/common/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/memorystream.h -------------------------------------------------------------------------------- /src/lib/common/memorystream_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/memorystream_converter.h -------------------------------------------------------------------------------- /src/lib/common/objectpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/objectpool.h -------------------------------------------------------------------------------- /src/lib/common/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/platform.h -------------------------------------------------------------------------------- /src/lib/common/refcountable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/refcountable.h -------------------------------------------------------------------------------- /src/lib/common/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/rsa.cpp -------------------------------------------------------------------------------- /src/lib/common/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/rsa.h -------------------------------------------------------------------------------- /src/lib/common/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/sha1.cpp -------------------------------------------------------------------------------- /src/lib/common/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/sha1.h -------------------------------------------------------------------------------- /src/lib/common/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/singleton.h -------------------------------------------------------------------------------- /src/lib/common/smartpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/smartpointer.h -------------------------------------------------------------------------------- /src/lib/common/stdfindif_handers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/stdfindif_handers.h -------------------------------------------------------------------------------- /src/lib/common/stringconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/stringconv.h -------------------------------------------------------------------------------- /src/lib/common/strutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/strutil.cpp -------------------------------------------------------------------------------- /src/lib/common/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/strutil.h -------------------------------------------------------------------------------- /src/lib/common/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/task.h -------------------------------------------------------------------------------- /src/lib/common/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/tasks.cpp -------------------------------------------------------------------------------- /src/lib/common/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/tasks.h -------------------------------------------------------------------------------- /src/lib/common/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/timer.cpp -------------------------------------------------------------------------------- /src/lib/common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/timer.h -------------------------------------------------------------------------------- /src/lib/common/timer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/timer.inl -------------------------------------------------------------------------------- /src/lib/common/timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/timestamp.cpp -------------------------------------------------------------------------------- /src/lib/common/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/common/timestamp.h -------------------------------------------------------------------------------- /src/lib/db_interface/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/Makefile -------------------------------------------------------------------------------- /src/lib/db_interface/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/db_interface/db_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/db_interface.cpp -------------------------------------------------------------------------------- /src/lib/db_interface/db_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/db_interface.h -------------------------------------------------------------------------------- /src/lib/db_interface/db_interface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/db_interface.vcxproj -------------------------------------------------------------------------------- /src/lib/db_interface/db_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/db_tasks.cpp -------------------------------------------------------------------------------- /src/lib/db_interface/db_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/db_tasks.h -------------------------------------------------------------------------------- /src/lib/db_interface/db_threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/db_threadpool.cpp -------------------------------------------------------------------------------- /src/lib/db_interface/db_threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/db_threadpool.h -------------------------------------------------------------------------------- /src/lib/db_interface/entity_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/entity_table.cpp -------------------------------------------------------------------------------- /src/lib/db_interface/entity_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/entity_table.h -------------------------------------------------------------------------------- /src/lib/db_interface/kbe_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/kbe_tables.cpp -------------------------------------------------------------------------------- /src/lib/db_interface/kbe_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_interface/kbe_tables.h -------------------------------------------------------------------------------- /src/lib/db_mysql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/Makefile -------------------------------------------------------------------------------- /src/lib/db_mysql/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/db_mysql/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/common.cpp -------------------------------------------------------------------------------- /src/lib/db_mysql/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/common.h -------------------------------------------------------------------------------- /src/lib/db_mysql/db_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_context.h -------------------------------------------------------------------------------- /src/lib/db_mysql/db_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_exception.cpp -------------------------------------------------------------------------------- /src/lib/db_mysql/db_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_exception.h -------------------------------------------------------------------------------- /src/lib/db_mysql/db_interface_mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_interface_mysql.cpp -------------------------------------------------------------------------------- /src/lib/db_mysql/db_interface_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_interface_mysql.h -------------------------------------------------------------------------------- /src/lib/db_mysql/db_mysql.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_mysql.vcxproj -------------------------------------------------------------------------------- /src/lib/db_mysql/db_mysql.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_mysql.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/db_mysql/db_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_transaction.cpp -------------------------------------------------------------------------------- /src/lib/db_mysql/db_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/db_transaction.h -------------------------------------------------------------------------------- /src/lib/db_mysql/entity_table_mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/entity_table_mysql.cpp -------------------------------------------------------------------------------- /src/lib/db_mysql/entity_table_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/entity_table_mysql.h -------------------------------------------------------------------------------- /src/lib/db_mysql/entity_table_mysql.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/entity_table_mysql.inl -------------------------------------------------------------------------------- /src/lib/db_mysql/kbe_table_mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/kbe_table_mysql.cpp -------------------------------------------------------------------------------- /src/lib/db_mysql/kbe_table_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/kbe_table_mysql.h -------------------------------------------------------------------------------- /src/lib/db_mysql/read_entity_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/read_entity_helper.h -------------------------------------------------------------------------------- /src/lib/db_mysql/remove_entity_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/remove_entity_helper.h -------------------------------------------------------------------------------- /src/lib/db_mysql/sqlstatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/sqlstatement.h -------------------------------------------------------------------------------- /src/lib/db_mysql/write_entity_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_mysql/write_entity_helper.h -------------------------------------------------------------------------------- /src/lib/db_redis/ClassDiagram.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/lib/db_redis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_redis/Makefile -------------------------------------------------------------------------------- /src/lib/db_redis/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_redis/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/db_redis/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_redis/common.cpp -------------------------------------------------------------------------------- /src/lib/db_redis/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_redis/common.h -------------------------------------------------------------------------------- /src/lib/db_redis/db_interface_redis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_redis/db_interface_redis.cpp -------------------------------------------------------------------------------- /src/lib/db_redis/db_interface_redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_redis/db_interface_redis.h -------------------------------------------------------------------------------- /src/lib/db_redis/db_redis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_redis/db_redis.vcxproj -------------------------------------------------------------------------------- /src/lib/db_redis/db_redis.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/db_redis/db_redis.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/CHANGES -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/LICENSE -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/Makefile.in -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/Makefile.win -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/NOTICE -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/README -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/README.cmake -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/aprutil.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/aprutil.dep -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/aprutil.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/aprutil.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/aprutil.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/aprutil.dsw -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/aprutil.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/aprutil.mak -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/build.conf -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/build/dbd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/build/dbd.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/build/dbm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/build/dbm.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/build/dso.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/build/dso.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/buildconf -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/configure -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/configure.in -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/test/abts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/test/abts.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/test/abts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/test/abts.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr-util/test/dbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr-util/test/dbd.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/CHANGES -------------------------------------------------------------------------------- /src/lib/dependencies/apr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/dependencies/apr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/LICENSE -------------------------------------------------------------------------------- /src/lib/dependencies/apr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/apr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/Makefile.in -------------------------------------------------------------------------------- /src/lib/dependencies/apr/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/Makefile.win -------------------------------------------------------------------------------- /src/lib/dependencies/apr/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/NOTICE -------------------------------------------------------------------------------- /src/lib/dependencies/apr/NWGNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/NWGNUmakefile -------------------------------------------------------------------------------- /src/lib/dependencies/apr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/README -------------------------------------------------------------------------------- /src/lib/dependencies/apr/README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/README.cmake -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr-config.in -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr.dep -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr.dsw -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr.mak -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr.pc.in -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr.spec -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr.vcproj -------------------------------------------------------------------------------- /src/lib/dependencies/apr/apr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/apr.vcxproj -------------------------------------------------------------------------------- /src/lib/dependencies/apr/atomic/unix/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/atomic/unix/ppc.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build-outputs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build-outputs.mk -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build.conf -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/MakeEtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/MakeEtags -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/PrintPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/PrintPath -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/aplibtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/aplibtool.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/aprapp.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/aprapp.dep -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/aprapp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/aprapp.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/aprapp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/aprapp.mak -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/config.sub -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/cvtdsp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/cvtdsp.pl -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/find_apr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/find_apr.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/install.sh -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/jlibtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/jlibtool.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/libtool.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/lineends.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/lineends.pl -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/ltmain.sh -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/ltsugar.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/mkdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/mkdir.sh -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/nw_ver.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/nw_ver.awk -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/pkg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/pkg/README -------------------------------------------------------------------------------- /src/lib/dependencies/apr/build/run-gcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/build/run-gcov.sh -------------------------------------------------------------------------------- /src/lib/dependencies/apr/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/buildconf -------------------------------------------------------------------------------- /src/lib/dependencies/apr/config.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/config.layout -------------------------------------------------------------------------------- /src/lib/dependencies/apr/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/configure -------------------------------------------------------------------------------- /src/lib/dependencies/apr/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/configure.in -------------------------------------------------------------------------------- /src/lib/dependencies/apr/docs/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/docs/doxygen.conf -------------------------------------------------------------------------------- /src/lib/dependencies/apr/dso/aix/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/dso/aix/dso.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/dso/beos/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/dso/beos/dso.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/dso/netware/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/dso/netware/dso.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/dso/os2/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/dso/os2/dso.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/dso/os390/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/dso/os390/dso.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/dso/unix/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/dso/unix/dso.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/dso/win32/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/dso/win32/dso.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/emacs-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/emacs-mode -------------------------------------------------------------------------------- /src/lib/dependencies/apr/file_io/os2/copy.c: -------------------------------------------------------------------------------- 1 | #include "../unix/copy.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/file_io/os2/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/file_io/os2/dir.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/file_io/os2/filepath_util.c: -------------------------------------------------------------------------------- 1 | #include "../unix/filepath_util.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/file_io/os2/fullrw.c: -------------------------------------------------------------------------------- 1 | #include "../unix/fullrw.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/file_io/os2/mktemp.c: -------------------------------------------------------------------------------- 1 | #include "../unix/mktemp.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/file_io/os2/tempdir.c: -------------------------------------------------------------------------------- 1 | #include "../unix/tempdir.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/include/apr.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/include/apr.h.in -------------------------------------------------------------------------------- /src/lib/dependencies/apr/include/apr.hnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/include/apr.hnw -------------------------------------------------------------------------------- /src/lib/dependencies/apr/include/apr.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/include/apr.hw -------------------------------------------------------------------------------- /src/lib/dependencies/apr/include/apr.hwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/include/apr.hwc -------------------------------------------------------------------------------- /src/lib/dependencies/apr/include/apr_dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/include/apr_dso.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/include/apr_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/include/apr_env.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/include/apr_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/include/apr_lib.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/include/apr_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/include/apr_shm.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/kbe_changes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/kbe_changes.log -------------------------------------------------------------------------------- /src/lib/dependencies/apr/libapr.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/libapr.dep -------------------------------------------------------------------------------- /src/lib/dependencies/apr/libapr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/libapr.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/apr/libapr.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/libapr.mak -------------------------------------------------------------------------------- /src/lib/dependencies/apr/libapr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/libapr.rc -------------------------------------------------------------------------------- /src/lib/dependencies/apr/misc/unix/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/misc/unix/env.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/misc/unix/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/misc/unix/rand.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/misc/unix/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/misc/unix/start.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/misc/win32/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/misc/win32/env.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/misc/win32/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/misc/win32/misc.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/misc/win32/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/misc/win32/rand.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/misc/win32/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/misc/win32/utf8.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/mmap/unix/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/mmap/unix/mmap.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/mmap/win32/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/mmap/win32/mmap.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/network_io/os2/inet_ntop.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_ntop.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/network_io/os2/inet_pton.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_pton.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/network_io/os2/sockaddr.c: -------------------------------------------------------------------------------- 1 | #include "../unix/sockaddr.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/network_io/os2/socket_util.c: -------------------------------------------------------------------------------- 1 | #include "../unix/socket_util.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/poll/os2/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/poll/os2/poll.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/poll/unix/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/poll/unix/epoll.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/poll/unix/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/poll/unix/poll.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/poll/unix/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/poll/unix/port.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/shmem/beos/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/shmem/beos/shm.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/shmem/os2/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/shmem/os2/shm.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/shmem/unix/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/shmem/unix/shm.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/shmem/win32/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/shmem/win32/shm.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/tables/apr_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/tables/apr_hash.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/Makefile.in -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/Makefile.win -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/NWGNUaprtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/NWGNUaprtest -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/NWGNUechod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/NWGNUechod -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/NWGNUtryread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/NWGNUtryread -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/README -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/abts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/abts.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/abts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/abts.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/abts_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/abts_tests.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/data/mmap_datafile.txt: -------------------------------------------------------------------------------- 1 | This is the MMAP data file. 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/echod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/echod.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/mod_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/mod_test.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/nw_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/nw_misc.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/occhild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/occhild.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/proc_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/proc_child.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/readchild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/readchild.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/sendfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/sendfile.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/sockchild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/sockchild.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/sockperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/sockperf.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testall.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testall.dsw -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testapp.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testargs.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testatomic.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testcond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testcond.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testdir.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testdll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testdll.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testdso.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testdup.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testenv.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testescape.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testfile.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testflock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testflock.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testflock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testflock.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testfmt.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testhash.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testipsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testipsub.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testlfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testlfs.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testlib.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testlock.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testmmap.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testnames.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testoc.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testpath.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testpipe.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testpoll.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testpools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testpools.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testproc.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testrand.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testshm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testshm.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testshm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testshm.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testsleep.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testsock.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testsock.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/teststr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/teststr.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testtable.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testtemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testtemp.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testthread.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testtime.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testud.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testuser.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testutil.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testutil.h -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/testvsn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/testvsn.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/test/tryread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/test/tryread.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/threadproc/os2/signals.c: -------------------------------------------------------------------------------- 1 | #include "../unix/signals.c" 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/apr/time/unix/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/time/unix/time.c -------------------------------------------------------------------------------- /src/lib/dependencies/apr/time/win32/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/apr/time/win32/time.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/CMake.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/CMake.README -------------------------------------------------------------------------------- /src/lib/dependencies/expat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/dependencies/expat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/COPYING -------------------------------------------------------------------------------- /src/lib/dependencies/expat/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/Changes -------------------------------------------------------------------------------- /src/lib/dependencies/expat/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/MANIFEST -------------------------------------------------------------------------------- /src/lib/dependencies/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/expat/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/Makefile.in -------------------------------------------------------------------------------- /src/lib/dependencies/expat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/README -------------------------------------------------------------------------------- /src/lib/dependencies/expat/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/aclocal.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/expat/amiga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/amiga/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/expat/amiga/expat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/amiga/expat.xml -------------------------------------------------------------------------------- /src/lib/dependencies/expat/amiga/launch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/amiga/launch.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/README.txt -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/expat.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/expat.bpf -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/expat.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/expat.bpr -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/expat.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/expat.mak -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/expatw.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/expatw.bpf -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/expatw.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/expatw.bpr -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/expatw.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/expatw.mak -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/setup.bat -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/xmlwf.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/xmlwf.bpf -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/xmlwf.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/xmlwf.bpr -------------------------------------------------------------------------------- /src/lib/dependencies/expat/bcb5/xmlwf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/bcb5/xmlwf.mak -------------------------------------------------------------------------------- /src/lib/dependencies/expat/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/configure -------------------------------------------------------------------------------- /src/lib/dependencies/expat/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/configure.in -------------------------------------------------------------------------------- /src/lib/dependencies/expat/doc/expat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/doc/expat.png -------------------------------------------------------------------------------- /src/lib/dependencies/expat/doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/doc/style.css -------------------------------------------------------------------------------- /src/lib/dependencies/expat/doc/xmlwf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/doc/xmlwf.1 -------------------------------------------------------------------------------- /src/lib/dependencies/expat/doc/xmlwf.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/doc/xmlwf.sgml -------------------------------------------------------------------------------- /src/lib/dependencies/expat/expat.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/expat.dsw -------------------------------------------------------------------------------- /src/lib/dependencies/expat/expat.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/expat.pc.in -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/ascii.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/asciitab.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/expat.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/expat.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/expat.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/expatw.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/expatw.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/iasciitab.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/internal.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/latin1tab.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/macconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/macconfig.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/nametab.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/utf8tab.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/winconfig.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/xmlparse.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/xmlrole.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/xmlrole.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/xmltok.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/xmltok.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/lib/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/lib/xmltok_ns.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/m4/libtool.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/expat/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/m4/ltoptions.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/expat/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/m4/ltsugar.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/expat/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/m4/ltversion.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/expat/vms/README.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/vms/README.vms -------------------------------------------------------------------------------- /src/lib/dependencies/expat/vms/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/vms/descrip.mms -------------------------------------------------------------------------------- /src/lib/dependencies/expat/win32/expat.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/win32/expat.iss -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/ct.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/filemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/filemap.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/xmlfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/xmlfile.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/xmlfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/xmlfile.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/xmlmime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/xmlmime.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/xmlmime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/xmlmime.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/xmlurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/xmlurl.h -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/xmlwf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/xmlwf.c -------------------------------------------------------------------------------- /src/lib/dependencies/expat/xmlwf/xmlwf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/expat/xmlwf/xmlwf.dsp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/AABox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/AABox.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/Box.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/Crypto.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/AABox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/AABox.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Array.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Box.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Crypto.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/GCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/GCamera.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Line.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Matrix3.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Plane.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Quat.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Quat.inl -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Ray.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Sphere.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/System.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Table.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Vector2.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Vector3.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/Vector4.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/debug.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/format.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/G3D/g3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/G3D/g3dmath.h -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/Matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/Matrix3.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/Plane.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/System.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/Triangle.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/Vector3.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/Vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/Vector4.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/format.cpp -------------------------------------------------------------------------------- /src/lib/dependencies/g3dlite/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/g3dlite/license.html -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/.gitignore -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/.travis.yml -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/CHANGELOG.md -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/COPYING -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/README.md -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/adapters/qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/adapters/qt.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/async.c -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/async.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/dict.c -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/dict.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/fmacros.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/hiredis.c -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/hiredis.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/net.c -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/net.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/read.c -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/read.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/sds.c -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/sds.h -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/test.c -------------------------------------------------------------------------------- /src/lib/dependencies/hiredis/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/hiredis/win32.h -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/COPYING -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/ChangeLog -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/INSTALL -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/Makefile.in -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/README -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/VERSION -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/autogen.sh -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/bin/pprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/bin/pprof -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/config.guess -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/config.sub -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/configure -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/configure.ac -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/coverage.sh -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/install-sh -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/arena.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/atomic.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/base.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/chunk.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/extent.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/hash.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/huge.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/mb.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/test/unit/prof_accum_a.c: -------------------------------------------------------------------------------- 1 | #include "prof_accum.h" 2 | 3 | alloc_n_gen(0) 4 | -------------------------------------------------------------------------------- /src/lib/dependencies/jemalloc/test/unit/prof_accum_b.c: -------------------------------------------------------------------------------- 1 | #include "prof_accum.h" 2 | 3 | alloc_n_gen(1) 4 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/INSTALL -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/KEYS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/KEYS -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/LICENSE -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/NOTICE -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/aclocal.m4 -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/autogen.sh -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/build.xml -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/config.sub -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/configure -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/depcomp -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/install-sh -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/ltmain.sh -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/missing -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/log4cxx/pom.xml -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/customLevel.3: -------------------------------------------------------------------------------- 1 | TRACE xml.CustomLevelTestCase - Message 5 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/hierarchyThreshold.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/hierarchyThreshold.2: -------------------------------------------------------------------------------- 1 | FATAL HierarchyThresholdTestCase = m5 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test1.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test1.3: -------------------------------------------------------------------------------- 1 | TimeBasedRollingTest - Hello---4 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test2.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test2.3: -------------------------------------------------------------------------------- 1 | TimeBasedRollingTest - Hello---4 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test3.3: -------------------------------------------------------------------------------- 1 | TimeBasedRollingTest - Hello---4 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test4.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test4.3: -------------------------------------------------------------------------------- 1 | TimeBasedRollingTest - Hello---4 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test5.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test5.3: -------------------------------------------------------------------------------- 1 | TimeBasedRollingTest - Hello---4 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/log4cxx/src/test/resources/witness/rolling/tbr-test6.3: -------------------------------------------------------------------------------- 1 | TimeBasedRollingTest - Hello---4 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/mysql/mysql/raid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/mysql/mysql/raid.h -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/CHANGES -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/Configure -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/FAQ -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/INSTALL -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/INSTALL.NW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/INSTALL.NW -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/LICENSE -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/MacOS/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/MacOS/TODO -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/NEWS -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/PROBLEMS -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/README -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/VMS/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/VMS/TODO -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/VMS/socketshr_shr.opt: -------------------------------------------------------------------------------- 1 | socketshr/share 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/VMS/ucx_shr_decc_log.opt: -------------------------------------------------------------------------------- 1 | ucx$ipc_shr/share 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/CA.pl -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/CA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/CA.sh -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/ca.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/crl.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/dh.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/dsa.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/ec.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/enc.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/md4.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/req.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/apps/rsa.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/bugs/MS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/bugs/MS -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/bugs/SSLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/bugs/SSLv3 -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/config -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/demos/pkcs12/README: -------------------------------------------------------------------------------- 1 | PKCS#12 demo applications 2 | 3 | Written by Steve Henson. 4 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/doc/README -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/e_os.h -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/e_os2.h -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ms/.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ms/.rnd -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ms/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ms/README -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ms/certCA.srl: -------------------------------------------------------------------------------- 1 | 1D 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ms/cmp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ms/cmp.pl -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ms/keyU.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ms/keyU.ss -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ms/mw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ms/mw.bat -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ms/reqU.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ms/reqU.ss -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/shlib/README: -------------------------------------------------------------------------------- 1 | Only the windows NT and, linux builds have been tested for SSLeay 0.8.0 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ssl/kssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ssl/kssl.c -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ssl/kssl.h -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ssl/ssl.h -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ssl/ssl2.h -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ssl/ssl3.h -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/ssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/ssl/tls1.h -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/test/VMSca-response.1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/test/VMSca-response.2: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/test/tcrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/test/tcrl -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/test/times: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/test/times -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/test/treq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/test/treq -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/test/trsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/test/trsa -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/test/tsid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/test/tsid -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/test/tx509: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/test/tx509 -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/times/L1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/times/L1 -------------------------------------------------------------------------------- /src/lib/dependencies/openssl/util/domd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/openssl/util/domd -------------------------------------------------------------------------------- /src/lib/dependencies/protobuf-2.6.1/python/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/protobuf-2.6.1/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/protobuf-2.6.1/python/google/protobuf/pyext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/dependencies/sigar/win32/peb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/sigar/win32/peb.c -------------------------------------------------------------------------------- /src/lib/dependencies/tinyxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/tinyxml/Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/tinyxml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/tinyxml/readme.txt -------------------------------------------------------------------------------- /src/lib/dependencies/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/tinyxml/tinystr.h -------------------------------------------------------------------------------- /src/lib/dependencies/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /src/lib/dependencies/tinyxml/~Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/tinyxml/~Makefile -------------------------------------------------------------------------------- /src/lib/dependencies/utf8cpp/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/utf8cpp/utf8.h -------------------------------------------------------------------------------- /src/lib/dependencies/vld/vld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/vld/vld.h -------------------------------------------------------------------------------- /src/lib/dependencies/vld/vld_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/vld/vld_def.h -------------------------------------------------------------------------------- /src/lib/dependencies/vld/vld_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/vld/vld_x64.lib -------------------------------------------------------------------------------- /src/lib/dependencies/vld/vld_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/dependencies/vld/vld_x86.lib -------------------------------------------------------------------------------- /src/lib/entity_table_mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/entity_table_mysql.cpp -------------------------------------------------------------------------------- /src/lib/entity_table_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/entity_table_mysql.h -------------------------------------------------------------------------------- /src/lib/entity_table_mysql.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/entity_table_mysql.inl -------------------------------------------------------------------------------- /src/lib/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/message.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/service.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/text_format.h -------------------------------------------------------------------------------- /src/lib/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /src/lib/helper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/Makefile -------------------------------------------------------------------------------- /src/lib/helper/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/helper/console_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/console_helper.h -------------------------------------------------------------------------------- /src/lib/helper/crashhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/crashhandler.cpp -------------------------------------------------------------------------------- /src/lib/helper/crashhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/crashhandler.h -------------------------------------------------------------------------------- /src/lib/helper/debug_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/debug_helper.cpp -------------------------------------------------------------------------------- /src/lib/helper/debug_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/debug_helper.h -------------------------------------------------------------------------------- /src/lib/helper/debug_option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/debug_option.cpp -------------------------------------------------------------------------------- /src/lib/helper/debug_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/debug_option.h -------------------------------------------------------------------------------- /src/lib/helper/eventhistory_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/eventhistory_stats.cpp -------------------------------------------------------------------------------- /src/lib/helper/eventhistory_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/eventhistory_stats.h -------------------------------------------------------------------------------- /src/lib/helper/helper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/helper.vcxproj -------------------------------------------------------------------------------- /src/lib/helper/helper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/helper.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/helper/memory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/memory_helper.h -------------------------------------------------------------------------------- /src/lib/helper/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/profile.h -------------------------------------------------------------------------------- /src/lib/helper/profile.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/profile.inl -------------------------------------------------------------------------------- /src/lib/helper/profile_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/profile_handler.h -------------------------------------------------------------------------------- /src/lib/helper/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/profiler.h -------------------------------------------------------------------------------- /src/lib/helper/profiler.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/profiler.inl -------------------------------------------------------------------------------- /src/lib/helper/script_loglevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/script_loglevel.h -------------------------------------------------------------------------------- /src/lib/helper/sys_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/sys_info.cpp -------------------------------------------------------------------------------- /src/lib/helper/sys_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/sys_info.h -------------------------------------------------------------------------------- /src/lib/helper/sys_info.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/sys_info.inl -------------------------------------------------------------------------------- /src/lib/helper/watch_pools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/watch_pools.cpp -------------------------------------------------------------------------------- /src/lib/helper/watch_pools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/watch_pools.h -------------------------------------------------------------------------------- /src/lib/helper/watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/watcher.cpp -------------------------------------------------------------------------------- /src/lib/helper/watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/helper/watcher.h -------------------------------------------------------------------------------- /src/lib/math/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/math/Makefile -------------------------------------------------------------------------------- /src/lib/math/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/math/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/math/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/math/math.cpp -------------------------------------------------------------------------------- /src/lib/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/math/math.h -------------------------------------------------------------------------------- /src/lib/math/math.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/math/math.vcxproj -------------------------------------------------------------------------------- /src/lib/math/math.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/math/math.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/network/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/Makefile -------------------------------------------------------------------------------- /src/lib/network/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/address.cpp -------------------------------------------------------------------------------- /src/lib/network/address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/address.h -------------------------------------------------------------------------------- /src/lib/network/bundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/bundle.cpp -------------------------------------------------------------------------------- /src/lib/network/bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/bundle.h -------------------------------------------------------------------------------- /src/lib/network/bundle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/bundle.inl -------------------------------------------------------------------------------- /src/lib/network/bundle_broadcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/bundle_broadcast.cpp -------------------------------------------------------------------------------- /src/lib/network/bundle_broadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/bundle_broadcast.h -------------------------------------------------------------------------------- /src/lib/network/bundle_broadcast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/bundle_broadcast.inl -------------------------------------------------------------------------------- /src/lib/network/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/channel.cpp -------------------------------------------------------------------------------- /src/lib/network/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/channel.h -------------------------------------------------------------------------------- /src/lib/network/channel.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/channel.inl -------------------------------------------------------------------------------- /src/lib/network/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/common.cpp -------------------------------------------------------------------------------- /src/lib/network/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/common.h -------------------------------------------------------------------------------- /src/lib/network/delayed_channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/delayed_channels.cpp -------------------------------------------------------------------------------- /src/lib/network/delayed_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/delayed_channels.h -------------------------------------------------------------------------------- /src/lib/network/encryption_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/encryption_filter.cpp -------------------------------------------------------------------------------- /src/lib/network/encryption_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/encryption_filter.h -------------------------------------------------------------------------------- /src/lib/network/endpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/endpoint.cpp -------------------------------------------------------------------------------- /src/lib/network/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/endpoint.h -------------------------------------------------------------------------------- /src/lib/network/endpoint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/endpoint.inl -------------------------------------------------------------------------------- /src/lib/network/error_reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/error_reporter.cpp -------------------------------------------------------------------------------- /src/lib/network/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/error_reporter.h -------------------------------------------------------------------------------- /src/lib/network/error_reporter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/error_reporter.inl -------------------------------------------------------------------------------- /src/lib/network/event_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/event_dispatcher.cpp -------------------------------------------------------------------------------- /src/lib/network/event_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/event_dispatcher.h -------------------------------------------------------------------------------- /src/lib/network/event_dispatcher.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/event_dispatcher.inl -------------------------------------------------------------------------------- /src/lib/network/event_poller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/event_poller.cpp -------------------------------------------------------------------------------- /src/lib/network/event_poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/event_poller.h -------------------------------------------------------------------------------- /src/lib/network/fixed_messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/fixed_messages.cpp -------------------------------------------------------------------------------- /src/lib/network/fixed_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/fixed_messages.h -------------------------------------------------------------------------------- /src/lib/network/http_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/http_utility.h -------------------------------------------------------------------------------- /src/lib/network/interface_defs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/interface_defs.cpp -------------------------------------------------------------------------------- /src/lib/network/interface_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/interface_defs.h -------------------------------------------------------------------------------- /src/lib/network/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/interfaces.h -------------------------------------------------------------------------------- /src/lib/network/listener_receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/listener_receiver.cpp -------------------------------------------------------------------------------- /src/lib/network/listener_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/listener_receiver.h -------------------------------------------------------------------------------- /src/lib/network/listener_receiver.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/listener_receiver.inl -------------------------------------------------------------------------------- /src/lib/network/message_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/message_handler.cpp -------------------------------------------------------------------------------- /src/lib/network/message_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/message_handler.h -------------------------------------------------------------------------------- /src/lib/network/network.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/network.vcxproj -------------------------------------------------------------------------------- /src/lib/network/network.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/network.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/network/network_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/network_exception.h -------------------------------------------------------------------------------- /src/lib/network/network_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/network_interface.cpp -------------------------------------------------------------------------------- /src/lib/network/network_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/network_interface.h -------------------------------------------------------------------------------- /src/lib/network/network_interface.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/network_interface.inl -------------------------------------------------------------------------------- /src/lib/network/network_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/network_stats.cpp -------------------------------------------------------------------------------- /src/lib/network/network_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/network_stats.h -------------------------------------------------------------------------------- /src/lib/network/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet.h -------------------------------------------------------------------------------- /src/lib/network/packet_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_filter.cpp -------------------------------------------------------------------------------- /src/lib/network/packet_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_filter.h -------------------------------------------------------------------------------- /src/lib/network/packet_filter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_filter.inl -------------------------------------------------------------------------------- /src/lib/network/packet_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_reader.cpp -------------------------------------------------------------------------------- /src/lib/network/packet_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_reader.h -------------------------------------------------------------------------------- /src/lib/network/packet_receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_receiver.cpp -------------------------------------------------------------------------------- /src/lib/network/packet_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_receiver.h -------------------------------------------------------------------------------- /src/lib/network/packet_receiver.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_receiver.inl -------------------------------------------------------------------------------- /src/lib/network/packet_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_sender.cpp -------------------------------------------------------------------------------- /src/lib/network/packet_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_sender.h -------------------------------------------------------------------------------- /src/lib/network/packet_sender.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/packet_sender.inl -------------------------------------------------------------------------------- /src/lib/network/poller_epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/poller_epoll.cpp -------------------------------------------------------------------------------- /src/lib/network/poller_epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/poller_epoll.h -------------------------------------------------------------------------------- /src/lib/network/poller_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/poller_select.cpp -------------------------------------------------------------------------------- /src/lib/network/poller_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/poller_select.h -------------------------------------------------------------------------------- /src/lib/network/tcp_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet.cpp -------------------------------------------------------------------------------- /src/lib/network/tcp_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet.h -------------------------------------------------------------------------------- /src/lib/network/tcp_packet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet.inl -------------------------------------------------------------------------------- /src/lib/network/tcp_packet_receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet_receiver.cpp -------------------------------------------------------------------------------- /src/lib/network/tcp_packet_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet_receiver.h -------------------------------------------------------------------------------- /src/lib/network/tcp_packet_receiver.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet_receiver.inl -------------------------------------------------------------------------------- /src/lib/network/tcp_packet_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet_sender.cpp -------------------------------------------------------------------------------- /src/lib/network/tcp_packet_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet_sender.h -------------------------------------------------------------------------------- /src/lib/network/tcp_packet_sender.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/tcp_packet_sender.inl -------------------------------------------------------------------------------- /src/lib/network/udp_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/udp_packet.cpp -------------------------------------------------------------------------------- /src/lib/network/udp_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/udp_packet.h -------------------------------------------------------------------------------- /src/lib/network/udp_packet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/udp_packet.inl -------------------------------------------------------------------------------- /src/lib/network/udp_packet_receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/udp_packet_receiver.cpp -------------------------------------------------------------------------------- /src/lib/network/udp_packet_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/udp_packet_receiver.h -------------------------------------------------------------------------------- /src/lib/network/udp_packet_receiver.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/udp_packet_receiver.inl -------------------------------------------------------------------------------- /src/lib/network/websocket_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/websocket_protocol.cpp -------------------------------------------------------------------------------- /src/lib/network/websocket_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/network/websocket_protocol.h -------------------------------------------------------------------------------- /src/lib/proto/basedb.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/basedb.pb.cc -------------------------------------------------------------------------------- /src/lib/proto/basedb.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/basedb.pb.h -------------------------------------------------------------------------------- /src/lib/proto/bmb.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/bmb.pb.cc -------------------------------------------------------------------------------- /src/lib/proto/bmb.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/bmb.pb.h -------------------------------------------------------------------------------- /src/lib/proto/cb.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/cb.pb.cc -------------------------------------------------------------------------------- /src/lib/proto/cb.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/cb.pb.h -------------------------------------------------------------------------------- /src/lib/proto/celldb.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/celldb.pb.cc -------------------------------------------------------------------------------- /src/lib/proto/celldb.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/celldb.pb.h -------------------------------------------------------------------------------- /src/lib/proto/cl.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/cl.pb.cc -------------------------------------------------------------------------------- /src/lib/proto/cl.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/cl.pb.h -------------------------------------------------------------------------------- /src/lib/proto/coms.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/coms.pb.cc -------------------------------------------------------------------------------- /src/lib/proto/coms.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/coms.pb.h -------------------------------------------------------------------------------- /src/lib/proto/lbm.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/lbm.pb.cc -------------------------------------------------------------------------------- /src/lib/proto/lbm.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/lbm.pb.h -------------------------------------------------------------------------------- /src/lib/proto/ldb.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/ldb.pb.cc -------------------------------------------------------------------------------- /src/lib/proto/ldb.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/proto/ldb.pb.h -------------------------------------------------------------------------------- /src/lib/resmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/resmgr/Makefile -------------------------------------------------------------------------------- /src/lib/resmgr/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/resmgr/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/resmgr/resmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/resmgr/resmgr.cpp -------------------------------------------------------------------------------- /src/lib/resmgr/resmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/resmgr/resmgr.h -------------------------------------------------------------------------------- /src/lib/resmgr/resmgr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/resmgr/resmgr.vcxproj -------------------------------------------------------------------------------- /src/lib/resmgr/resmgr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/resmgr/resmgr.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/resmgr/resourceobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/resmgr/resourceobject.cpp -------------------------------------------------------------------------------- /src/lib/resmgr/resourceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/resmgr/resourceobject.h -------------------------------------------------------------------------------- /src/lib/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/Makefile -------------------------------------------------------------------------------- /src/lib/server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/server/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/common.cpp -------------------------------------------------------------------------------- /src/lib/server/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/common.h -------------------------------------------------------------------------------- /src/lib/server/components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/components.cpp -------------------------------------------------------------------------------- /src/lib/server/components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/components.h -------------------------------------------------------------------------------- /src/lib/server/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/entities.h -------------------------------------------------------------------------------- /src/lib/server/entity_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/entity_app.cpp -------------------------------------------------------------------------------- /src/lib/server/entity_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/entity_app.h -------------------------------------------------------------------------------- /src/lib/server/entity_garbages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/entity_garbages.h -------------------------------------------------------------------------------- /src/lib/server/forward_messagebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/forward_messagebuffer.h -------------------------------------------------------------------------------- /src/lib/server/globaldata_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/globaldata_server.cpp -------------------------------------------------------------------------------- /src/lib/server/globaldata_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/globaldata_server.h -------------------------------------------------------------------------------- /src/lib/server/idallocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/idallocate.cpp -------------------------------------------------------------------------------- /src/lib/server/idallocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/idallocate.h -------------------------------------------------------------------------------- /src/lib/server/kbemain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/kbemain.h -------------------------------------------------------------------------------- /src/lib/server/machine_infos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/machine_infos.cpp -------------------------------------------------------------------------------- /src/lib/server/machine_infos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/machine_infos.h -------------------------------------------------------------------------------- /src/lib/server/pendingLoginmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/pendingLoginmgr.cpp -------------------------------------------------------------------------------- /src/lib/server/pendingLoginmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/pendingLoginmgr.h -------------------------------------------------------------------------------- /src/lib/server/script_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/script_timers.h -------------------------------------------------------------------------------- /src/lib/server/sendmail_threadtasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/sendmail_threadtasks.h -------------------------------------------------------------------------------- /src/lib/server/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/server.vcxproj -------------------------------------------------------------------------------- /src/lib/server/server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/server.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/server/server.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/server.vcxproj.user -------------------------------------------------------------------------------- /src/lib/server/server_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/server_errors.h -------------------------------------------------------------------------------- /src/lib/server/serverapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/serverapp.cpp -------------------------------------------------------------------------------- /src/lib/server/serverapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/serverapp.h -------------------------------------------------------------------------------- /src/lib/server/serverconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/serverconfig.cpp -------------------------------------------------------------------------------- /src/lib/server/serverconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/serverconfig.h -------------------------------------------------------------------------------- /src/lib/server/serverconfig.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/serverconfig.inl -------------------------------------------------------------------------------- /src/lib/server/shutdown_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/shutdown_handler.h -------------------------------------------------------------------------------- /src/lib/server/shutdowner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/shutdowner.cpp -------------------------------------------------------------------------------- /src/lib/server/shutdowner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/shutdowner.h -------------------------------------------------------------------------------- /src/lib/server/signal_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/signal_handler.cpp -------------------------------------------------------------------------------- /src/lib/server/signal_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/server/signal_handler.h -------------------------------------------------------------------------------- /src/lib/thread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/Makefile -------------------------------------------------------------------------------- /src/lib/thread/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/thread/concurrency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/concurrency.cpp -------------------------------------------------------------------------------- /src/lib/thread/concurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/concurrency.h -------------------------------------------------------------------------------- /src/lib/thread/thread.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/thread.vcxproj -------------------------------------------------------------------------------- /src/lib/thread/thread.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/thread.vcxproj.filters -------------------------------------------------------------------------------- /src/lib/thread/threadguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/threadguard.h -------------------------------------------------------------------------------- /src/lib/thread/threadmutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/threadmutex.h -------------------------------------------------------------------------------- /src/lib/thread/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/threadpool.cpp -------------------------------------------------------------------------------- /src/lib/thread/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/threadpool.h -------------------------------------------------------------------------------- /src/lib/thread/threadpool.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/threadpool.inl -------------------------------------------------------------------------------- /src/lib/thread/threadtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/thread/threadtask.h -------------------------------------------------------------------------------- /src/lib/xml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/xml/Makefile -------------------------------------------------------------------------------- /src/lib/xml/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/xml/ReadMe.txt -------------------------------------------------------------------------------- /src/lib/xml/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/xml/xml.cpp -------------------------------------------------------------------------------- /src/lib/xml/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/xml/xml.h -------------------------------------------------------------------------------- /src/lib/xml/xml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/xml/xml.vcxproj -------------------------------------------------------------------------------- /src/lib/xml/xml.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/lib/xml/xml.vcxproj.filters -------------------------------------------------------------------------------- /src/libs/libmysql.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/libs/libmysql.lib -------------------------------------------------------------------------------- /src/libs/libmysql_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/libs/libmysql_d.lib -------------------------------------------------------------------------------- /src/libs/mysqlclient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/libs/mysqlclient.lib -------------------------------------------------------------------------------- /src/libs/mysqlclient_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/libs/mysqlclient_d.lib -------------------------------------------------------------------------------- /src/minikbe_vs140.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/minikbe_vs140.sln -------------------------------------------------------------------------------- /src/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/Makefile -------------------------------------------------------------------------------- /src/server/baseapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/Makefile -------------------------------------------------------------------------------- /src/server/baseapp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/ReadMe.txt -------------------------------------------------------------------------------- /src/server/baseapp/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/base.cpp -------------------------------------------------------------------------------- /src/server/baseapp/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/base.h -------------------------------------------------------------------------------- /src/server/baseapp/base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/base.inl -------------------------------------------------------------------------------- /src/server/baseapp/baseapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/baseapp.cpp -------------------------------------------------------------------------------- /src/server/baseapp/baseapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/baseapp.h -------------------------------------------------------------------------------- /src/server/baseapp/baseapp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/baseapp.vcxproj -------------------------------------------------------------------------------- /src/server/baseapp/baseapp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/baseapp.vcxproj.user -------------------------------------------------------------------------------- /src/server/baseapp/baseapp_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/baseapp_interface.h -------------------------------------------------------------------------------- /src/server/baseapp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/main.cpp -------------------------------------------------------------------------------- /src/server/baseapp/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/proxy.cpp -------------------------------------------------------------------------------- /src/server/baseapp/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/proxy.h -------------------------------------------------------------------------------- /src/server/baseapp/proxy.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/proxy.inl -------------------------------------------------------------------------------- /src/server/baseapp/proxy_forwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/proxy_forwarder.cpp -------------------------------------------------------------------------------- /src/server/baseapp/proxy_forwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/baseapp/proxy_forwarder.h -------------------------------------------------------------------------------- /src/server/basemgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/Makefile -------------------------------------------------------------------------------- /src/server/basemgr/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/ReadMe.txt -------------------------------------------------------------------------------- /src/server/basemgr/baseapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/baseapp.cpp -------------------------------------------------------------------------------- /src/server/basemgr/baseapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/baseapp.h -------------------------------------------------------------------------------- /src/server/basemgr/basemgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/basemgr.cpp -------------------------------------------------------------------------------- /src/server/basemgr/basemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/basemgr.h -------------------------------------------------------------------------------- /src/server/basemgr/basemgr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/basemgr.vcxproj -------------------------------------------------------------------------------- /src/server/basemgr/basemgr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/basemgr.vcxproj.user -------------------------------------------------------------------------------- /src/server/basemgr/basemgr_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/basemgr_interface.h -------------------------------------------------------------------------------- /src/server/basemgr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/basemgr/main.cpp -------------------------------------------------------------------------------- /src/server/cellapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellapp/Makefile -------------------------------------------------------------------------------- /src/server/cellapp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellapp/ReadMe.txt -------------------------------------------------------------------------------- /src/server/cellapp/cellapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellapp/cellapp.cpp -------------------------------------------------------------------------------- /src/server/cellapp/cellapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellapp/cellapp.h -------------------------------------------------------------------------------- /src/server/cellapp/cellapp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellapp/cellapp.vcxproj -------------------------------------------------------------------------------- /src/server/cellapp/cellapp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellapp/cellapp.vcxproj.user -------------------------------------------------------------------------------- /src/server/cellapp/cellapp_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellapp/cellapp_interface.h -------------------------------------------------------------------------------- /src/server/cellapp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellapp/main.cpp -------------------------------------------------------------------------------- /src/server/cellmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellmgr/Makefile -------------------------------------------------------------------------------- /src/server/cellmgr/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellmgr/ReadMe.txt -------------------------------------------------------------------------------- /src/server/cellmgr/cellmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellmgr/cellmgr.cpp -------------------------------------------------------------------------------- /src/server/cellmgr/cellmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellmgr/cellmgr.h -------------------------------------------------------------------------------- /src/server/cellmgr/cellmgr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellmgr/cellmgr.vcxproj -------------------------------------------------------------------------------- /src/server/cellmgr/cellmgr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellmgr/cellmgr.vcxproj.user -------------------------------------------------------------------------------- /src/server/cellmgr/cellmgr_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellmgr/cellmgr_interface.h -------------------------------------------------------------------------------- /src/server/cellmgr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/cellmgr/main.cpp -------------------------------------------------------------------------------- /src/server/dbmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/Makefile -------------------------------------------------------------------------------- /src/server/dbmgr/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/ReadMe.txt -------------------------------------------------------------------------------- /src/server/dbmgr/buffered_dbtasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/buffered_dbtasks.cpp -------------------------------------------------------------------------------- /src/server/dbmgr/buffered_dbtasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/buffered_dbtasks.h -------------------------------------------------------------------------------- /src/server/dbmgr/dbTalbeModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbTalbeModule.cpp -------------------------------------------------------------------------------- /src/server/dbmgr/dbTalbeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbTalbeModule.h -------------------------------------------------------------------------------- /src/server/dbmgr/dbmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbmgr.cpp -------------------------------------------------------------------------------- /src/server/dbmgr/dbmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbmgr.h -------------------------------------------------------------------------------- /src/server/dbmgr/dbmgr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbmgr.vcxproj -------------------------------------------------------------------------------- /src/server/dbmgr/dbmgr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbmgr.vcxproj.filters -------------------------------------------------------------------------------- /src/server/dbmgr/dbmgr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbmgr.vcxproj.user -------------------------------------------------------------------------------- /src/server/dbmgr/dbmgr_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbmgr_interface.cpp -------------------------------------------------------------------------------- /src/server/dbmgr/dbmgr_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbmgr_interface.h -------------------------------------------------------------------------------- /src/server/dbmgr/dbtasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbtasks.cpp -------------------------------------------------------------------------------- /src/server/dbmgr/dbtasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/dbtasks.h -------------------------------------------------------------------------------- /src/server/dbmgr/interfaces_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/interfaces_handler.cpp -------------------------------------------------------------------------------- /src/server/dbmgr/interfaces_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/interfaces_handler.h -------------------------------------------------------------------------------- /src/server/dbmgr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/dbmgr/main.cpp -------------------------------------------------------------------------------- /src/server/logger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/Makefile -------------------------------------------------------------------------------- /src/server/logger/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/ReadMe.txt -------------------------------------------------------------------------------- /src/server/logger/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/logger.cpp -------------------------------------------------------------------------------- /src/server/logger/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/logger.h -------------------------------------------------------------------------------- /src/server/logger/logger.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/logger.vcxproj -------------------------------------------------------------------------------- /src/server/logger/logger.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/logger.vcxproj.user -------------------------------------------------------------------------------- /src/server/logger/logger_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/logger_interface.cpp -------------------------------------------------------------------------------- /src/server/logger/logger_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/logger_interface.h -------------------------------------------------------------------------------- /src/server/logger/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/logger/main.cpp -------------------------------------------------------------------------------- /src/server/login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/Makefile -------------------------------------------------------------------------------- /src/server/login/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/ReadMe.txt -------------------------------------------------------------------------------- /src/server/login/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/login.cpp -------------------------------------------------------------------------------- /src/server/login/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/login.h -------------------------------------------------------------------------------- /src/server/login/login.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/login.vcxproj -------------------------------------------------------------------------------- /src/server/login/login.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/login.vcxproj.filters -------------------------------------------------------------------------------- /src/server/login/login.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/login.vcxproj.user -------------------------------------------------------------------------------- /src/server/login/login_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/login_interface.cpp -------------------------------------------------------------------------------- /src/server/login/login_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/login_interface.h -------------------------------------------------------------------------------- /src/server/login/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/src/server/login/main.cpp -------------------------------------------------------------------------------- /tools/proto/basedb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/basedb.proto -------------------------------------------------------------------------------- /tools/proto/bmb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/bmb.proto -------------------------------------------------------------------------------- /tools/proto/cb.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/cb.pb -------------------------------------------------------------------------------- /tools/proto/cb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/cb.proto -------------------------------------------------------------------------------- /tools/proto/celldb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/celldb.proto -------------------------------------------------------------------------------- /tools/proto/cl.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/cl.pb -------------------------------------------------------------------------------- /tools/proto/cl.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/cl.proto -------------------------------------------------------------------------------- /tools/proto/coms.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/coms.proto -------------------------------------------------------------------------------- /tools/proto/lbm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/lbm.proto -------------------------------------------------------------------------------- /tools/proto/ldb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/ldb.proto -------------------------------------------------------------------------------- /tools/proto/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/protoc.exe -------------------------------------------------------------------------------- /tools/proto/生成pbc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/生成pbc.bat -------------------------------------------------------------------------------- /tools/proto/生成协议.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirLegend/mini-kbe/HEAD/tools/proto/生成协议.bat --------------------------------------------------------------------------------