Commit 62eafb83 authored by Jim Jagielski's avatar Jim Jagielski
Browse files

Add in mod_dumpio in the new debug module directory. Also, place

mod_bucketeer in there as well, since it is more a debugging
module (and as per list suggestions)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111837 13f79535-47bb-0310-9956-ffa450edef68
parent 4daf1950
Loading
Loading
Loading
Loading

modules/debug/.deps

0 → 100644
+0 −0

Empty file added.

modules/debug/Makefile

0 → 100644
+8 −0
Original line number Diff line number Diff line
top_srcdir   = /Users/jim/src/asf/code/dev/svn/httpd-2.1
top_builddir = /Users/jim/src/asf/code/dev/svn/httpd-2.1
srcdir       = /Users/jim/src/asf/code/dev/svn/httpd-2.1/modules/debug
builddir     = /Users/jim/src/asf/code/dev/svn/httpd-2.1/modules/debug
VPATH        = /Users/jim/src/asf/code/dev/svn/httpd-2.1/modules/debug
# a modules Makefile has no explicit targets -- they will be defined by
# whatever modules are enabled. just grab special.mk to deal with this.
include $(top_srcdir)/build/special.mk
+3 −0
Original line number Diff line number Diff line
# a modules Makefile has no explicit targets -- they will be defined by
# whatever modules are enabled. just grab special.mk to deal with this.
include $(top_srcdir)/build/special.mk

modules/debug/README

0 → 100644
+1 −0
Original line number Diff line number Diff line
debugging modules for Apache 2.x
+7 −0
Original line number Diff line number Diff line

APACHE_MODPATH_INIT(debug)

APACHE_MODULE(bucketeer, buckets manipulation filter, , , no)
APACHE_MODULE(dumpio, I/O dump filter, , , most)

APACHE_MODPATH_FINISH
Loading