├── .gitignore ├── COPYING ├── LICENSE ├── Makefile.am ├── README.rst ├── autogen.sh ├── configure.ac ├── debian ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── docs └── rules ├── m4 └── PLACEHOLDER ├── src ├── Makefile.am ├── tests │ └── test01.vtc ├── vmod_throttle.c └── vmod_throttle.vcc └── vmod-throttle.spec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/README.rst -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | usr/share/doc/libvmod-throttle 2 | -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.rst 2 | LICENSE 3 | COPYING 4 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/debian/rules -------------------------------------------------------------------------------- /m4/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/tests/test01.vtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/src/tests/test01.vtc -------------------------------------------------------------------------------- /src/vmod_throttle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/src/vmod_throttle.c -------------------------------------------------------------------------------- /src/vmod_throttle.vcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/src/vmod_throttle.vcc -------------------------------------------------------------------------------- /vmod-throttle.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nand2/libvmod-throttle/HEAD/vmod-throttle.spec --------------------------------------------------------------------------------