├── .gitignore ├── Joker.sln ├── Joker ├── Joker.vcxproj ├── Joker.vcxproj.filters ├── Joker.vcxproj.user ├── handle.h ├── main.cpp └── precomp.h ├── JokerTunnel.sln ├── JokerTunnel ├── JokerTunnel.vcxproj ├── JokerTunnel.vcxproj.filters ├── JokerTunnel.vcxproj.user ├── common.cpp ├── common.h ├── main.cpp ├── precomp.h ├── thread.cpp ├── thread.h ├── urlparse.cpp └── urlparse.h ├── LICENSE └── Readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | ‘.idea’ 2 | -------------------------------------------------------------------------------- /Joker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/Joker.sln -------------------------------------------------------------------------------- /Joker/Joker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/Joker/Joker.vcxproj -------------------------------------------------------------------------------- /Joker/Joker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/Joker/Joker.vcxproj.filters -------------------------------------------------------------------------------- /Joker/Joker.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/Joker/Joker.vcxproj.user -------------------------------------------------------------------------------- /Joker/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/Joker/handle.h -------------------------------------------------------------------------------- /Joker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/Joker/main.cpp -------------------------------------------------------------------------------- /Joker/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/Joker/precomp.h -------------------------------------------------------------------------------- /JokerTunnel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel.sln -------------------------------------------------------------------------------- /JokerTunnel/JokerTunnel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/JokerTunnel.vcxproj -------------------------------------------------------------------------------- /JokerTunnel/JokerTunnel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/JokerTunnel.vcxproj.filters -------------------------------------------------------------------------------- /JokerTunnel/JokerTunnel.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/JokerTunnel.vcxproj.user -------------------------------------------------------------------------------- /JokerTunnel/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/common.cpp -------------------------------------------------------------------------------- /JokerTunnel/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/common.h -------------------------------------------------------------------------------- /JokerTunnel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/main.cpp -------------------------------------------------------------------------------- /JokerTunnel/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/precomp.h -------------------------------------------------------------------------------- /JokerTunnel/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/thread.cpp -------------------------------------------------------------------------------- /JokerTunnel/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/thread.h -------------------------------------------------------------------------------- /JokerTunnel/urlparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/urlparse.cpp -------------------------------------------------------------------------------- /JokerTunnel/urlparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/JokerTunnel/urlparse.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-xn/Joker/HEAD/Readme.md --------------------------------------------------------------------------------