├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.openwrt ├── README.md ├── TODO ├── VERSION ├── hijackfilter.spec └── src ├── .gitignore ├── Makefile ├── common └── list.h ├── libxt_vfree_dns ├── .gitignore ├── Makefile └── libxt_vfree_dns.c ├── libxt_vfree_http ├── .gitignore ├── Makefile └── libxt_vfree_http.c ├── xt_vfree_dns ├── .gitignore ├── Makefile ├── dns.h ├── xt_vfree_dns.c └── xt_vfree_dns.h └── xt_vfree_http ├── .gitignore ├── Makefile ├── xt_vfree_http.c └── xt_vfree_http.h /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | *~ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.openwrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/Makefile.openwrt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1-1 2 | -------------------------------------------------------------------------------- /hijackfilter.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/hijackfilter.spec -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/common/list.h -------------------------------------------------------------------------------- /src/libxt_vfree_dns/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /src/libxt_vfree_dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/libxt_vfree_dns/Makefile -------------------------------------------------------------------------------- /src/libxt_vfree_dns/libxt_vfree_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/libxt_vfree_dns/libxt_vfree_dns.c -------------------------------------------------------------------------------- /src/libxt_vfree_http/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /src/libxt_vfree_http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/libxt_vfree_http/Makefile -------------------------------------------------------------------------------- /src/libxt_vfree_http/libxt_vfree_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/libxt_vfree_http/libxt_vfree_http.c -------------------------------------------------------------------------------- /src/xt_vfree_dns/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_dns/.gitignore -------------------------------------------------------------------------------- /src/xt_vfree_dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_dns/Makefile -------------------------------------------------------------------------------- /src/xt_vfree_dns/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_dns/dns.h -------------------------------------------------------------------------------- /src/xt_vfree_dns/xt_vfree_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_dns/xt_vfree_dns.c -------------------------------------------------------------------------------- /src/xt_vfree_dns/xt_vfree_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_dns/xt_vfree_dns.h -------------------------------------------------------------------------------- /src/xt_vfree_http/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_http/.gitignore -------------------------------------------------------------------------------- /src/xt_vfree_http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_http/Makefile -------------------------------------------------------------------------------- /src/xt_vfree_http/xt_vfree_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_http/xt_vfree_http.c -------------------------------------------------------------------------------- /src/xt_vfree_http/xt_vfree_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfreex/hijackfilter/HEAD/src/xt_vfree_http/xt_vfree_http.h --------------------------------------------------------------------------------