├── LICENSE ├── README.md ├── include └── xt_HTTPREDIRECT.h ├── kernel ├── Makefile └── xt_HTTPREDIRECT.c ├── test └── reload_ko.sh └── userspace ├── Makefile └── libxt_HTTPREDIRECT.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faicker/ipt_httpredirect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faicker/ipt_httpredirect/HEAD/README.md -------------------------------------------------------------------------------- /include/xt_HTTPREDIRECT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faicker/ipt_httpredirect/HEAD/include/xt_HTTPREDIRECT.h -------------------------------------------------------------------------------- /kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faicker/ipt_httpredirect/HEAD/kernel/Makefile -------------------------------------------------------------------------------- /kernel/xt_HTTPREDIRECT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faicker/ipt_httpredirect/HEAD/kernel/xt_HTTPREDIRECT.c -------------------------------------------------------------------------------- /test/reload_ko.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faicker/ipt_httpredirect/HEAD/test/reload_ko.sh -------------------------------------------------------------------------------- /userspace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faicker/ipt_httpredirect/HEAD/userspace/Makefile -------------------------------------------------------------------------------- /userspace/libxt_HTTPREDIRECT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faicker/ipt_httpredirect/HEAD/userspace/libxt_HTTPREDIRECT.c --------------------------------------------------------------------------------