├── .gitignore ├── .gitmodules ├── .shipit ├── AUTHORS ├── COPYING ├── ChangeLog ├── Doxyfile ├── HACKING ├── LICENSE ├── Makefile.am ├── NEWS ├── README ├── TODO ├── TODO.moxi ├── agent.h ├── agent_config.c ├── agent_ping.c ├── agent_stats.c ├── assoc.c ├── assoc.h ├── cJSON.c ├── cJSON.h ├── cache.c ├── cache.h ├── check_moxi.c ├── check_moxi_agent.c ├── check_util.c ├── check_work.c ├── config ├── autorun.sh ├── config.rpath └── version.pl ├── config_static.h ├── configure.ac ├── cproxy.c ├── cproxy.h ├── cproxy_config.c ├── cproxy_front.c ├── cproxy_multiget.c ├── cproxy_protocol_a.c ├── cproxy_protocol_a2a.c ├── cproxy_protocol_a2b.c ├── cproxy_protocol_b.c ├── cproxy_protocol_b2b.c ├── cproxy_stats.c ├── daemon.c ├── debian ├── changelog.in ├── compat ├── control ├── copyright ├── dirs ├── docs ├── moxi.default ├── moxi.examples ├── moxi.init └── rules ├── devtools ├── bench_noreply.pl ├── clean-whitespace.pl └── svn-tarballs.pl ├── doc ├── CONTRIBUTORS ├── Doxyfile ├── Makefile.am ├── building-moxi-packages.txt ├── memory_management.txt ├── moxi.1 ├── moxi │ └── configuration.org ├── protocol.txt ├── readme.txt ├── threads.txt └── xml2rfc │ ├── reference.RFC.0768.xml │ ├── rfc2629-noinc.xsl │ ├── rfc2629-other.ent │ ├── rfc2629-refchk.xsl │ ├── rfc2629-xhtml.ent │ └── rfc2629.dtd ├── genhash.c ├── genhash.h ├── genhash_int.h ├── globals.c ├── hash.c ├── hash.h ├── htgram.c ├── htgram.h ├── htgram_test.c ├── items.c ├── items.h ├── log.c ├── log.h ├── m4 ├── ac_cxx_compile_stdcxx_0x.m4 ├── ac_cxx_header_stdcxx_98.m4 ├── acx_pthread.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 ├── pandora_64bit.m4 ├── pandora_canonical.m4 ├── pandora_check_compiler_version.m4 ├── pandora_check_cxx_standard.m4 ├── pandora_enable_dtrace.m4 ├── pandora_ensure_gcc_version.m4 ├── pandora_extensions.m4 ├── pandora_have_better_malloc.m4 ├── pandora_have_innodb.m4 ├── pandora_have_libconflate.m4 ├── pandora_have_libdrizzle.m4 ├── pandora_have_libevent.m4 ├── pandora_have_libgearman.m4 ├── pandora_have_libhashkit.m4 ├── pandora_have_libmemcached.m4 ├── pandora_have_libpq.m4 ├── pandora_have_libsqlite3.m4 ├── pandora_have_libvbucket.m4 ├── pandora_have_protobuf.m4 ├── pandora_header_assert.m4 ├── pandora_libtool.m4 ├── pandora_optimize.m4 ├── pandora_platform.m4 ├── pandora_plugins.m4 ├── pandora_print_callstack.m4 ├── pandora_pthread.m4 ├── pandora_python3_devel.m4 ├── pandora_sasl.m4 ├── pandora_shared_ptr.m4 ├── pandora_swig.m4 ├── pandora_use_pipe.m4 ├── pandora_vc_build.m4 ├── pandora_warnings.m4 ├── pandora_with_lua.m4 ├── pandora_with_memcached.m4 ├── pandora_with_perl.m4 ├── pandora_with_php.m4 ├── pandora_with_python.m4 ├── pandora_with_python3.m4 ├── pandora_with_r.m4 ├── pandora_with_ruby.m4 └── pkg.m4 ├── matcher.c ├── matcher.h ├── mcs.c ├── mcs.h ├── memcached.c ├── memcached.h ├── memcached.spec.in ├── murmur_hash.c ├── protocol_binary.h ├── redirects.c ├── redirects.h ├── scripts ├── examples │ ├── moxi.conf.direct │ └── moxi.conf.service ├── memcached-init ├── memcached-tool ├── memcached.sysv ├── moxi-init.rhat.in ├── rpm │ ├── build-fc-rpm │ └── moxi.spec.in └── start-memcached ├── sizes.c ├── slabs.c ├── slabs.h ├── solaris_priv.c ├── stats.c ├── stats.h ├── stdin_check.c ├── stdin_check.h ├── t ├── 00-startup.t ├── 64bit.t ├── binary-get.t ├── binary.t ├── bogus-commands.t ├── cas.t ├── daemonize.t ├── dash-M.t ├── expirations.t ├── flags.t ├── flush-all.t ├── getset.t ├── incrdecr.t ├── issue_14.t ├── issue_22.t ├── issue_29.t ├── issue_41.t ├── issue_42.t ├── issue_50.t ├── issue_61.t ├── issue_70.t ├── lib │ └── MemcachedTest.pm ├── line-lengths.t ├── lru.t ├── maxconns.t ├── mc_bin_client.py ├── memcacheConstants.py ├── moxi.pl ├── moxi_all.pl ├── moxi_mock.cfg ├── moxi_mock.pl ├── moxi_mock_a2a.py ├── moxi_mock_a2b.py ├── moxi_mock_auth.py ├── moxi_mock_b2b.py ├── moxi_mock_server.py ├── moxi_multitenancy.py ├── moxi_multitenancy_default.py ├── moxi_multitenancy_rest.cfg ├── moxi_multitenancy_rest_default.cfg ├── moxi_one.pl ├── multiversioning.t ├── noreply.t ├── rest_mock.rb ├── slab-reassign.t ├── stats-detail.t ├── stats.t ├── stress-memcached.pl ├── udp.t ├── unixsocket.t ├── vbucket1.cfg ├── vbucket2.cfg ├── vbucket_rest1.cfg ├── vbucket_rest2.cfg └── whitespace.t ├── testapp.c ├── thread.c ├── timedrun.c ├── trace.h ├── util.c ├── util.h ├── version.sh ├── win32 └── win32.h ├── work.c └── work.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.shipit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/.shipit -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/Doxyfile -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | http://www.danga.com/memcached/news.bml 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/TODO -------------------------------------------------------------------------------- /TODO.moxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/TODO.moxi -------------------------------------------------------------------------------- /agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/agent.h -------------------------------------------------------------------------------- /agent_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/agent_config.c -------------------------------------------------------------------------------- /agent_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/agent_ping.c -------------------------------------------------------------------------------- /agent_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/agent_stats.c -------------------------------------------------------------------------------- /assoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/assoc.c -------------------------------------------------------------------------------- /assoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/assoc.h -------------------------------------------------------------------------------- /cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cJSON.c -------------------------------------------------------------------------------- /cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cJSON.h -------------------------------------------------------------------------------- /cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cache.c -------------------------------------------------------------------------------- /cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cache.h -------------------------------------------------------------------------------- /check_moxi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/check_moxi.c -------------------------------------------------------------------------------- /check_moxi_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/check_moxi_agent.c -------------------------------------------------------------------------------- /check_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/check_util.c -------------------------------------------------------------------------------- /check_work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/check_work.c -------------------------------------------------------------------------------- /config/autorun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/config/autorun.sh -------------------------------------------------------------------------------- /config/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/config/config.rpath -------------------------------------------------------------------------------- /config/version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/config/version.pl -------------------------------------------------------------------------------- /config_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/config_static.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/configure.ac -------------------------------------------------------------------------------- /cproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy.c -------------------------------------------------------------------------------- /cproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy.h -------------------------------------------------------------------------------- /cproxy_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_config.c -------------------------------------------------------------------------------- /cproxy_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_front.c -------------------------------------------------------------------------------- /cproxy_multiget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_multiget.c -------------------------------------------------------------------------------- /cproxy_protocol_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_protocol_a.c -------------------------------------------------------------------------------- /cproxy_protocol_a2a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_protocol_a2a.c -------------------------------------------------------------------------------- /cproxy_protocol_a2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_protocol_a2b.c -------------------------------------------------------------------------------- /cproxy_protocol_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_protocol_b.c -------------------------------------------------------------------------------- /cproxy_protocol_b2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_protocol_b2b.c -------------------------------------------------------------------------------- /cproxy_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/cproxy_stats.c -------------------------------------------------------------------------------- /daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/daemon.c -------------------------------------------------------------------------------- /debian/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/debian/changelog.in -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | AUTHORS 3 | COPYING 4 | doc/CONTRIBUTORS 5 | scripts/examples/ 6 | -------------------------------------------------------------------------------- /debian/moxi.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/debian/moxi.default -------------------------------------------------------------------------------- /debian/moxi.examples: -------------------------------------------------------------------------------- 1 | scripts/examples/* 2 | -------------------------------------------------------------------------------- /debian/moxi.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/debian/moxi.init -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/debian/rules -------------------------------------------------------------------------------- /devtools/bench_noreply.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/devtools/bench_noreply.pl -------------------------------------------------------------------------------- /devtools/clean-whitespace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/devtools/clean-whitespace.pl -------------------------------------------------------------------------------- /devtools/svn-tarballs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/devtools/svn-tarballs.pl -------------------------------------------------------------------------------- /doc/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/CONTRIBUTORS -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = moxi.1 2 | 3 | EXTRA_DIST = *.txt 4 | 5 | BUILT_SOURCES= 6 | -------------------------------------------------------------------------------- /doc/building-moxi-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/building-moxi-packages.txt -------------------------------------------------------------------------------- /doc/memory_management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/memory_management.txt -------------------------------------------------------------------------------- /doc/moxi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/moxi.1 -------------------------------------------------------------------------------- /doc/moxi/configuration.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/moxi/configuration.org -------------------------------------------------------------------------------- /doc/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/protocol.txt -------------------------------------------------------------------------------- /doc/readme.txt: -------------------------------------------------------------------------------- 1 | To build the documentation you need xml2rfc ( http://xml.resource.org/ ). 2 | -------------------------------------------------------------------------------- /doc/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/threads.txt -------------------------------------------------------------------------------- /doc/xml2rfc/reference.RFC.0768.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/xml2rfc/reference.RFC.0768.xml -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629-noinc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/xml2rfc/rfc2629-noinc.xsl -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629-other.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/xml2rfc/rfc2629-other.ent -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629-refchk.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/xml2rfc/rfc2629-refchk.xsl -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629-xhtml.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/xml2rfc/rfc2629-xhtml.ent -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/doc/xml2rfc/rfc2629.dtd -------------------------------------------------------------------------------- /genhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/genhash.c -------------------------------------------------------------------------------- /genhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/genhash.h -------------------------------------------------------------------------------- /genhash_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/genhash_int.h -------------------------------------------------------------------------------- /globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/globals.c -------------------------------------------------------------------------------- /hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/hash.c -------------------------------------------------------------------------------- /hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/hash.h -------------------------------------------------------------------------------- /htgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/htgram.c -------------------------------------------------------------------------------- /htgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/htgram.h -------------------------------------------------------------------------------- /htgram_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/htgram_test.c -------------------------------------------------------------------------------- /items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/items.c -------------------------------------------------------------------------------- /items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/items.h -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/log.h -------------------------------------------------------------------------------- /m4/ac_cxx_compile_stdcxx_0x.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/ac_cxx_compile_stdcxx_0x.m4 -------------------------------------------------------------------------------- /m4/ac_cxx_header_stdcxx_98.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/ac_cxx_header_stdcxx_98.m4 -------------------------------------------------------------------------------- /m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/lib-ld.m4 -------------------------------------------------------------------------------- /m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/lib-link.m4 -------------------------------------------------------------------------------- /m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /m4/pandora_64bit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_64bit.m4 -------------------------------------------------------------------------------- /m4/pandora_canonical.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_canonical.m4 -------------------------------------------------------------------------------- /m4/pandora_check_compiler_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_check_compiler_version.m4 -------------------------------------------------------------------------------- /m4/pandora_check_cxx_standard.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_check_cxx_standard.m4 -------------------------------------------------------------------------------- /m4/pandora_enable_dtrace.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_enable_dtrace.m4 -------------------------------------------------------------------------------- /m4/pandora_ensure_gcc_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_ensure_gcc_version.m4 -------------------------------------------------------------------------------- /m4/pandora_extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_extensions.m4 -------------------------------------------------------------------------------- /m4/pandora_have_better_malloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_better_malloc.m4 -------------------------------------------------------------------------------- /m4/pandora_have_innodb.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_innodb.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libconflate.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libconflate.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libdrizzle.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libdrizzle.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libevent.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libevent.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libgearman.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libgearman.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libhashkit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libhashkit.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libmemcached.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libmemcached.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libpq.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libpq.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libsqlite3.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libsqlite3.m4 -------------------------------------------------------------------------------- /m4/pandora_have_libvbucket.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_libvbucket.m4 -------------------------------------------------------------------------------- /m4/pandora_have_protobuf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_have_protobuf.m4 -------------------------------------------------------------------------------- /m4/pandora_header_assert.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_header_assert.m4 -------------------------------------------------------------------------------- /m4/pandora_libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_libtool.m4 -------------------------------------------------------------------------------- /m4/pandora_optimize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_optimize.m4 -------------------------------------------------------------------------------- /m4/pandora_platform.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_platform.m4 -------------------------------------------------------------------------------- /m4/pandora_plugins.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_plugins.m4 -------------------------------------------------------------------------------- /m4/pandora_print_callstack.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_print_callstack.m4 -------------------------------------------------------------------------------- /m4/pandora_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_pthread.m4 -------------------------------------------------------------------------------- /m4/pandora_python3_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_python3_devel.m4 -------------------------------------------------------------------------------- /m4/pandora_sasl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_sasl.m4 -------------------------------------------------------------------------------- /m4/pandora_shared_ptr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_shared_ptr.m4 -------------------------------------------------------------------------------- /m4/pandora_swig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_swig.m4 -------------------------------------------------------------------------------- /m4/pandora_use_pipe.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_use_pipe.m4 -------------------------------------------------------------------------------- /m4/pandora_vc_build.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_vc_build.m4 -------------------------------------------------------------------------------- /m4/pandora_warnings.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_warnings.m4 -------------------------------------------------------------------------------- /m4/pandora_with_lua.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_with_lua.m4 -------------------------------------------------------------------------------- /m4/pandora_with_memcached.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_with_memcached.m4 -------------------------------------------------------------------------------- /m4/pandora_with_perl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_with_perl.m4 -------------------------------------------------------------------------------- /m4/pandora_with_php.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_with_php.m4 -------------------------------------------------------------------------------- /m4/pandora_with_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_with_python.m4 -------------------------------------------------------------------------------- /m4/pandora_with_python3.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_with_python3.m4 -------------------------------------------------------------------------------- /m4/pandora_with_r.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_with_r.m4 -------------------------------------------------------------------------------- /m4/pandora_with_ruby.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pandora_with_ruby.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /matcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/matcher.c -------------------------------------------------------------------------------- /matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/matcher.h -------------------------------------------------------------------------------- /mcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/mcs.c -------------------------------------------------------------------------------- /mcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/mcs.h -------------------------------------------------------------------------------- /memcached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/memcached.c -------------------------------------------------------------------------------- /memcached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/memcached.h -------------------------------------------------------------------------------- /memcached.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/memcached.spec.in -------------------------------------------------------------------------------- /murmur_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/murmur_hash.c -------------------------------------------------------------------------------- /protocol_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/protocol_binary.h -------------------------------------------------------------------------------- /redirects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/redirects.c -------------------------------------------------------------------------------- /redirects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/redirects.h -------------------------------------------------------------------------------- /scripts/examples/moxi.conf.direct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/examples/moxi.conf.direct -------------------------------------------------------------------------------- /scripts/examples/moxi.conf.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/examples/moxi.conf.service -------------------------------------------------------------------------------- /scripts/memcached-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/memcached-init -------------------------------------------------------------------------------- /scripts/memcached-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/memcached-tool -------------------------------------------------------------------------------- /scripts/memcached.sysv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/memcached.sysv -------------------------------------------------------------------------------- /scripts/moxi-init.rhat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/moxi-init.rhat.in -------------------------------------------------------------------------------- /scripts/rpm/build-fc-rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/rpm/build-fc-rpm -------------------------------------------------------------------------------- /scripts/rpm/moxi.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/rpm/moxi.spec.in -------------------------------------------------------------------------------- /scripts/start-memcached: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/scripts/start-memcached -------------------------------------------------------------------------------- /sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/sizes.c -------------------------------------------------------------------------------- /slabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/slabs.c -------------------------------------------------------------------------------- /slabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/slabs.h -------------------------------------------------------------------------------- /solaris_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/solaris_priv.c -------------------------------------------------------------------------------- /stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/stats.c -------------------------------------------------------------------------------- /stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/stats.h -------------------------------------------------------------------------------- /stdin_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/stdin_check.c -------------------------------------------------------------------------------- /stdin_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/stdin_check.h -------------------------------------------------------------------------------- /t/00-startup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/00-startup.t -------------------------------------------------------------------------------- /t/64bit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/64bit.t -------------------------------------------------------------------------------- /t/binary-get.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/binary-get.t -------------------------------------------------------------------------------- /t/binary.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/binary.t -------------------------------------------------------------------------------- /t/bogus-commands.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/bogus-commands.t -------------------------------------------------------------------------------- /t/cas.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/cas.t -------------------------------------------------------------------------------- /t/daemonize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/daemonize.t -------------------------------------------------------------------------------- /t/dash-M.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/dash-M.t -------------------------------------------------------------------------------- /t/expirations.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/expirations.t -------------------------------------------------------------------------------- /t/flags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/flags.t -------------------------------------------------------------------------------- /t/flush-all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/flush-all.t -------------------------------------------------------------------------------- /t/getset.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/getset.t -------------------------------------------------------------------------------- /t/incrdecr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/incrdecr.t -------------------------------------------------------------------------------- /t/issue_14.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/issue_14.t -------------------------------------------------------------------------------- /t/issue_22.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/issue_22.t -------------------------------------------------------------------------------- /t/issue_29.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/issue_29.t -------------------------------------------------------------------------------- /t/issue_41.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/issue_41.t -------------------------------------------------------------------------------- /t/issue_42.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/issue_42.t -------------------------------------------------------------------------------- /t/issue_50.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/issue_50.t -------------------------------------------------------------------------------- /t/issue_61.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/issue_61.t -------------------------------------------------------------------------------- /t/issue_70.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/issue_70.t -------------------------------------------------------------------------------- /t/lib/MemcachedTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/lib/MemcachedTest.pm -------------------------------------------------------------------------------- /t/line-lengths.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/line-lengths.t -------------------------------------------------------------------------------- /t/lru.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/lru.t -------------------------------------------------------------------------------- /t/maxconns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/maxconns.t -------------------------------------------------------------------------------- /t/mc_bin_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/mc_bin_client.py -------------------------------------------------------------------------------- /t/memcacheConstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/memcacheConstants.py -------------------------------------------------------------------------------- /t/moxi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi.pl -------------------------------------------------------------------------------- /t/moxi_all.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_all.pl -------------------------------------------------------------------------------- /t/moxi_mock.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_mock.cfg -------------------------------------------------------------------------------- /t/moxi_mock.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_mock.pl -------------------------------------------------------------------------------- /t/moxi_mock_a2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_mock_a2a.py -------------------------------------------------------------------------------- /t/moxi_mock_a2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_mock_a2b.py -------------------------------------------------------------------------------- /t/moxi_mock_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_mock_auth.py -------------------------------------------------------------------------------- /t/moxi_mock_b2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_mock_b2b.py -------------------------------------------------------------------------------- /t/moxi_mock_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_mock_server.py -------------------------------------------------------------------------------- /t/moxi_multitenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_multitenancy.py -------------------------------------------------------------------------------- /t/moxi_multitenancy_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_multitenancy_default.py -------------------------------------------------------------------------------- /t/moxi_multitenancy_rest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_multitenancy_rest.cfg -------------------------------------------------------------------------------- /t/moxi_multitenancy_rest_default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_multitenancy_rest_default.cfg -------------------------------------------------------------------------------- /t/moxi_one.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/moxi_one.pl -------------------------------------------------------------------------------- /t/multiversioning.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/multiversioning.t -------------------------------------------------------------------------------- /t/noreply.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/noreply.t -------------------------------------------------------------------------------- /t/rest_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/rest_mock.rb -------------------------------------------------------------------------------- /t/slab-reassign.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/slab-reassign.t -------------------------------------------------------------------------------- /t/stats-detail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/stats-detail.t -------------------------------------------------------------------------------- /t/stats.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/stats.t -------------------------------------------------------------------------------- /t/stress-memcached.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/stress-memcached.pl -------------------------------------------------------------------------------- /t/udp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/udp.t -------------------------------------------------------------------------------- /t/unixsocket.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/unixsocket.t -------------------------------------------------------------------------------- /t/vbucket1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/vbucket1.cfg -------------------------------------------------------------------------------- /t/vbucket2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/vbucket2.cfg -------------------------------------------------------------------------------- /t/vbucket_rest1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/vbucket_rest1.cfg -------------------------------------------------------------------------------- /t/vbucket_rest2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/vbucket_rest2.cfg -------------------------------------------------------------------------------- /t/whitespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/t/whitespace.t -------------------------------------------------------------------------------- /testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/testapp.c -------------------------------------------------------------------------------- /thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/thread.c -------------------------------------------------------------------------------- /timedrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/timedrun.c -------------------------------------------------------------------------------- /trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/trace.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/util.h -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/version.sh -------------------------------------------------------------------------------- /win32/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/win32/win32.h -------------------------------------------------------------------------------- /work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/work.c -------------------------------------------------------------------------------- /work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveyen/moxi/HEAD/work.h --------------------------------------------------------------------------------