├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md └── src ├── Makefile ├── blackwhitelist.c ├── blackwhitelist.h ├── dnsredir.c ├── dnsredir.h ├── fakepackets.c ├── fakepackets.h ├── goodbyedpi-rc.rc ├── goodbyedpi.c ├── goodbyedpi.exe.manifest ├── goodbyedpi.h ├── icon.ico ├── service.c ├── service.h ├── ttltrack.c ├── ttltrack.h └── utils ├── getline.c ├── getline.h ├── repl_str.c ├── repl_str.h └── uthash.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.exe 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/README.md -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/blackwhitelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/blackwhitelist.c -------------------------------------------------------------------------------- /src/blackwhitelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/blackwhitelist.h -------------------------------------------------------------------------------- /src/dnsredir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/dnsredir.c -------------------------------------------------------------------------------- /src/dnsredir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/dnsredir.h -------------------------------------------------------------------------------- /src/fakepackets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/fakepackets.c -------------------------------------------------------------------------------- /src/fakepackets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/fakepackets.h -------------------------------------------------------------------------------- /src/goodbyedpi-rc.rc: -------------------------------------------------------------------------------- 1 | 1 24 "goodbyedpi.exe.manifest" 2 | id ICON "icon.ico" 3 | -------------------------------------------------------------------------------- /src/goodbyedpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/goodbyedpi.c -------------------------------------------------------------------------------- /src/goodbyedpi.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/goodbyedpi.exe.manifest -------------------------------------------------------------------------------- /src/goodbyedpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/goodbyedpi.h -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/service.c -------------------------------------------------------------------------------- /src/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/service.h -------------------------------------------------------------------------------- /src/ttltrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/ttltrack.c -------------------------------------------------------------------------------- /src/ttltrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/ttltrack.h -------------------------------------------------------------------------------- /src/utils/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/utils/getline.c -------------------------------------------------------------------------------- /src/utils/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/utils/getline.h -------------------------------------------------------------------------------- /src/utils/repl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/utils/repl_str.c -------------------------------------------------------------------------------- /src/utils/repl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/utils/repl_str.h -------------------------------------------------------------------------------- /src/utils/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/GoodbyeDPI/HEAD/src/utils/uthash.h --------------------------------------------------------------------------------