├── AUTHORS ├── COPYING ├── Makefile ├── README ├── README.ru ├── bin └── .placeholder ├── debian ├── Makefile.inc ├── changelog ├── compat ├── control ├── copyright ├── package.mk ├── phantom.copyright └── rules ├── deps └── .placeholder ├── examples ├── io_benchmark_method_stream_proto_http.conf └── io_stream_proto_http_handler_static.conf ├── lib └── phantom │ └── .placeholder ├── opts.mk ├── pd ├── Makefile.inc ├── base │ ├── alloc.C │ ├── assert.C │ ├── assert.H │ ├── cmp.H │ ├── cond.C │ ├── cond.H │ ├── config.C │ ├── config.H │ ├── config_block.H │ ├── config_enum.H │ ├── config_helper.H │ ├── config_list.H │ ├── config_named_list.H │ ├── config_record.H │ ├── config_struct.H │ ├── config_switch.H │ ├── config_syntax.C │ ├── config_syntax.H │ ├── defs.H │ ├── exception.C │ ├── exception.H │ ├── fbind.H │ ├── fd.H │ ├── fd_guard.H │ ├── fd_tcp.C │ ├── fd_tcp.H │ ├── frac.H │ ├── futex.I │ ├── in.C │ ├── in.H │ ├── in_buf.C │ ├── in_buf.H │ ├── in_fd.C │ ├── in_fd.H │ ├── in_str.C │ ├── in_str.H │ ├── integer.C │ ├── ipv4.C │ ├── ipv4.H │ ├── ipv6.C │ ├── ipv6.H │ ├── job.C │ ├── job.H │ ├── list.H │ ├── list2.H │ ├── lock_guard.H │ ├── log.C │ ├── log.H │ ├── log_file.C │ ├── log_file.H │ ├── mutex.C │ ├── mutex.H │ ├── netaddr.C │ ├── netaddr.H │ ├── netaddr_ipv4.C │ ├── netaddr_ipv4.H │ ├── netaddr_ipv6.C │ ├── netaddr_ipv6.H │ ├── netaddr_local.C │ ├── netaddr_local.H │ ├── op.H │ ├── opt.H │ ├── out.C │ ├── out.H │ ├── out_fd.C │ ├── out_fd.H │ ├── queue.H │ ├── random.C │ ├── random.H │ ├── ref.H │ ├── size.C │ ├── size.H │ ├── spinlock.H │ ├── stat.C │ ├── stat.H │ ├── stat_ctx.C │ ├── stat_ctx.H │ ├── stat_items.H │ ├── str.C │ ├── str.H │ ├── string.C │ ├── string.H │ ├── string_file.C │ ├── string_file.H │ ├── thr.C │ ├── thr.H │ ├── time.C │ ├── time.H │ ├── trace.C │ ├── trace.H │ ├── uint128.H │ └── vtempl.H ├── bq │ ├── bq_cond.C │ ├── bq_cond.H │ ├── bq_conn.C │ ├── bq_conn.H │ ├── bq_conn_fd.C │ ├── bq_conn_fd.H │ ├── bq_cont.C │ ├── bq_cont.H │ ├── bq_cont_supp.S │ ├── bq_err.H │ ├── bq_heap.C │ ├── bq_heap.H │ ├── bq_in.C │ ├── bq_in.H │ ├── bq_job.C │ ├── bq_job.H │ ├── bq_mutex.C │ ├── bq_mutex.H │ ├── bq_out.C │ ├── bq_out.H │ ├── bq_poll.H │ ├── bq_spec.H │ ├── bq_thr.C │ ├── bq_thr.H │ ├── bq_thr_impl.C │ ├── bq_thr_impl.I │ ├── bq_util.C │ └── bq_util.H ├── debug │ ├── addrinfo_bfd.C │ └── addrinfo_bfd.H ├── fixinclude │ ├── errno.h │ └── pthread.h ├── http │ ├── client.C │ ├── client.H │ ├── code.C │ ├── entity.C │ ├── exception.C │ ├── header.C │ ├── http.H │ ├── limits.C │ ├── limits_config.H │ ├── server.C │ ├── server.H │ └── time.C ├── library.mk ├── pi │ ├── enum.C │ ├── exception.C │ ├── map.C │ ├── parse.C │ ├── pi.C │ ├── pi.H │ ├── pi_pro.C │ ├── pi_pro.H │ ├── print.C │ ├── replace.C │ ├── vector.H │ └── verify.C └── ssl │ ├── bq_conn_ssl.C │ ├── bq_conn_ssl.H │ ├── log.I │ ├── ssl.C │ └── ssl.H ├── phantom ├── Makefile.inc ├── arena.C ├── arena.H ├── debug │ └── debug.C ├── io.C ├── io.H ├── io_benchmark │ ├── io_benchmark.C │ ├── mcount.C │ ├── mcount.H │ ├── method.H │ ├── method_stream │ │ ├── ipv4 │ │ │ └── method_stream_ipv4.C │ │ ├── ipv6 │ │ │ └── method_stream_ipv6.C │ │ ├── local │ │ │ └── method_stream_local.C │ │ ├── logger.C │ │ ├── logger.H │ │ ├── logger_brief.C │ │ ├── logger_default.C │ │ ├── method_stream.C │ │ ├── method_stream.H │ │ ├── proto.H │ │ ├── proto_http │ │ │ └── proto_http.C │ │ ├── proto_none │ │ │ └── proto_none.C │ │ ├── source.H │ │ ├── source_log │ │ │ └── source_log.C │ │ ├── source_random │ │ │ └── source_random.C │ │ ├── transport.C │ │ ├── transport.H │ │ └── transport_ssl │ │ │ └── transport_ssl.C │ ├── times.C │ └── times.H ├── io_client │ ├── io_client.C │ ├── ipv4 │ │ └── link_ipv4.C │ ├── ipv6 │ │ └── link_ipv6.C │ ├── link.C │ ├── link.H │ ├── local │ │ └── link_local.C │ ├── proto.C │ ├── proto.H │ ├── proto_fcgi │ │ ├── entry.C │ │ ├── entry.I │ │ ├── fcgi.C │ │ ├── fcgi.I │ │ ├── instance.C │ │ ├── instance.I │ │ ├── proto_fcgi.C │ │ ├── proto_fcgi.H │ │ └── task.I │ └── proto_none │ │ ├── entry.C │ │ ├── entry.I │ │ ├── instance.C │ │ ├── instance.I │ │ ├── proto_none.C │ │ ├── proto_none.H │ │ ├── task.C │ │ └── task.H ├── io_logger_file.C ├── io_logger_file.H ├── io_monitor │ └── io_monitor.C ├── io_stream │ ├── acl.C │ ├── acl.H │ ├── io_stream.C │ ├── io_stream.H │ ├── ipv4 │ │ ├── acl_ipv4.C │ │ └── io_stream_ipv4.C │ ├── ipv6 │ │ ├── acl_ipv6.C │ │ └── io_stream_ipv6.C │ ├── local │ │ └── io_stream_local.C │ ├── proto.H │ ├── proto_echo │ │ └── proto_echo.C │ ├── proto_http │ │ ├── handler.C │ │ ├── handler.H │ │ ├── handler_fcgi │ │ │ └── handler_fcgi.C │ │ ├── handler_monitor │ │ │ └── handler_monitor.C │ │ ├── handler_null │ │ │ └── handler_null.C │ │ ├── handler_proxy │ │ │ └── handler_proxy.C │ │ ├── handler_static │ │ │ ├── file_cache.C │ │ │ ├── file_cache.I │ │ │ ├── file_types.H │ │ │ ├── file_types_default.C │ │ │ ├── file_types_list.C │ │ │ ├── handler_static.C │ │ │ └── path_translation.H │ │ ├── logger.H │ │ ├── logger_default.C │ │ ├── path.C │ │ ├── path.H │ │ └── proto_http.C │ ├── proto_monitor │ │ └── proto_monitor.C │ ├── transport.H │ └── transport_ssl │ │ └── transport_ssl.C ├── jemalloc │ ├── jemalloc.c.diff │ ├── jemalloc_.C │ ├── malloc_arena.h │ └── rb.h ├── logger.H ├── logger_file.C ├── logger_stderr.C ├── module.C ├── module.H ├── module.mk ├── obj.C ├── obj.H ├── pd.H ├── phantom.C ├── scheduler.C ├── scheduler.H ├── scheduler_combined.C ├── scheduler_simple.C ├── setup.H ├── setup_caps.C ├── setup_daemon.C ├── setup_module.C ├── shared.H ├── shared_logger_file.C ├── shared_logger_file.H ├── ssl │ ├── auth.C │ ├── auth.H │ └── setup_ssl.C ├── stat.C └── stat.H └── test ├── Makefile.inc ├── base ├── cmp.C ├── cmp.pat ├── in.C ├── in.pat ├── in_segment.C ├── in_segment.pat ├── ipv6.C ├── ipv6.pat ├── outnum.C ├── outnum.pat ├── size.C ├── size.pat ├── str.C ├── str.pat ├── time.C └── time.pat ├── bq ├── align.C ├── align.pat ├── bq_spec.C ├── bq_spec.pat ├── bug_glibc_errno.C ├── bug_glibc_errno.pat ├── eh1.C ├── eh1.pat ├── eh2.C ├── eh2.pat ├── thr_name.I └── thr_signal.I ├── http ├── path.C └── path.pat ├── pi ├── build.C ├── build.pat ├── map.C ├── map.pat ├── parse.C ├── parse.pat ├── replace.C ├── replace.pat ├── supp.C_ ├── verify.C └── verify.pat └── test.mk /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | See README.ru 2 | -------------------------------------------------------------------------------- /README.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/README.ru -------------------------------------------------------------------------------- /bin/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/debian/Makefile.inc -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/debian/package.mk -------------------------------------------------------------------------------- /debian/phantom.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/debian/phantom.copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/debian/rules -------------------------------------------------------------------------------- /deps/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/io_benchmark_method_stream_proto_http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/examples/io_benchmark_method_stream_proto_http.conf -------------------------------------------------------------------------------- /examples/io_stream_proto_http_handler_static.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/examples/io_stream_proto_http_handler_static.conf -------------------------------------------------------------------------------- /lib/phantom/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/opts.mk -------------------------------------------------------------------------------- /pd/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/Makefile.inc -------------------------------------------------------------------------------- /pd/base/alloc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/alloc.C -------------------------------------------------------------------------------- /pd/base/assert.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/assert.C -------------------------------------------------------------------------------- /pd/base/assert.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/assert.H -------------------------------------------------------------------------------- /pd/base/cmp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/cmp.H -------------------------------------------------------------------------------- /pd/base/cond.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/cond.C -------------------------------------------------------------------------------- /pd/base/cond.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/cond.H -------------------------------------------------------------------------------- /pd/base/config.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config.C -------------------------------------------------------------------------------- /pd/base/config.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config.H -------------------------------------------------------------------------------- /pd/base/config_block.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_block.H -------------------------------------------------------------------------------- /pd/base/config_enum.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_enum.H -------------------------------------------------------------------------------- /pd/base/config_helper.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_helper.H -------------------------------------------------------------------------------- /pd/base/config_list.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_list.H -------------------------------------------------------------------------------- /pd/base/config_named_list.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_named_list.H -------------------------------------------------------------------------------- /pd/base/config_record.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_record.H -------------------------------------------------------------------------------- /pd/base/config_struct.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_struct.H -------------------------------------------------------------------------------- /pd/base/config_switch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_switch.H -------------------------------------------------------------------------------- /pd/base/config_syntax.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_syntax.C -------------------------------------------------------------------------------- /pd/base/config_syntax.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/config_syntax.H -------------------------------------------------------------------------------- /pd/base/defs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/defs.H -------------------------------------------------------------------------------- /pd/base/exception.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/exception.C -------------------------------------------------------------------------------- /pd/base/exception.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/exception.H -------------------------------------------------------------------------------- /pd/base/fbind.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/fbind.H -------------------------------------------------------------------------------- /pd/base/fd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/fd.H -------------------------------------------------------------------------------- /pd/base/fd_guard.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/fd_guard.H -------------------------------------------------------------------------------- /pd/base/fd_tcp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/fd_tcp.C -------------------------------------------------------------------------------- /pd/base/fd_tcp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/fd_tcp.H -------------------------------------------------------------------------------- /pd/base/frac.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/frac.H -------------------------------------------------------------------------------- /pd/base/futex.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/futex.I -------------------------------------------------------------------------------- /pd/base/in.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/in.C -------------------------------------------------------------------------------- /pd/base/in.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/in.H -------------------------------------------------------------------------------- /pd/base/in_buf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/in_buf.C -------------------------------------------------------------------------------- /pd/base/in_buf.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/in_buf.H -------------------------------------------------------------------------------- /pd/base/in_fd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/in_fd.C -------------------------------------------------------------------------------- /pd/base/in_fd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/in_fd.H -------------------------------------------------------------------------------- /pd/base/in_str.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/in_str.C -------------------------------------------------------------------------------- /pd/base/in_str.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/in_str.H -------------------------------------------------------------------------------- /pd/base/integer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/integer.C -------------------------------------------------------------------------------- /pd/base/ipv4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/ipv4.C -------------------------------------------------------------------------------- /pd/base/ipv4.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/ipv4.H -------------------------------------------------------------------------------- /pd/base/ipv6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/ipv6.C -------------------------------------------------------------------------------- /pd/base/ipv6.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/ipv6.H -------------------------------------------------------------------------------- /pd/base/job.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/job.C -------------------------------------------------------------------------------- /pd/base/job.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/job.H -------------------------------------------------------------------------------- /pd/base/list.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/list.H -------------------------------------------------------------------------------- /pd/base/list2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/list2.H -------------------------------------------------------------------------------- /pd/base/lock_guard.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/lock_guard.H -------------------------------------------------------------------------------- /pd/base/log.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/log.C -------------------------------------------------------------------------------- /pd/base/log.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/log.H -------------------------------------------------------------------------------- /pd/base/log_file.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/log_file.C -------------------------------------------------------------------------------- /pd/base/log_file.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/log_file.H -------------------------------------------------------------------------------- /pd/base/mutex.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/mutex.C -------------------------------------------------------------------------------- /pd/base/mutex.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/mutex.H -------------------------------------------------------------------------------- /pd/base/netaddr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/netaddr.C -------------------------------------------------------------------------------- /pd/base/netaddr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/netaddr.H -------------------------------------------------------------------------------- /pd/base/netaddr_ipv4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/netaddr_ipv4.C -------------------------------------------------------------------------------- /pd/base/netaddr_ipv4.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/netaddr_ipv4.H -------------------------------------------------------------------------------- /pd/base/netaddr_ipv6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/netaddr_ipv6.C -------------------------------------------------------------------------------- /pd/base/netaddr_ipv6.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/netaddr_ipv6.H -------------------------------------------------------------------------------- /pd/base/netaddr_local.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/netaddr_local.C -------------------------------------------------------------------------------- /pd/base/netaddr_local.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/netaddr_local.H -------------------------------------------------------------------------------- /pd/base/op.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/op.H -------------------------------------------------------------------------------- /pd/base/opt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/opt.H -------------------------------------------------------------------------------- /pd/base/out.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/out.C -------------------------------------------------------------------------------- /pd/base/out.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/out.H -------------------------------------------------------------------------------- /pd/base/out_fd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/out_fd.C -------------------------------------------------------------------------------- /pd/base/out_fd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/out_fd.H -------------------------------------------------------------------------------- /pd/base/queue.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/queue.H -------------------------------------------------------------------------------- /pd/base/random.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/random.C -------------------------------------------------------------------------------- /pd/base/random.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/random.H -------------------------------------------------------------------------------- /pd/base/ref.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/ref.H -------------------------------------------------------------------------------- /pd/base/size.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/size.C -------------------------------------------------------------------------------- /pd/base/size.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/size.H -------------------------------------------------------------------------------- /pd/base/spinlock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/spinlock.H -------------------------------------------------------------------------------- /pd/base/stat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/stat.C -------------------------------------------------------------------------------- /pd/base/stat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/stat.H -------------------------------------------------------------------------------- /pd/base/stat_ctx.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/stat_ctx.C -------------------------------------------------------------------------------- /pd/base/stat_ctx.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/stat_ctx.H -------------------------------------------------------------------------------- /pd/base/stat_items.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/stat_items.H -------------------------------------------------------------------------------- /pd/base/str.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/str.C -------------------------------------------------------------------------------- /pd/base/str.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/str.H -------------------------------------------------------------------------------- /pd/base/string.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/string.C -------------------------------------------------------------------------------- /pd/base/string.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/string.H -------------------------------------------------------------------------------- /pd/base/string_file.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/string_file.C -------------------------------------------------------------------------------- /pd/base/string_file.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/string_file.H -------------------------------------------------------------------------------- /pd/base/thr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/thr.C -------------------------------------------------------------------------------- /pd/base/thr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/thr.H -------------------------------------------------------------------------------- /pd/base/time.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/time.C -------------------------------------------------------------------------------- /pd/base/time.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/time.H -------------------------------------------------------------------------------- /pd/base/trace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/trace.C -------------------------------------------------------------------------------- /pd/base/trace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/trace.H -------------------------------------------------------------------------------- /pd/base/uint128.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/uint128.H -------------------------------------------------------------------------------- /pd/base/vtempl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/base/vtempl.H -------------------------------------------------------------------------------- /pd/bq/bq_cond.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_cond.C -------------------------------------------------------------------------------- /pd/bq/bq_cond.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_cond.H -------------------------------------------------------------------------------- /pd/bq/bq_conn.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_conn.C -------------------------------------------------------------------------------- /pd/bq/bq_conn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_conn.H -------------------------------------------------------------------------------- /pd/bq/bq_conn_fd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_conn_fd.C -------------------------------------------------------------------------------- /pd/bq/bq_conn_fd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_conn_fd.H -------------------------------------------------------------------------------- /pd/bq/bq_cont.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_cont.C -------------------------------------------------------------------------------- /pd/bq/bq_cont.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_cont.H -------------------------------------------------------------------------------- /pd/bq/bq_cont_supp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_cont_supp.S -------------------------------------------------------------------------------- /pd/bq/bq_err.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_err.H -------------------------------------------------------------------------------- /pd/bq/bq_heap.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_heap.C -------------------------------------------------------------------------------- /pd/bq/bq_heap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_heap.H -------------------------------------------------------------------------------- /pd/bq/bq_in.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_in.C -------------------------------------------------------------------------------- /pd/bq/bq_in.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_in.H -------------------------------------------------------------------------------- /pd/bq/bq_job.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_job.C -------------------------------------------------------------------------------- /pd/bq/bq_job.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_job.H -------------------------------------------------------------------------------- /pd/bq/bq_mutex.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_mutex.C -------------------------------------------------------------------------------- /pd/bq/bq_mutex.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_mutex.H -------------------------------------------------------------------------------- /pd/bq/bq_out.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_out.C -------------------------------------------------------------------------------- /pd/bq/bq_out.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_out.H -------------------------------------------------------------------------------- /pd/bq/bq_poll.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_poll.H -------------------------------------------------------------------------------- /pd/bq/bq_spec.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_spec.H -------------------------------------------------------------------------------- /pd/bq/bq_thr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_thr.C -------------------------------------------------------------------------------- /pd/bq/bq_thr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_thr.H -------------------------------------------------------------------------------- /pd/bq/bq_thr_impl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_thr_impl.C -------------------------------------------------------------------------------- /pd/bq/bq_thr_impl.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_thr_impl.I -------------------------------------------------------------------------------- /pd/bq/bq_util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_util.C -------------------------------------------------------------------------------- /pd/bq/bq_util.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/bq/bq_util.H -------------------------------------------------------------------------------- /pd/debug/addrinfo_bfd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/debug/addrinfo_bfd.C -------------------------------------------------------------------------------- /pd/debug/addrinfo_bfd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/debug/addrinfo_bfd.H -------------------------------------------------------------------------------- /pd/fixinclude/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/fixinclude/errno.h -------------------------------------------------------------------------------- /pd/fixinclude/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/fixinclude/pthread.h -------------------------------------------------------------------------------- /pd/http/client.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/client.C -------------------------------------------------------------------------------- /pd/http/client.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/client.H -------------------------------------------------------------------------------- /pd/http/code.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/code.C -------------------------------------------------------------------------------- /pd/http/entity.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/entity.C -------------------------------------------------------------------------------- /pd/http/exception.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/exception.C -------------------------------------------------------------------------------- /pd/http/header.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/header.C -------------------------------------------------------------------------------- /pd/http/http.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/http.H -------------------------------------------------------------------------------- /pd/http/limits.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/limits.C -------------------------------------------------------------------------------- /pd/http/limits_config.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/limits_config.H -------------------------------------------------------------------------------- /pd/http/server.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/server.C -------------------------------------------------------------------------------- /pd/http/server.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/server.H -------------------------------------------------------------------------------- /pd/http/time.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/http/time.C -------------------------------------------------------------------------------- /pd/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/library.mk -------------------------------------------------------------------------------- /pd/pi/enum.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/enum.C -------------------------------------------------------------------------------- /pd/pi/exception.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/exception.C -------------------------------------------------------------------------------- /pd/pi/map.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/map.C -------------------------------------------------------------------------------- /pd/pi/parse.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/parse.C -------------------------------------------------------------------------------- /pd/pi/pi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/pi.C -------------------------------------------------------------------------------- /pd/pi/pi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/pi.H -------------------------------------------------------------------------------- /pd/pi/pi_pro.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/pi_pro.C -------------------------------------------------------------------------------- /pd/pi/pi_pro.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/pi_pro.H -------------------------------------------------------------------------------- /pd/pi/print.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/print.C -------------------------------------------------------------------------------- /pd/pi/replace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/replace.C -------------------------------------------------------------------------------- /pd/pi/vector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/vector.H -------------------------------------------------------------------------------- /pd/pi/verify.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/pi/verify.C -------------------------------------------------------------------------------- /pd/ssl/bq_conn_ssl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/ssl/bq_conn_ssl.C -------------------------------------------------------------------------------- /pd/ssl/bq_conn_ssl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/ssl/bq_conn_ssl.H -------------------------------------------------------------------------------- /pd/ssl/log.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/ssl/log.I -------------------------------------------------------------------------------- /pd/ssl/ssl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/ssl/ssl.C -------------------------------------------------------------------------------- /pd/ssl/ssl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/pd/ssl/ssl.H -------------------------------------------------------------------------------- /phantom/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/Makefile.inc -------------------------------------------------------------------------------- /phantom/arena.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/arena.C -------------------------------------------------------------------------------- /phantom/arena.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/arena.H -------------------------------------------------------------------------------- /phantom/debug/debug.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/debug/debug.C -------------------------------------------------------------------------------- /phantom/io.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io.C -------------------------------------------------------------------------------- /phantom/io.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io.H -------------------------------------------------------------------------------- /phantom/io_benchmark/io_benchmark.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/io_benchmark.C -------------------------------------------------------------------------------- /phantom/io_benchmark/mcount.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/mcount.C -------------------------------------------------------------------------------- /phantom/io_benchmark/mcount.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/mcount.H -------------------------------------------------------------------------------- /phantom/io_benchmark/method.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method.H -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/ipv4/method_stream_ipv4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/ipv4/method_stream_ipv4.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/ipv6/method_stream_ipv6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/ipv6/method_stream_ipv6.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/local/method_stream_local.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/local/method_stream_local.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/logger.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/logger.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/logger.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/logger.H -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/logger_brief.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/logger_brief.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/logger_default.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/logger_default.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/method_stream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/method_stream.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/method_stream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/method_stream.H -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/proto.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/proto.H -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/proto_http/proto_http.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/proto_http/proto_http.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/proto_none/proto_none.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/proto_none/proto_none.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/source.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/source.H -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/source_log/source_log.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/source_log/source_log.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/source_random/source_random.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/source_random/source_random.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/transport.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/transport.C -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/transport.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/transport.H -------------------------------------------------------------------------------- /phantom/io_benchmark/method_stream/transport_ssl/transport_ssl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/method_stream/transport_ssl/transport_ssl.C -------------------------------------------------------------------------------- /phantom/io_benchmark/times.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/times.C -------------------------------------------------------------------------------- /phantom/io_benchmark/times.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_benchmark/times.H -------------------------------------------------------------------------------- /phantom/io_client/io_client.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/io_client.C -------------------------------------------------------------------------------- /phantom/io_client/ipv4/link_ipv4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/ipv4/link_ipv4.C -------------------------------------------------------------------------------- /phantom/io_client/ipv6/link_ipv6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/ipv6/link_ipv6.C -------------------------------------------------------------------------------- /phantom/io_client/link.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/link.C -------------------------------------------------------------------------------- /phantom/io_client/link.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/link.H -------------------------------------------------------------------------------- /phantom/io_client/local/link_local.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/local/link_local.C -------------------------------------------------------------------------------- /phantom/io_client/proto.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto.C -------------------------------------------------------------------------------- /phantom/io_client/proto.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto.H -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/entry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/entry.C -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/entry.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/entry.I -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/fcgi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/fcgi.C -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/fcgi.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/fcgi.I -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/instance.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/instance.C -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/instance.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/instance.I -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/proto_fcgi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/proto_fcgi.C -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/proto_fcgi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/proto_fcgi.H -------------------------------------------------------------------------------- /phantom/io_client/proto_fcgi/task.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_fcgi/task.I -------------------------------------------------------------------------------- /phantom/io_client/proto_none/entry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_none/entry.C -------------------------------------------------------------------------------- /phantom/io_client/proto_none/entry.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_none/entry.I -------------------------------------------------------------------------------- /phantom/io_client/proto_none/instance.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_none/instance.C -------------------------------------------------------------------------------- /phantom/io_client/proto_none/instance.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_none/instance.I -------------------------------------------------------------------------------- /phantom/io_client/proto_none/proto_none.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_none/proto_none.C -------------------------------------------------------------------------------- /phantom/io_client/proto_none/proto_none.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_none/proto_none.H -------------------------------------------------------------------------------- /phantom/io_client/proto_none/task.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_none/task.C -------------------------------------------------------------------------------- /phantom/io_client/proto_none/task.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_client/proto_none/task.H -------------------------------------------------------------------------------- /phantom/io_logger_file.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_logger_file.C -------------------------------------------------------------------------------- /phantom/io_logger_file.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_logger_file.H -------------------------------------------------------------------------------- /phantom/io_monitor/io_monitor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_monitor/io_monitor.C -------------------------------------------------------------------------------- /phantom/io_stream/acl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/acl.C -------------------------------------------------------------------------------- /phantom/io_stream/acl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/acl.H -------------------------------------------------------------------------------- /phantom/io_stream/io_stream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/io_stream.C -------------------------------------------------------------------------------- /phantom/io_stream/io_stream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/io_stream.H -------------------------------------------------------------------------------- /phantom/io_stream/ipv4/acl_ipv4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/ipv4/acl_ipv4.C -------------------------------------------------------------------------------- /phantom/io_stream/ipv4/io_stream_ipv4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/ipv4/io_stream_ipv4.C -------------------------------------------------------------------------------- /phantom/io_stream/ipv6/acl_ipv6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/ipv6/acl_ipv6.C -------------------------------------------------------------------------------- /phantom/io_stream/ipv6/io_stream_ipv6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/ipv6/io_stream_ipv6.C -------------------------------------------------------------------------------- /phantom/io_stream/local/io_stream_local.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/local/io_stream_local.C -------------------------------------------------------------------------------- /phantom/io_stream/proto.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto.H -------------------------------------------------------------------------------- /phantom/io_stream/proto_echo/proto_echo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_echo/proto_echo.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler.H -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_fcgi/handler_fcgi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_fcgi/handler_fcgi.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_monitor/handler_monitor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_monitor/handler_monitor.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_null/handler_null.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_null/handler_null.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_proxy/handler_proxy.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_proxy/handler_proxy.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_static/file_cache.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_static/file_cache.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_static/file_cache.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_static/file_cache.I -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_static/file_types.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_static/file_types.H -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_static/file_types_default.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_static/file_types_default.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_static/file_types_list.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_static/file_types_list.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_static/handler_static.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_static/handler_static.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/handler_static/path_translation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/handler_static/path_translation.H -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/logger.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/logger.H -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/logger_default.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/logger_default.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/path.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/path.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/path.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/path.H -------------------------------------------------------------------------------- /phantom/io_stream/proto_http/proto_http.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_http/proto_http.C -------------------------------------------------------------------------------- /phantom/io_stream/proto_monitor/proto_monitor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/proto_monitor/proto_monitor.C -------------------------------------------------------------------------------- /phantom/io_stream/transport.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/transport.H -------------------------------------------------------------------------------- /phantom/io_stream/transport_ssl/transport_ssl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/io_stream/transport_ssl/transport_ssl.C -------------------------------------------------------------------------------- /phantom/jemalloc/jemalloc.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/jemalloc/jemalloc.c.diff -------------------------------------------------------------------------------- /phantom/jemalloc/jemalloc_.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/jemalloc/jemalloc_.C -------------------------------------------------------------------------------- /phantom/jemalloc/malloc_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/jemalloc/malloc_arena.h -------------------------------------------------------------------------------- /phantom/jemalloc/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/jemalloc/rb.h -------------------------------------------------------------------------------- /phantom/logger.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/logger.H -------------------------------------------------------------------------------- /phantom/logger_file.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/logger_file.C -------------------------------------------------------------------------------- /phantom/logger_stderr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/logger_stderr.C -------------------------------------------------------------------------------- /phantom/module.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/module.C -------------------------------------------------------------------------------- /phantom/module.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/module.H -------------------------------------------------------------------------------- /phantom/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/module.mk -------------------------------------------------------------------------------- /phantom/obj.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/obj.C -------------------------------------------------------------------------------- /phantom/obj.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/obj.H -------------------------------------------------------------------------------- /phantom/pd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/pd.H -------------------------------------------------------------------------------- /phantom/phantom.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/phantom.C -------------------------------------------------------------------------------- /phantom/scheduler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/scheduler.C -------------------------------------------------------------------------------- /phantom/scheduler.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/scheduler.H -------------------------------------------------------------------------------- /phantom/scheduler_combined.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/scheduler_combined.C -------------------------------------------------------------------------------- /phantom/scheduler_simple.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/scheduler_simple.C -------------------------------------------------------------------------------- /phantom/setup.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/setup.H -------------------------------------------------------------------------------- /phantom/setup_caps.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/setup_caps.C -------------------------------------------------------------------------------- /phantom/setup_daemon.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/setup_daemon.C -------------------------------------------------------------------------------- /phantom/setup_module.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/setup_module.C -------------------------------------------------------------------------------- /phantom/shared.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/shared.H -------------------------------------------------------------------------------- /phantom/shared_logger_file.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/shared_logger_file.C -------------------------------------------------------------------------------- /phantom/shared_logger_file.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/shared_logger_file.H -------------------------------------------------------------------------------- /phantom/ssl/auth.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/ssl/auth.C -------------------------------------------------------------------------------- /phantom/ssl/auth.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/ssl/auth.H -------------------------------------------------------------------------------- /phantom/ssl/setup_ssl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/ssl/setup_ssl.C -------------------------------------------------------------------------------- /phantom/stat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/stat.C -------------------------------------------------------------------------------- /phantom/stat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/phantom/stat.H -------------------------------------------------------------------------------- /test/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/Makefile.inc -------------------------------------------------------------------------------- /test/base/cmp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/cmp.C -------------------------------------------------------------------------------- /test/base/cmp.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/cmp.pat -------------------------------------------------------------------------------- /test/base/in.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/in.C -------------------------------------------------------------------------------- /test/base/in.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/in.pat -------------------------------------------------------------------------------- /test/base/in_segment.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/in_segment.C -------------------------------------------------------------------------------- /test/base/in_segment.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/in_segment.pat -------------------------------------------------------------------------------- /test/base/ipv6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/ipv6.C -------------------------------------------------------------------------------- /test/base/ipv6.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/ipv6.pat -------------------------------------------------------------------------------- /test/base/outnum.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/outnum.C -------------------------------------------------------------------------------- /test/base/outnum.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/outnum.pat -------------------------------------------------------------------------------- /test/base/size.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/size.C -------------------------------------------------------------------------------- /test/base/size.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/size.pat -------------------------------------------------------------------------------- /test/base/str.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/str.C -------------------------------------------------------------------------------- /test/base/str.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/str.pat -------------------------------------------------------------------------------- /test/base/time.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/time.C -------------------------------------------------------------------------------- /test/base/time.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/base/time.pat -------------------------------------------------------------------------------- /test/bq/align.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/align.C -------------------------------------------------------------------------------- /test/bq/align.pat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/bq/bq_spec.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/bq_spec.C -------------------------------------------------------------------------------- /test/bq/bq_spec.pat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/bq/bug_glibc_errno.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/bug_glibc_errno.C -------------------------------------------------------------------------------- /test/bq/bug_glibc_errno.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/bug_glibc_errno.pat -------------------------------------------------------------------------------- /test/bq/eh1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/eh1.C -------------------------------------------------------------------------------- /test/bq/eh1.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/eh1.pat -------------------------------------------------------------------------------- /test/bq/eh2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/eh2.C -------------------------------------------------------------------------------- /test/bq/eh2.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/eh2.pat -------------------------------------------------------------------------------- /test/bq/thr_name.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/thr_name.I -------------------------------------------------------------------------------- /test/bq/thr_signal.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/bq/thr_signal.I -------------------------------------------------------------------------------- /test/http/path.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/http/path.C -------------------------------------------------------------------------------- /test/http/path.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/http/path.pat -------------------------------------------------------------------------------- /test/pi/build.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/build.C -------------------------------------------------------------------------------- /test/pi/build.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/build.pat -------------------------------------------------------------------------------- /test/pi/map.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/map.C -------------------------------------------------------------------------------- /test/pi/map.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/map.pat -------------------------------------------------------------------------------- /test/pi/parse.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/parse.C -------------------------------------------------------------------------------- /test/pi/parse.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/parse.pat -------------------------------------------------------------------------------- /test/pi/replace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/replace.C -------------------------------------------------------------------------------- /test/pi/replace.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/replace.pat -------------------------------------------------------------------------------- /test/pi/supp.C_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/supp.C_ -------------------------------------------------------------------------------- /test/pi/verify.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/verify.C -------------------------------------------------------------------------------- /test/pi/verify.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/pi/verify.pat -------------------------------------------------------------------------------- /test/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamchits/phantom/HEAD/test/test.mk --------------------------------------------------------------------------------